:root {
  --green-950: #013e1d;
  --green-900: #064f27;
  --green-800: #087347;
  --green-100: #e4f2e8;
  --green-50: #f2f8f3;
  --orange: #ff7116;
  --orange-light: #fff0e4;
  --ink: #173126;
  --muted: #607168;
  --cream: #fbfaf5;
  --white: #ffffff;
  --line: #dce8df;
  --shadow: 0 20px 60px rgba(2, 62, 29, 0.11);
  --radius-lg: 32px;
  --radius-md: 20px;
  --container: 1180px;
  --font-body: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(251, 250, 245, 0.94);
  border-color: rgba(6, 79, 39, 0.09);
  box-shadow: 0 8px 30px rgba(2, 62, 29, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(2, 62, 29, 0.14);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: var(--green-900);
  font: 800 1.2rem/1 var(--font-display);
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 0.91rem;
  font-weight: 700;
}

.main-nav a:not(.nav-highlight)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav .nav-highlight {
  padding: 11px 17px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}

.main-nav .nav-donate {
  color: var(--orange);
}

.main-nav .nav-highlight:hover {
  background: var(--green-800);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--green-100);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--green-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px 0 82px;
  background:
    radial-gradient(circle at 75% 48%, rgba(255, 113, 22, 0.13), transparent 21%),
    linear-gradient(135deg, #fbfaf5 0%, #f0f7f1 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -42% 25%;
  height: 62%;
  border: 1px solid rgba(8, 115, 71, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--green-800);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow span {
  color: var(--orange);
  font-size: 0.6rem;
}

.hero h1,
.section h2,
.social-card h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 700px;
  color: var(--green-950);
  font-size: clamp(3rem, 5.7vw, 5.4rem);
  font-weight: 800;
  line-height: 1.03;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-copy > p {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.button-primary {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 14px 28px rgba(6, 79, 39, 0.22);
}

.button-primary:hover {
  background: var(--green-800);
  box-shadow: 0 17px 34px rgba(6, 79, 39, 0.27);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.logo-halo {
  position: absolute;
  width: min(100%, 500px);
  aspect-ratio: 1;
  border-radius: 48% 52% 42% 58% / 54% 44% 56% 46%;
  background: var(--orange);
  opacity: 0.11;
  animation: organic 10s ease-in-out infinite alternate;
}

.logo-card {
  position: relative;
  width: min(76%, 400px);
  padding: clamp(18px, 3vw, 31px);
  background: var(--white);
  border: 1px solid rgba(6, 79, 39, 0.08);
  border-radius: 44% 44% 42% 42% / 32% 32% 48% 48%;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.logo-card img {
  width: 100%;
  border-radius: 32% 32% 38% 38% / 26% 26% 42% 42%;
}

.floating-note {
  position: absolute;
  padding: 11px 17px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 79, 39, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(2, 62, 29, 0.1);
  font-size: 0.79rem;
  font-weight: 800;
}

.floating-note::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.note-one {
  top: 15%;
  left: 0;
}

.note-two {
  right: 1%;
  bottom: 18%;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-decoration-one {
  top: 14%;
  right: 5%;
  width: 26px;
  height: 26px;
  border: 7px solid rgba(8, 115, 71, 0.2);
}

.hero-decoration-two {
  bottom: 17%;
  left: 5%;
  width: 13px;
  height: 13px;
  background: rgba(255, 113, 22, 0.35);
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: translateX(-50%);
}

.scroll-hint svg {
  width: 17px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  animation: bounce 1.8s ease infinite;
}

.section {
  padding: clamp(90px, 11vw, 150px) 0;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 9vw, 130px);
}

.section h2,
.social-card h2 {
  color: var(--green-950);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
}

.section-intro > p,
.section-heading > p {
  color: var(--muted);
  line-height: 1.7;
}

.about-content .lead {
  margin: 8px 0 18px;
  color: var(--green-900);
  font: 600 clamp(1.25rem, 2vw, 1.65rem)/1.55 var(--font-display);
}

.about-content > p:not(.lead) {
  color: var(--muted);
  line-height: 1.85;
}

.values {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.value-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.value-card:hover {
  border-color: rgba(8, 115, 71, 0.34);
  box-shadow: 0 12px 28px rgba(2, 62, 29, 0.07);
  transform: translateX(5px);
}

.value-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--orange-light);
  border-radius: 13px;
}

.value-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.value-card:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.value-card div {
  display: grid;
  gap: 4px;
}

.value-card strong {
  font-family: var(--font-display);
}

.value-card small {
  color: var(--muted);
}

.gallery-section {
  background: var(--green-50);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 54px;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 5px;
}

.gallery-tabs {
  width: fit-content;
  max-width: 100%;
  display: flex;
  gap: 6px;
  margin-bottom: 30px;
  padding: 6px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  scrollbar-width: none;
}

.gallery-tabs::-webkit-scrollbar {
  display: none;
}

.gallery-tabs button {
  min-height: 45px;
  padding: 0 21px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.gallery-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 9px 22px rgba(6, 79, 39, 0.18);
}

.gallery-tabs button:focus-visible {
  outline: 3px solid rgba(255, 113, 22, 0.4);
  outline-offset: 2px;
}

.gallery-panels {
  min-height: 590px;
}

.gallery-panel[hidden] {
  display: none;
}

.gallery-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 27px;
}

.action-number,
.story-placeholder div > span {
  color: var(--green-800);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.gallery-panel-heading h3 {
  margin: 7px 0 0;
  color: var(--green-950);
  font: 800 clamp(1.7rem, 3vw, 2.45rem)/1.15 var(--font-display);
  letter-spacing: -0.035em;
}

.gallery-panel-heading p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.actions-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  gap: 18px;
}

.action-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.action-collage {
  height: 295px;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
  background: var(--green-950);
}

.action-photo {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  background: var(--green-900);
  border: 0;
  cursor: pointer;
}

.action-photo-main {
  grid-row: 1 / 3;
}

.action-photo img,
.action-placeholder img,
.action-video-trigger > img,
.rescued-photo img,
.story-placeholder > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.action-photo img {
  transition: transform 350ms ease;
}

.action-photo:hover img {
  transform: scale(1.045);
}

.action-photo > span {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.91);
  border-radius: 50%;
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.action-photo:hover > span {
  transform: rotate(90deg);
}

.action-card-body {
  flex: 1;
  padding: 23px 24px 25px;
}

.action-card-body h4,
.story-placeholder h4 {
  margin: 8px 0 9px;
  color: var(--green-950);
  font: 800 1.13rem/1.25 var(--font-display);
}

.action-card-body p,
.story-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.6;
}

.action-placeholder {
  position: relative;
  height: 295px;
  overflow: hidden;
  background: var(--green-900);
}

.action-placeholder img {
  opacity: 0.82;
  filter: saturate(0.65);
}

.action-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 62, 29, 0.34);
}

