@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --ink: #073047;
  --ink-soft: #123f56;
  --blue: #047fa8;
  --blue-dark: #006c91;
  --blue-deep: #005a78;
  --aqua: #eaf8fb;
  --aqua-strong: #d7f1f6;
  --cream: #fbf8f1;
  --line: #d1e1e6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 83, 111, 0.14);
  --shell: 1130px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.app {
  min-height: 100vh;
  overflow-x: hidden;
}

.page-shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding-inline: 52px;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.site-header {
  position: relative;
  z-index: 5;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 44, 62, 0.08);
}

.header-inner {
  min-height: 144px;
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 34px;
}

.brand {
  width: 164px;
  align-self: center;
  display: block;
  text-decoration: none;
  filter: drop-shadow(0 4px 9px rgba(0, 82, 112, 0.1));
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  color: #082d43;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 160ms ease;
}

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

.header-donate,
.button,
.follow-button,
.subscribe button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
}

.header-donate {
  min-width: 138px;
  height: 48px;
  gap: 9px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(180deg, #0498c5 0%, #007ba4 100%);
  box-shadow: 0 10px 24px rgba(0, 119, 160, 0.2);
}

.header-donate .icon,
.button .icon {
  width: 19px;
  height: 19px;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 36px;
  height: 4px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle::before {
  content: "";
  display: none;
}

.hero {
  min-height: 392px;
  background:
    radial-gradient(circle at 77% 42%, rgba(169, 226, 235, 0.8) 0 185px, transparent 186px),
    linear-gradient(90deg, #eef9fc 0%, #f8fdfe 58%, #edf9fb 100%);
}

.hero-grid {
  min-height: 392px;
  display: grid;
  grid-template-columns: minmax(400px, 0.44fr) minmax(0, 0.56fr);
  align-items: center;
  position: relative;
}

.hero-copy {
  padding: 34px 0 40px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(36px, 4.1vw, 44px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
  color: var(--blue);
}

.hero-copy p {
  width: min(100%, 405px);
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.button {
  height: 48px;
  min-width: 154px;
  gap: 9px;
  border-radius: 15px;
  font-size: 16px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, #069ac7 0%, #007fa8 100%);
  box-shadow: 0 12px 22px rgba(0, 119, 160, 0.22);
}

.button-secondary {
  color: var(--blue-dark);
  border: 2px solid var(--blue);
  background: rgba(255, 255, 255, 0.58);
}

.hero-art {
  align-self: end;
  justify-self: end;
  width: min(710px, 118%);
  margin-right: -64px;
  margin-bottom: 7px;
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.mission {
  padding: 18px 0 14px;
  background: var(--white);
}

.section-title {
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--blue);
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.title-rule {
  margin: 7px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue);
}

.title-rule span {
  width: 54px;
  height: 1px;
  background: currentColor;
  opacity: .45;
}

.title-rule .icon {
  width: 18px;
  height: 18px;
}

.section-title-light h2,
.section-title-light .title-rule {
  color: var(--white);
}

.mission-copy {
  max-width: 715px;
  margin: 10px auto 0;
  text-align: center;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  margin-top: 20px;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  color: var(--blue);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #f7fdff 0 16px, var(--aqua-strong) 17px 100%);
}

.feature-icon .icon {
  width: 50px;
  height: 50px;
}

.feature h3 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
}

.feature p {
  max-width: 190px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
}

.help-social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 374px;
}

.help-panel {
  background: linear-gradient(110deg, #e9f8fb 0%, #f7fdff 100%);
}

.social-panel {
  color: var(--white);
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.16) 0 85px, transparent 86px),
    linear-gradient(135deg, #008ab5 0%, #006f94 100%);
}

.panel-inner {
  max-width: calc(var(--shell) / 2);
  min-height: 374px;
  padding-block: 34px 30px;
}

.help-panel .panel-inner {
  margin-left: auto;
  padding-left: 52px;
  padding-right: 100px;
}

.social-panel .panel-inner {
  margin-right: auto;
  padding-left: 72px;
  padding-right: 72px;
}

.help-inner .section-title h2 {
  color: #08617f;
}

.help-list {
  margin-top: 14px;
}

.help-item {
  min-height: 59px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 69, 94, 0.13);
}

.help-item:last-child {
  border-bottom: 0;
}

.help-icon {
  display: grid;
  place-items: center;
  color: var(--blue);
}

.help-icon .icon {
  width: 43px;
  height: 43px;
}

.help-text {
  display: grid;
  gap: 3px;
}

.help-text strong {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.12;
  font-weight: 900;
}

.help-text span {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.arrow {
  color: var(--ink);
  font-size: 40px;
  line-height: 1;
  transform: translateY(-1px);
}

.social-inner {
  text-align: center;
}

.social-inner p {
  max-width: 360px;
  margin: 12px auto 22px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
}

.social-photos {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.social-photos img {
  width: 106px;
  height: 106px;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 44, 62, 0.18);
}

.social-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.social-actions a {
  color: var(--blue);
  text-decoration: none;
}

.social-actions .icon {
  width: 40px;
  height: 40px;
}

.follow-button {
  min-width: 142px;
  height: 40px;
  padding: 0 24px;
  color: var(--blue-dark) !important;
  border-radius: 10px;
  background: var(--white);
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(0, 44, 62, 0.18);
}

.newsletter {
  position: relative;
  overflow: hidden;
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 17px 16px, rgba(191, 174, 144, .18) 0 5px, transparent 6px),
    radial-gradient(circle at 9px 7px, rgba(191, 174, 144, .18) 0 3px, transparent 4px),
    radial-gradient(circle at 25px 7px, rgba(191, 174, 144, .18) 0 3px, transparent 4px);
  background-size: 160px 92px;
}

.newsletter-inner {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.newsletter-copy {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--blue);
}

.newsletter-copy > .icon {
  width: 88px;
  height: 88px;
}

.newsletter-copy h2 {
  margin: 0 0 5px;
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
}

.newsletter-copy p {
  max-width: 370px;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.subscribe {
  width: min(100%, 410px);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.subscribe label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.subscribe input {
  min-width: 0;
  width: 100%;
  height: 45px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid #bfcdd3;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  background: rgba(255, 255, 255, .86);
  font: inherit;
  font-size: 15px;
}

.subscribe button {
  height: 45px;
  gap: 9px;
  padding: 0 18px;
  color: var(--white);
  border-radius: 0 10px 10px 0;
  background: linear-gradient(180deg, #078fbb 0%, #00769e 100%);
  font-family: inherit;
  font-size: 14px;
}

.subscribe input:disabled,
.subscribe button:disabled {
  cursor: wait;
  opacity: .72;
}

.subscribe button .icon {
  width: 20px;
  height: 20px;
}

.subscribe-status {
  flex: 0 0 100%;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

.subscribe-status:empty {
  display: none;
}

.subscribe-status-success {
  color: var(--blue-deep);
}

.subscribe-status-error {
  color: #9d2334;
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.12) 0 110px, transparent 111px),
    linear-gradient(135deg, #006b8e 0%, #005775 100%);
}

.footer-main {
  min-height: 122px;
  display: grid;
  grid-template-columns: minmax(230px, 1.5fr) minmax(140px, .8fr) minmax(250px, 1.2fr) 146px;
  align-items: start;
  gap: 40px;
  padding-top: 10px;
  padding-bottom: 8px;
}

.site-footer h2 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.site-footer p,
.footer-links a {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.38;
  font-weight: 600;
  text-decoration: none;
}

.footer-about p {
  max-width: 315px;
}

.footer-about .icon {
  width: 17px;
  height: 17px;
  margin-top: 7px;
}

.footer-links {
  display: grid;
  gap: 4px;
}

.footer-contact {
  display: grid;
  gap: 4px;
}

.footer-contact p span {
  display: inline-block;
  margin-right: 8px;
}

.footer-logo {
  width: 112px;
  justify-self: end;
  filter: drop-shadow(0 8px 18px rgba(0, 39, 53, 0.22));
}

.footer-bottom {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .12);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1060px) {
  .page-shell {
    padding-inline: 52px;
  }

  .header-inner {
    grid-template-columns: 154px minmax(0, 1fr) auto;
    column-gap: 20px;
  }

  .brand {
    width: 146px;
    margin-top: 0;
  }

  .main-nav {
    gap: 20px;
    font-size: 12px;
  }

  .hero-art {
    margin-right: -42px;
  }

  .help-panel .panel-inner,
  .social-panel .panel-inner {
    padding-left: 42px;
    padding-right: 42px;
  }
}

@media (max-width: 880px) {
  .site-header {
    position: static;
  }

  .header-inner {
    min-height: auto;
    grid-template-columns: 112px 1fr;
    row-gap: 12px;
    padding-top: 14px;
    padding-bottom: 16px;
  }

  .brand {
    width: 108px;
    margin-top: 0;
    grid-row: span 2;
  }

  .main-nav {
    order: 3;
    grid-column: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 18px;
    white-space: normal;
  }

  .header-donate {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy h1,
  .hero-copy p {
    max-width: 560px;
  }

  .hero-art {
    width: min(760px, 112%);
    justify-self: center;
    margin: 6px -6% 0;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

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

  .panel-inner,
  .help-panel .panel-inner,
  .social-panel .panel-inner {
    max-width: 100%;
    min-height: auto;
    padding: 42px 36px;
    margin: 0;
  }

  .newsletter-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .subscribe {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-logo {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .page-shell {
    padding-inline: clamp(22px, 5.5vw, 45px);
  }

  .header-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    min-height: clamp(108px, 21vw, 166px);
    column-gap: clamp(8px, 2vw, 22px);
    padding-top: clamp(11px, 1.8vw, 15px);
    padding-bottom: clamp(11px, 1.8vw, 15px);
  }

  .brand {
    width: clamp(90px, 17.6vw, 137px);
    flex: 0 0 clamp(90px, 17.6vw, 137px);
    grid-row: auto;
  }

  .brand img {
    transform: scale(1.46);
    transform-origin: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 6px);
    left: clamp(22px, 5.5vw, 45px);
    right: clamp(22px, 5.5vw, 45px);
    z-index: 20;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(4, 127, 168, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(0, 83, 111, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

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

  .main-nav a {
    min-height: 44px;
    justify-content: center;
    border-radius: 6px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--blue);
    background: var(--aqua);
  }

  .header-donate {
    grid-column: 3;
    justify-self: end;
    transform: translateY(clamp(-16px, -1.7vw, -9px));
    min-width: clamp(112px, 23vw, 186px);
    height: clamp(42px, 7.2vw, 58px);
    padding: 0 clamp(17px, 3vw, 25px);
    font-size: clamp(14px, 3vw, 24px);
  }

  .header-donate .icon {
    width: clamp(17px, 3.2vw, 25px);
    height: clamp(17px, 3.2vw, 25px);
  }

  .menu-toggle {
    display: grid;
    grid-column: 4;
    transform: translateY(clamp(-16px, -1.7vw, -9px));
    width: clamp(34px, 6.6vw, 54px);
    height: clamp(34px, 6.6vw, 54px);
    place-items: center;
  }

  .menu-toggle span {
    display: none;
  }

  .menu-toggle::before {
    display: block;
    width: clamp(29px, 5.4vw, 43px);
    height: clamp(22px, 4vw, 32px);
    background:
      linear-gradient(currentColor, currentColor) top / 100% clamp(4px, .65vw, 5px) no-repeat,
      linear-gradient(currentColor, currentColor) center / 100% clamp(4px, .65vw, 5px) no-repeat,
      linear-gradient(currentColor, currentColor) bottom / 100% clamp(4px, .65vw, 5px) no-repeat;
  }

  .menu-toggle.is-open::before,
  .menu-toggle[aria-expanded="true"]::before {
    background:
      linear-gradient(currentColor, currentColor) center / 100% clamp(4px, .65vw, 5px) no-repeat,
      linear-gradient(currentColor, currentColor) center / 100% clamp(4px, .65vw, 5px) no-repeat;
    transform: rotate(45deg);
  }

  .menu-toggle.is-open::after,
  .menu-toggle[aria-expanded="true"]::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(29px, 5.4vw, 43px);
    height: clamp(4px, .65vw, 5px);
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    overflow: hidden;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .49fr) minmax(0, .51fr);
    align-items: start;
    column-gap: 0;
    min-height: auto;
    padding-top: clamp(28px, 6vw, 52px);
    padding-bottom: clamp(26px, 4vw, 36px);
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy h1 {
    margin-bottom: 13px;
    font-size: clamp(27px, 4.8vw, 38px);
    line-height: 1.22;
  }

  .hero-copy p {
    width: 100%;
    margin-bottom: 20px;
    font-size: clamp(15px, 2.6vw, 21px);
    line-height: 1.35;
  }

  .hero-actions {
    display: grid;
    gap: clamp(12px, 2vw, 16px);
    width: min(100%, clamp(178px, 29vw, 235px));
  }

  .button {
    width: 100%;
    min-width: 0;
    height: clamp(49px, 6.2vw, 58px);
    border-radius: 12px;
    font-size: clamp(16px, 2.5vw, 21px);
  }

  .hero-art {
    width: clamp(230px, 60vw, 500px);
    justify-self: end;
    align-self: start;
    margin: 0 clamp(-64px, -8vw, -32px) 0 0;
  }

  .section-title h2 {
    font-size: clamp(26px, 4.1vw, 34px);
  }

  .mission {
    padding-top: clamp(24px, 3.5vw, 30px);
    padding-bottom: clamp(30px, 5.5vw, 48px);
  }

  .mission-copy {
    max-width: min(100%, 520px);
    font-size: clamp(15px, 2.3vw, 18px);
    line-height: 1.35;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(5px, 2.7vw, 28px);
    margin-top: clamp(22px, 4vw, 38px);
  }

  .feature-icon {
    width: clamp(58px, 11vw, 90px);
    height: clamp(58px, 11vw, 90px);
    margin-bottom: clamp(10px, 1.8vw, 14px);
  }

  .feature-icon .icon {
    width: clamp(36px, 6.5vw, 53px);
    height: clamp(36px, 6.5vw, 53px);
  }

  .feature h3 {
    min-height: clamp(34px, 5vw, 40px);
    margin-bottom: 6px;
    font-size: clamp(13px, 2.1vw, 18px);
    line-height: 1.15;
  }

  .feature p {
    max-width: clamp(72px, 18vw, 128px);
    font-size: clamp(12px, 1.9vw, 17px);
    line-height: 1.25;
  }

  .panel-inner,
  .help-panel .panel-inner,
  .social-panel .panel-inner {
    padding: clamp(26px, 4vw, 38px) clamp(23px, 5.8vw, 46px) clamp(30px, 5.8vw, 46px);
  }

  .help-item {
    min-height: clamp(66px, 8.6vw, 76px);
    grid-template-columns: clamp(58px, 9vw, 76px) minmax(0, 1fr) 20px;
    gap: clamp(10px, 2vw, 16px);
  }

  .help-icon .icon {
    width: clamp(43px, 6.7vw, 55px);
    height: clamp(43px, 6.7vw, 55px);
  }

  .help-text strong {
    font-size: clamp(16px, 2.3vw, 19px);
  }

  .help-text span {
    font-size: clamp(14px, 2vw, 17px);
  }

  .social-inner p {
    max-width: min(100%, 415px);
    margin-bottom: 18px;
    font-size: clamp(17px, 2.7vw, 22px);
  }

  .social-photos {
    gap: clamp(10px, 2.6vw, 24px);
    margin-bottom: clamp(20px, 3vw, 27px);
  }

  .social-photos img {
    width: clamp(94px, 20.7vw, 164px);
    height: clamp(94px, 20.7vw, 164px);
    max-width: none;
    max-height: none;
  }

  .social-actions {
    gap: clamp(22px, 4.2vw, 34px);
    flex-wrap: nowrap;
  }

  .social-actions .icon {
    width: clamp(46px, 6.9vw, 56px);
    height: clamp(46px, 6.9vw, 56px);
  }

  .follow-button {
    min-width: clamp(150px, 22.4vw, 178px);
    height: clamp(43px, 6.1vw, 49px);
    font-size: clamp(16px, 2.4vw, 21px);
  }

  .newsletter {
    padding: 0;
  }

  .newsletter-inner {
    display: grid;
    grid-template-columns: clamp(78px, 15.3vw, 122px) minmax(0, 1fr);
    gap: 8px clamp(18px, 4vw, 32px);
    min-height: clamp(184px, 24vw, 196px);
    padding-top: clamp(23px, 4vw, 32px);
    padding-bottom: clamp(22px, 4vw, 32px);
  }

  .newsletter-copy {
    display: grid;
    grid-template-columns: clamp(78px, 15.3vw, 122px) minmax(0, 1fr);
    grid-column: 1 / -1;
    gap: clamp(18px, 4vw, 32px);
    align-items: center;
  }

  .newsletter-copy > div {
    min-width: 0;
  }

  .newsletter-copy > .icon {
    width: clamp(78px, 14vw, 112px);
    height: clamp(78px, 14vw, 112px);
  }

  .newsletter-copy h2 {
    font-size: clamp(24px, 4.1vw, 33px);
    line-height: 1.05;
  }

  .newsletter-copy p {
    font-size: clamp(15px, 2.3vw, 18px);
    line-height: 1.25;
  }

  .subscribe {
    grid-column: 2;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    gap: 0;
    overflow: hidden;
  }

  .subscribe input {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    height: 45px;
    border: 1px solid #bfcdd3;
    border-right: 0;
    border-radius: 8px 0 0 8px;
  }

  .subscribe button {
    width: auto;
    height: 45px;
    flex: 0 0 auto;
    padding-inline: clamp(10px, 2.4vw, 19px);
    border-radius: 0 8px 8px 0;
    font-size: clamp(12px, 2vw, 16px);
  }

  .footer-main {
    display: none;
  }

  .footer-bottom {
    min-height: 34px;
    text-align: center;
    font-size: clamp(11px, 1.8vw, 15px);
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .page-shell {
    padding-inline: 22px;
  }

  .header-inner {
    min-height: 108px;
    gap: 6px;
  }

  .brand {
    width: 76px;
  }

  .brand img {
    transform: scale(1.35);
  }

  .header-donate {
    min-width: 126px;
    height: 42px;
    gap: 7px;
    padding: 0 15px;
    font-size: 15px;
  }

  .header-donate .icon {
    width: 18px;
    height: 18px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .menu-toggle::before {
    width: 31px;
    height: 23px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .56fr) minmax(0, .44fr);
    padding-top: 30px;
    padding-bottom: 26px;
  }

  .hero-copy h1 {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.2;
  }

  .hero-copy p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.32;
  }

  .hero-actions {
    width: min(100%, 178px);
    gap: 12px;
  }

  .button {
    height: 47px;
    font-size: 15px;
  }

  .hero-art {
    width: 236px;
    margin-right: -78px;
  }

  .mission {
    padding-top: 26px;
    padding-bottom: 34px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .mission-copy {
    font-size: 14px;
    line-height: 1.3;
  }

  .feature-grid {
    gap: 10px 5px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-icon .icon {
    width: 34px;
    height: 34px;
  }

  .feature h3 {
    min-height: 32px;
    font-size: 12px;
  }

  .feature p {
    max-width: 74px;
    font-size: 11px;
  }

  .panel-inner,
  .help-panel .panel-inner,
  .social-panel .panel-inner {
    padding: 28px 22px 32px;
  }

  .help-item {
    grid-template-columns: 48px minmax(0, 1fr) 18px;
    min-height: 62px;
    gap: 10px;
  }

  .help-icon .icon {
    width: 40px;
    height: 40px;
  }

  .help-text strong {
    font-size: 15px;
  }

  .help-text span {
    font-size: 13px;
  }

  .arrow {
    font-size: 34px;
  }

  .social-inner p {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.3;
  }

  .social-photos {
    gap: 10px;
  }

  .social-photos img {
    width: clamp(82px, 25vw, 98px);
    height: clamp(82px, 25vw, 98px);
  }

  .social-actions {
    gap: 18px;
  }

  .social-actions .icon {
    width: 42px;
    height: 42px;
  }

  .follow-button {
    min-width: 140px;
    height: 42px;
    font-size: 15px;
  }

  .newsletter-inner {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 8px 14px;
    min-height: 188px;
  }

  .newsletter-copy {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 14px;
  }

  .newsletter-copy > .icon {
    width: 70px;
    height: 70px;
  }

  .newsletter-copy h2 {
    font-size: 24px;
  }

  .newsletter-copy p {
    font-size: 14px;
  }

  .subscribe input {
    height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .subscribe button {
    height: 42px;
    gap: 6px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .subscribe button .icon {
    width: 16px;
    height: 16px;
  }

  .footer-bottom {
    padding-inline: 18px;
    white-space: normal;
  }
}
