@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;0,900;1,700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #002f31;
  --ink-deep: #001f21;
  --teal: #009e9c;
  --teal-light: #30d3ca;
  --green: #087d37;
  --lime: #d4ef34;
  --yellow: #ffd631;
  --paper: #f3f7f1;
  --white: #ffffff;
  --muted: #607070;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --container: 1180px;
  --shadow: 0 24px 70px rgba(0, 42, 43, 0.16);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(0, 47, 49, 0.94);
  box-shadow: 0 8px 30px rgba(0, 20, 20, 0.2);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: 118px;
  height: 64px;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.15));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.nav-cta {
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 10px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(0, 47, 49, 0.98) 0%, rgba(0, 47, 49, 0.93) 48%, rgba(0, 126, 119, 0.76) 100%),
    url("../img/top_facebook.png") center / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  opacity: 0.24;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: 90px;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
}

.hero-copy {
  min-width: 0;
  padding: 48px 0 80px;
}

.eyebrow,
.kicker {
  display: flex;
  margin: 0 0 16px;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--teal-light);
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--yellow);
}

.hero h1,
.section h2,
.join h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(3.5rem, 7.3vw, 7rem);
  font-weight: 700;
}

.hero h1 strong {
  position: relative;
  color: var(--yellow);
  font-weight: 900;
}

.mobile-break {
  display: inline;
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(255, 214, 49, 0.2);
}

.button-primary:hover {
  box-shadow: 0 16px 35px rgba(255, 214, 49, 0.32);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.button-ghost strong {
  color: var(--yellow);
  font-size: 1.12rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
  align-self: end;
  min-height: min(720px, 82vh);
}

.portrait-wrap {
  position: absolute;
  right: -10%;
  bottom: 0;
  width: min(630px, 52vw);
}

.candidate-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 79vh;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 30px 50px rgba(0, 20, 20, 0.34));
}

.portrait-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.portrait-ring-one {
  inset: 13% 5% 7% 3%;
  background: rgba(0, 173, 166, 0.26);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.08);
}

.portrait-ring-two {
  inset: 5% -5% -5% -5%;
  border-color: rgba(255, 214, 49, 0.26);
}

.number-stamp {
  position: absolute;
  z-index: 4;
  top: 25%;
  right: -2%;
  display: flex;
  width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  transform: rotate(7deg);
}

.number-stamp small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.number-stamp strong {
  font-family: var(--font-display);
  font-size: 2.65rem;
  line-height: 1;
}

.hero-signature {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 4%;
  margin: 0;
  padding: 7px 14px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 800;
  transform: rotate(-2deg);
}

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

.hero-glow-one {
  top: -20%;
  right: -10%;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-glow-two {
  right: 25%;
  bottom: -45%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 204, 193, 0.3), transparent 63%);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  place-items: center;
  font-style: normal;
  animation: bob 1.8s ease-in-out infinite;
}

.section {
  padding: 120px 0;
}

.about {
  position: relative;
  background: var(--paper);
}

.about::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 36px solid rgba(0, 158, 156, 0.08);
  border-radius: 50%;
  content: "";
}

.about-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(50px, 8vw, 120px);
}

.section h2 {
  max-width: 620px;
  font-size: clamp(2.9rem, 5.5vw, 5.2rem);
  font-weight: 800;
}

.section h2 em {
  color: var(--teal);
  font-style: normal;
}

.about-copy {
  max-width: 620px;
  color: var(--muted);
}

.about-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
}

.about-copy blockquote {
  margin: 34px 0 0;
  padding: 8px 0 8px 25px;
  border-left: 4px solid var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
}

.causes {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.causes::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 45%, rgba(0, 158, 156, 0.13));
  content: "";
}

.section-heading-centered {
  position: relative;
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading-centered .kicker {
  justify-content: center;
}

.section-heading-centered h2 {
  max-width: none;
}

.section-heading-centered > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.kicker-light {
  color: var(--teal-light);
}

.cause-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cause-card {
  position: relative;
  min-height: 390px;
  padding: 38px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.cause-card:hover {
  border-color: rgba(48, 211, 202, 0.55);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-8px);
}

.cause-number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
}

.cause-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 62px;
  border: 1px solid rgba(48, 211, 202, 0.5);
  border-radius: 50%;
  place-items: center;
  color: var(--yellow);
  font-size: 1.7rem;
}

.cause-card h3 {
  margin: 0 0 15px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.cause-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.93rem;
}

.card-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.cause-card:hover .card-line {
  transform: scaleX(1);
}

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

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(55px, 9vw, 120px);
}

.story-art {
  position: relative;
}

.story-frame {
  position: relative;
  min-height: 610px;
  background:
    radial-gradient(circle at 50% 35%, rgba(48, 211, 202, 0.35), transparent 37%),
    linear-gradient(145deg, var(--ink), #006d68);
  overflow: hidden;
  clip-path: polygon(0 7%, 100% 0, 94% 93%, 7% 100%);
}

.story-frame::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 45px 45px;
  content: "";
}

.story-frame img {
  position: absolute;
  z-index: 1;
  right: -12%;
  bottom: -5%;
  width: 118%;
  height: 105%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.25));
}