.action-card-empty {
  border-style: dashed;
}

.action-video-trigger {
  position: relative;
  overflow: hidden;
  height: 295px;
  padding: 0;
  background: var(--green-950);
  border: 0;
  cursor: pointer;
}

.action-video-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 50, 23, 0.08), rgba(1, 50, 23, 0.32));
}

.action-video-trigger > img {
  object-position: 50% 30%;
  transition: transform 400ms ease;
}

.action-video-trigger:hover > img {
  transform: scale(1.035);
}

.video-type {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.video-type svg,
.video-play svg {
  fill: currentColor;
  stroke: none;
}

.video-type svg {
  width: 15px;
}

.video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border: 5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(1, 50, 23, 0.28);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease, background 200ms ease;
}

.video-play svg {
  width: 29px;
  margin-left: 3px;
}

.action-video-trigger:hover .video-play {
  background: var(--green-800);
  transform: translate(-50%, -50%) scale(1.08);
}

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

.rescued-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
  aspect-ratio: 1;
  background: var(--green-900);
  border: 0;
  border-radius: 18px;
  cursor: pointer;
}

.rescued-photo img {
  transition: transform 350ms ease;
}

.rescued-photo:nth-child(1) img { object-position: 50% 42%; }
.rescued-photo:nth-child(2) img { object-position: 50% 47%; }
.rescued-photo:nth-child(3) img { object-position: 50% 43%; }
.rescued-photo:nth-child(4) img { object-position: 50% 36%; }
.rescued-photo:nth-child(5) img { object-position: 50% 40%; }
.rescued-photo:nth-child(6) img { object-position: 58% 34%; }

.rescued-photo:hover img {
  transform: scale(1.04);
}

.rescued-photo > span {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 1.18rem;
  box-shadow: 0 7px 18px rgba(1, 50, 23, 0.14);
  transition: transform 180ms ease;
}

.rescued-photo:hover > span {
  transform: rotate(90deg);
}

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

.story-placeholder {
  overflow: hidden;
  background: var(--white);
  border: 1px dashed rgba(6, 79, 39, 0.24);
  border-radius: var(--radius-md);
}

.story-placeholder > img {
  height: 220px;
  opacity: 0.8;
}

.story-placeholder > div {
  padding: 22px 23px 25px;
}

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

.section-heading.centered {
  display: block;
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading.centered p {
  max-width: 580px;
  margin: 20px auto 0;
}

.collaborator-carousel {
  position: relative;
}

.carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.provisional-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.provisional-note::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.carousel-controls {
  display: flex;
  gap: 9px;
}

.carousel-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--green-900);
  background: var(--green-100);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.carousel-controls button:hover:not(:disabled) {
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-2px);
}

.carousel-controls button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-controls svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.collaborator-viewport {
  overflow-x: auto;
  padding: 7px 2px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.collaborator-viewport::-webkit-scrollbar {
  display: none;
}

.collaborator-viewport:focus-visible {
  outline: 3px solid rgba(255, 113, 22, 0.4);
  outline-offset: 7px;
  border-radius: 18px;
}

.collaborator-track {
  display: grid;
  grid-auto-columns: calc((100% - 66px) / 4);
  grid-auto-flow: column;
  gap: 22px;
}

.collaborator-card {
  min-width: 0;
  text-align: center;
  scroll-snap-align: start;
}

.collaborator-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--green-100);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 11px 28px rgba(2, 62, 29, 0.08);
}

.collaborator-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(1, 62, 29, 0.11));
  pointer-events: none;
}

.collaborator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.collaborator-card:hover .collaborator-photo img {
  transform: scale(1.035);
}

.collaborator-card h3 {
  margin: 17px 0 0;
  color: var(--green-950);
  font: 800 1.08rem/1.25 var(--font-display);
}

.partners {
  background: var(--orange-light);
}

.partners-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.partners .section-intro p {
  margin-top: 23px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.partner-placeholder {
  min-height: 145px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  border: 1px dashed rgba(6, 79, 39, 0.25);
  border-radius: 18px;
}

.partner-placeholder span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 50%;
  font-size: 1.4rem;
}

.partner-placeholder small {
  font-weight: 700;
}

.partner-logo {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: grid;
  place-items: center;
  padding: 27px;
  background: var(--white);
  border: 1px solid rgba(6, 79, 39, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(2, 62, 29, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-logo::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green-800), var(--orange));
  opacity: 0.78;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 32px rgba(2, 62, 29, 0.1);
}

.partner-logo img {
  width: min(100%, 275px);
  height: 145px;
  object-fit: contain;
}

.notices-section {
  background: var(--green-50);
}

.notices-list {
  display: grid;
  gap: 13px;
}

.notice-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.notice-item:hover {
  border-color: rgba(8, 115, 71, 0.27);
  box-shadow: 0 12px 30px rgba(2, 62, 29, 0.07);
  transform: translateY(-2px);
}

.notice-item time {
  display: grid;
  justify-items: center;
  padding: 12px 10px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 13px;
}

.notice-item time strong {
  font: 800 1.55rem/1 var(--font-display);
}