.story-badge {
  position: absolute;
  z-index: 3;
  right: -25px;
  bottom: 30px;
  display: flex;
  padding: 17px 21px;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.story-badge strong {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
}

.story-badge span {
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-copy > p:not(.kicker) {
  max-width: 590px;
  color: var(--muted);
}

.timeline {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  padding: 19px 0;
  border-top: 1px solid #dbe4df;
  align-items: start;
  grid-template-columns: 58px 1fr;
  gap: 12px;
}

.timeline li > span {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.timeline strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.timeline p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.join {
  position: relative;
  padding: 115px 0;
  color: var(--white);
  background: linear-gradient(120deg, #007e78, var(--teal));
  overflow: hidden;
}

.join-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12) 0 2px, transparent 3px) 0 0 / 25px 25px,
    linear-gradient(120deg, transparent 50%, rgba(0, 47, 49, 0.16) 50%);
  opacity: 0.75;
}

.join-content {
  position: relative;
  z-index: 1;
}

.join h2 {
  max-width: 750px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
}

.join-content > p:not(.kicker) {
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
}

.button-white {
  color: var(--ink);
  background: var(--white);
}

.button-facebook {
  color: var(--white);
  background: #1769e0;
  box-shadow: 0 12px 30px rgba(0, 47, 49, 0.18);
}

.button-facebook:hover {
  background: #0f5ecf;
}

.button-outline-white {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
}

.join-number {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  color: rgba(255, 255, 255, 0.13);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 19rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.75;
  transform: translateY(-45%);
  white-space: nowrap;
}

.join-number span {
  color: rgba(255, 214, 49, 0.32);
}

.footer {
  padding: 55px 0 20px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink-deep);
}

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

.footer-brand {
  width: 125px;
  height: 72px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 700;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.social-link span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  place-items: center;
}

.footer-bottom {
  display: flex;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
}

.toast {
  position: fixed;
  z-index: 1500;
  right: 20px;
  bottom: 20px;
  max-width: 340px;
  padding: 13px 18px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-two {
  transition-delay: 0.24s;
}

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

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 960px) {
  body.menu-open .site-header {
    bottom: 0;
    height: 100svh;
    background: #001f21;
    backdrop-filter: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    inset: 0;
    display: flex;
    padding: 110px 28px 40px;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    background: #001f21;
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3.4rem);
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .nav-links a {
    width: min(100%, 500px);
    margin-inline: auto;
    padding: 10px 0;
  }

  .nav-cta {
    margin-top: 12px;
    border-radius: 3px;
    text-align: center;
  }

  .hero-grid {
    min-height: 100svh;
    grid-template-columns: 1fr 0.85fr;
    gap: 0;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 8vw, 5.5rem);
  }

  .mobile-break {
    display: block;
  }

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

  .portrait-wrap {
    right: -45%;
    width: 76vw;
  }

  .number-stamp {
    right: -2%;
    width: 110px;
  }

  .about-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

  .cause-card {
    min-height: auto;
  }

  .cause-icon {
    margin-bottom: 35px;
  }

  .story-art {
    width: min(85%, 580px);
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .navbar {
    min-height: 72px;
  }

  .brand {
    width: 96px;
    height: 56px;
  }

  .hero {
    align-items: stretch;
    background: linear-gradient(155deg, var(--ink-deep) 0%, var(--ink) 58%, #00665f 100%);
  }

  .hero-grid {
    display: flex;
    padding-top: 72px;
    min-height: 100svh;
    flex-direction: column;
  }

  .hero-copy {
    z-index: 5;
    width: 100%;
    max-width: 100%;
    padding: 26px 0 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 10vw, 2.75rem);
    line-height: 0.98;
    overflow-wrap: normal;
  }

  .hero-lead {
    max-width: 100%;
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
  }

  .hero-visual {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex: 1;
    min-height: 270px;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transform: none;
  }

  .portrait-wrap {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    width: min(270px, 72vw);
    max-width: calc(100% - 16px);
    margin-inline: auto;
    transform: none;
  }

  .candidate-photo {
    width: 100%;
    height: auto;
    max-height: none;
    object-position: center bottom;
  }

  .number-stamp {
    top: 14%;
    right: 8%;
    width: 76px;
  }

  .number-stamp strong {
    font-size: 1.75rem;
  }

  .hero-signature {
    right: 7%;
    bottom: 3%;
    font-size: 1rem;
  }

  .eyebrow {
    gap: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }

  .eyebrow span {
    width: 23px;
    flex: 0 0 23px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .about-grid {
    gap: 38px;
  }

  .section-heading-centered {
    margin-bottom: 38px;
  }

  .cause-card {
    padding: 30px 25px;
  }

  .story-grid {
    gap: 65px;
  }

  .story-art {
    width: calc(100% - 16px);
  }

  .story-frame {
    min-height: 470px;
  }

  .story-badge {
    right: -8px;
    bottom: -20px;
  }

  .join {
    padding: 85px 0;
  }

  .join-actions {
    flex-direction: column;
  }

  .join-actions .button {
    width: 100%;
  }

  .join-number {
    top: auto;
    right: -4%;
    bottom: 2%;
    font-size: 9rem;
    transform: none;
  }

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

  .footer-socials {
    justify-content: flex-start;
  }

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

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

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

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