.notice-item time span {
  margin-top: 5px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.notice-info {
  min-width: 0;
}

.notice-info small {
  color: var(--orange);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.notice-info h3 {
  margin: 7px 0 0;
  color: var(--green-950);
  font: 800 clamp(0.98rem, 1.5vw, 1.15rem)/1.4 var(--font-display);
}

.notice-item > a {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.notice-item > a:hover {
  color: var(--white);
  background: var(--green-900);
}

.notice-item > a svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.notice-example {
  background: rgba(255, 255, 255, 0.68);
  border-style: dashed;
}

.donate-section {
  padding: clamp(80px, 10vw, 135px) 0;
  background: var(--white);
}

.donation-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(45px, 7vw, 85px);
  padding: clamp(42px, 7vw, 82px);
  background: linear-gradient(135deg, var(--orange-light), var(--green-50));
  border: 1px solid rgba(6, 79, 39, 0.08);
  border-radius: var(--radius-lg);
}

.donation-shell::before {
  content: "";
  position: absolute;
  top: -190px;
  left: -170px;
  width: 390px;
  height: 390px;
  border: 70px solid rgba(255, 113, 22, 0.1);
  border-radius: 50%;
}

.donation-copy,
.pix-card {
  position: relative;
  z-index: 2;
}

.donation-copy h2 {
  margin: 0;
  color: var(--green-950);
  font: 800 clamp(2.25rem, 4vw, 3.85rem)/1.08 var(--font-display);
  letter-spacing: -0.045em;
}

.donation-copy > p {
  max-width: 520px;
  margin: 23px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.donation-check {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(6, 79, 39, 0.1);
  border-radius: 16px;
}

.donation-check > span {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 13px;
}

.donation-check svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.donation-check p {
  display: grid;
  gap: 3px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.donation-check strong {
  color: var(--green-950);
  font-size: 0.87rem;
}

.pix-card {
  display: grid;
  grid-template-columns: minmax(180px, 225px) 1fr;
  align-items: center;
  gap: 29px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.pix-qr {
  display: grid;
  gap: 10px;
  text-align: center;
}

.pix-qr img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  align-self: start;
  object-fit: contain;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.pix-qr small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
}

.pix-details {
  min-width: 0;
  display: grid;
  align-content: center;
}

.pix-details > span {
  color: var(--green-800);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pix-details > strong {
  margin-top: 8px;
  color: var(--green-950);
  font: 800 clamp(1rem, 1.7vw, 1.28rem)/1.3 var(--font-display);
  overflow-wrap: anywhere;
}

.pix-details > p {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.pix-details button {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  color: var(--white);
  background: var(--green-900);
  border: 0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.pix-details button:hover {
  background: var(--green-800);
  transform: translateY(-2px);
}

.pix-details button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.copy-status {
  min-height: 17px;
  margin-top: 7px;
  color: var(--green-800);
  font-size: 0.71rem;
  font-weight: 700;
  text-align: center;
}

.social-section {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--white);
}

.social-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(45px, 8vw, 100px);
  padding: clamp(40px, 7vw, 86px);
  color: var(--white);
  background: var(--green-950);
  border-radius: var(--radius-lg);
}

.social-card::before {
  content: "";
  position: absolute;
  top: -170px;
  left: -140px;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(255, 113, 22, 0.12);
  border-radius: 50%;
}

.social-copy,
.social-links {
  position: relative;
  z-index: 2;
}

.eyebrow-light {
  color: #a8d7b9;
}

.social-card h2 {
  color: var(--white);
}

.social-copy p {
  max-width: 380px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.75;
}

.social-links {
  display: grid;
}

.social-links > a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 19px 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: padding 180ms ease, color 180ms ease;
}

.social-links > a:hover {
  padding-right: 8px;
  padding-left: 8px;
  color: #ffd7bc;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.social-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-icon svg .fill {
  fill: currentColor;
  stroke: none;
}

.social-links > a > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.social-links strong {
  font: 700 1rem/1 var(--font-display);
}

.social-links small {
  color: rgba(255, 255, 255, 0.5);
}

.social-links .arrow {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-footer {
  padding: 55px 0 26px;
  background: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
  padding-bottom: 35px;
}

.brand-footer img {
  width: 45px;
  height: 45px;
}

.footer-main > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  text-align: center;
}

.back-top {
  color: var(--green-900);
  font-size: 0.86rem;
  font-weight: 800;
}

.back-top span {
  display: inline-grid;
  width: 29px;
  height: 29px;
  margin-left: 8px;
  place-items: center;
  background: var(--green-100);
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: #7b8a82;
  border-top: 1px solid var(--line);
}

.gallery-modal {
  width: min(900px, calc(100% - 30px));
  padding: 0;
  color: var(--white);
  background: var(--green-950);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.video-modal {
  width: min(520px, calc(100% - 30px));
  padding: 0;
  color: var(--white);
  background: var(--green-950);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.gallery-modal::backdrop,
.video-modal::backdrop {
  background: rgba(1, 28, 13, 0.78);
  backdrop-filter: blur(8px);
}

.video-modal video {
  width: 100%;
  max-height: 78vh;
  display: block;
  background: #000;
}

.video-modal p {
  margin: 0;
  padding: 18px 22px 22px;
  font-weight: 700;
}

.gallery-modal img {
  width: 100%;
  height: min(72vh, 850px);
  object-fit: contain;
  background: var(--green-950);
}

.gallery-modal p {
  margin: 0;
  padding: 18px 22px 22px;
  font-weight: 700;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  width: 42px;
  height: 42px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  max-width: calc(100% - 40px);
  padding: 14px 18px;
  color: var(--white);
  background: var(--green-950);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@keyframes organic {
  to { border-radius: 54% 46% 61% 39% / 43% 59% 41% 57%; transform: rotate(8deg); }
}

@keyframes bounce {
  50% { transform: translateY(5px); }
}

@media (max-width: 940px) {
  .menu-button { display: block; }

  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    inset: 84px 20px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a { padding: 13px 14px; }
  .main-nav a:not(.nav-highlight)::after { display: none; }
  .main-nav .nav-highlight { margin-top: 5px; text-align: center; }

  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 0.8fr; gap: 30px; }
  .hero-visual { min-height: 400px; }
  .scroll-hint { display: none; }

  .actions-grid { grid-template-columns: repeat(2, 1fr); }
  .action-card-filled { grid-column: 1 / 3; }

  .collaborator-track { grid-auto-columns: calc((100% - 44px) / 3); }

  .donation-shell { grid-template-columns: 1fr; }

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

@media (max-width: 720px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .header-inner { min-height: 74px; }
  .brand img { width: 45px; height: 45px; }
  .main-nav { inset: 74px 15px auto; }

  .hero { padding: 112px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-copy > p { margin-top: 20px; }
  .hero-actions { margin-top: 29px; }
  .hero-visual { min-height: 380px; margin-top: 10px; }
  .logo-card { width: min(72%, 310px); }
  .note-one { left: 5%; }
  .note-two { right: 5%; }

  .about-grid,
  .partners-layout,
  .social-card { grid-template-columns: 1fr; }

  .pix-card { max-width: 620px; }

  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }

  .notice-item {
    grid-template-columns: 75px 1fr;
    gap: 17px;
    padding: 17px;
  }
  .notice-item > a {
    grid-column: 1 / 3;
    width: 100%;
  }

  .gallery-panel-heading { display: block; }
  .gallery-panel-heading p { margin-top: 14px; }
  .gallery-panels { min-height: 0; }
  .actions-grid,
  .stories-grid { grid-template-columns: 1fr; }
  .action-card-filled { grid-column: auto; }
  .rescued-grid { grid-template-columns: repeat(2, 1fr); }

  .collaborator-track { grid-auto-columns: calc((100% - 22px) / 2); }

  .social-card { width: min(calc(100% - 24px), var(--container)); border-radius: 24px; }
  .social-copy br { display: none; }

  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main > p { grid-column: 1 / 3; grid-row: 2; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 460px) {
  .brand-copy small { display: none; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-visual { min-height: 330px; }
  .gallery-tabs { width: 100%; }
  .gallery-tabs button { padding-inline: 17px; }
  .action-collage { height: 270px; }
  .action-placeholder,
  .action-video-trigger { height: 230px; }
  .rescued-grid { grid-template-columns: 1fr; }
  .pix-card { grid-template-columns: 1fr; text-align: center; }
  .pix-qr { width: min(100%, 240px); margin-inline: auto; }
  .pix-details button { width: 100%; }
  .collaborator-track { grid-auto-columns: 78%; gap: 15px; }
  .carousel-toolbar { align-items: end; }
  .carousel-controls button { width: 42px; height: 42px; }
  .floating-note { padding: 9px 12px; font-size: 0.7rem; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-placeholder { min-height: 120px; }
  .social-links > a { grid-template-columns: 45px 1fr auto; gap: 12px; }
  .social-card { padding: 35px 24px; }
  .footer-main { gap: 18px; }
  .back-top { font-size: 0; }
  .back-top span { margin: 0; font-size: 0.9rem; }
}

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