:root {
  --ink: #17211f;
  --pine: #123a35;
  --pine-dark: #092a26;
  --paper: #f7f8f4;
  --white: #ffffff;
  --line: #ccd5cf;
  --muted: #68746f;
  --yellow: #f5c84c;
  --coral: #e5664d;
  --aqua: #3aa6a1;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(18, 58, 53, 0.14);
  background: rgba(247, 248, 244, 0.96);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 15px;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--coral);
  transition: transform 180ms ease;
}

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

.header-help {
  padding: 12px 22px;
  border-radius: 4px;
  color: var(--white);
  background: var(--pine);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--pine);
  border-radius: 4px;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--pine);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  padding: clamp(80px, 13vh, 140px) max(24px, calc((100vw - var(--max)) / 2));
  align-content: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 42, 38, 0.96) 0%, rgba(9, 42, 38, 0.8) 47%, rgba(9, 42, 38, 0.15) 78%),
    url("assets/anatoliy-wave.webp") center 28% / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 8px;
  content: "";
  background: var(--yellow);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 67vw);
}

.eyebrow,
.section-number {
  margin: 0 0 22px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(52px, 6vw, 88px);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

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

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(9, 42, 38, 0.22);
}

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

.hero-total {
  position: absolute;
  z-index: 1;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 74px;
  width: 290px;
  padding-left: 24px;
  border-left: 3px solid var(--yellow);
}

.hero-total span,
.hero-total small {
  display: block;
}

.hero-total span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-total strong {
  display: block;
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.hero-total small {
  max-width: 245px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.quick-facts div {
  min-height: 112px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.quick-facts div:last-child {
  border-right: 0;
}

.quick-facts span,
.quick-facts strong {
  display: block;
}

.quick-facts span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.quick-facts strong {
  font-size: 17px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 240px 1fr;
  margin-bottom: 68px;
  align-items: start;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 5vw, 72px);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  gap: 100px;
  align-items: start;
}

.story-copy {
  font-size: 18px;
  line-height: 1.8;
}

.story-intro {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.45;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 5px;
  font-size: 17px;
}

.timeline span {
  color: var(--muted);
  font-size: 14px;
}

.portrait-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  min-height: 620px;
  background: var(--pine);
}

.portrait-band figure {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
}

.portrait-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-main figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 18px;
  color: var(--white);
  background: rgba(9, 42, 38, 0.82);
  font-size: 14px;
}

.portrait-quote {
  display: flex;
  padding: 55px;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.portrait-quote blockquote {
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
}

.portrait-quote span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cost-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 74px;
}

.cost-total {
  padding: 42px;
  border-top: 7px solid var(--coral);
  background: var(--white);
}

.cost-total span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cost-total strong {
  display: block;
  margin: 20px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
}

.cost-total p {
  margin-bottom: 0;
  color: var(--muted);
}

.cost-items {
  border-top: 1px solid var(--line);
}

.cost-items article {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.cost-index {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.cost-items h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.cost-items p {
  margin-bottom: 0;
  color: var(--muted);
}

.cost-items article > strong {
  white-space: nowrap;
  font-size: 20px;
}

.video-block {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 90px;
  background: var(--pine-dark);
}

.video-copy {
  padding: 54px;
  color: var(--white);
}

.video-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.15;
}

.video-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.video-block video {
  width: 100%;
  height: 460px;
  object-fit: cover;
  background: #000;
}

.help-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
  gap: 80px;
  color: var(--white);
  background: var(--pine);
}

.section-number.light {
  color: var(--yellow);
}

.help-copy h2,
.social-section h2,
.final-appeal h2 {
  font-size: clamp(46px, 5vw, 72px);
}

.help-copy > p:not(.section-number) {
  max-width: 550px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.payment-panel {
  display: grid;
  grid-template-columns: 230px 1fr;
  padding: 30px;
  gap: 32px;
  color: var(--ink);
  background: var(--white);
}

.payment-panel > img {
  width: 230px;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.payment-details > span,
.payment-details > strong {
  display: block;
}

.payment-details > span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.payment-details > strong {
  margin: 5px 0 18px;
  font-size: 17px;
}

.payment-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  align-items: center;
  border-top: 1px solid var(--line);
}

.payment-row span,
.payment-row b {
  display: block;
}

.payment-row span {
  color: var(--muted);
  font-size: 11px;
}

.payment-row b {
  font-size: 17px;
}

.copy-button {
  padding: 8px 10px;
  border: 1px solid var(--pine);
  border-radius: 3px;
  color: var(--pine);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.payment-details > small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.documents-head {
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
}

.documents-head > p {
  padding-top: 45px;
  color: var(--muted);
  font-size: 17px;
}

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

.document-cover {
  position: relative;
  min-height: 510px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: #e8ece8;
  cursor: zoom-in;
}

.document-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 220ms ease;
}

.document-cover:hover img {
  transform: scale(1.02);
}

.document-cover > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 18px;
  color: var(--white);
  background: rgba(9, 42, 38, 0.9);
  text-align: left;
}

.document-cover b,
.document-cover small {
  display: block;
}

.document-cover small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.all-documents {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.all-documents summary {
  display: flex;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.all-documents summary::-webkit-details-marker {
  display: none;
}

.all-documents summary span {
  font-size: 28px;
  font-weight: 400;
}

.all-documents[open] summary span {
  transform: rotate(45deg);
}

.document-groups {
  padding-bottom: 40px;
}

.document-groups section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.document-groups h3 {
  font-size: 18px;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.thumb-grid button {
  height: 220px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  cursor: zoom-in;
}

.thumb-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.social-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 100px max(24px, calc((100vw - var(--max)) / 2));
  gap: 90px;
  color: var(--white);
  background: var(--pine-dark);
}

.social-section > div > p:last-child {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  align-self: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  padding: 22px 0;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.social-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.social-icon.vk {
  background: #2787f5;
}

.social-icon.instagram {
  background: var(--coral);
}

.social-links b,
.social-links small {
  display: block;
}

.social-links small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
}

.final-appeal {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: 100px max(24px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  color: var(--white);
  background: var(--pine);
}

.final-appeal::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(9, 42, 38, 0.92), rgba(9, 42, 38, 0.25));
}

.final-appeal > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.final-appeal > div {
  position: relative;
  z-index: 1;
}

.final-appeal .eyebrow {
  color: var(--yellow);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  max-width: var(--max);
  min-height: 150px;
  margin: 0 auto;
  gap: 30px;
  align-items: center;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

footer > a:last-child {
  color: var(--pine);
  font-size: 13px;
  font-weight: 700;
}

.mobile-donate {
  display: none;
}

.image-dialog {
  width: min(94vw, 900px);
  max-height: 92vh;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 4px;
  background: var(--white);
}

.image-dialog::backdrop {
  background: rgba(9, 42, 38, 0.85);
}

.image-dialog img {
  width: 100%;
  height: auto;
}

.image-dialog p {
  margin: 0;
  padding: 16px 56px 16px 18px;
  font-weight: 700;
}

.dialog-close {
  position: fixed;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.toast {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  transform: translateY(30px);
  border-radius: 3px;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-help {
    display: none;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 76px 0 auto;
    display: flex;
    min-height: calc(100svh - 76px);
    padding: 38px 24px 100px;
    flex-direction: column;
    gap: 0;
    transform: translateY(-110%);
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms;
  }

  .site-nav.open {
    z-index: 49;
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 400;
  }

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

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

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

  .hero {
    min-height: 760px;
    padding-bottom: 170px;
    background:
      linear-gradient(90deg, rgba(9, 42, 38, 0.96) 0%, rgba(9, 42, 38, 0.76) 65%, rgba(9, 42, 38, 0.28)),
      url("assets/anatoliy-wave.webp") 58% 26% / cover no-repeat;
  }

  .hero-content {
    width: min(700px, 88vw);
  }

  .hero-total {
    right: 24px;
    bottom: 56px;
    left: 24px;
    width: auto;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 90px 24px;
  }

  .story-grid,
  .cost-layout,
  .video-block,
  .help-section,
  .social-section {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .cost-layout,
  .help-section,
  .social-section {
    gap: 55px;
  }

  .portrait-band {
    grid-template-columns: 1fr 1fr;
  }

  .portrait-quote {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .cost-total {
    max-width: 560px;
  }

  .video-copy {
    padding: 42px;
  }

  .help-section,
  .social-section {
    padding: 90px 24px;
  }

  .payment-panel {
    max-width: 760px;
  }

  .document-cover {
    min-height: 430px;
  }

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

  footer {
    grid-template-columns: 1fr 1fr;
    padding: 34px 24px 110px;
  }

  footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .mobile-donate {
    position: fixed;
    z-index: 45;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--ink);
    background: var(--yellow);
    box-shadow: 0 10px 30px rgba(9, 42, 38, 0.25);
    font-weight: 800;
    text-decoration: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 8px 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 21px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    inset: 66px 0 auto;
    min-height: calc(100svh - 66px);
  }

  .hero {
    min-height: 790px;
    padding: 80px 18px 200px;
    background:
      linear-gradient(180deg, rgba(9, 42, 38, 0.85) 0%, rgba(9, 42, 38, 0.67) 45%, rgba(9, 42, 38, 0.96) 100%),
      url("assets/anatoliy-wave.webp") center 24% / cover no-repeat;
  }

  h1 {
    font-size: clamp(45px, 14vw, 63px);
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .hero-total {
    bottom: 48px;
  }

  .hero-total strong {
    font-size: 34px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    border: 0;
  }

  .quick-facts div {
    min-height: auto;
    padding: 22px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 75px 18px;
  }

  .section-head {
    grid-template-columns: 1fr;
    margin-bottom: 44px;
  }

  .section-head h2,
  .help-copy h2,
  .social-section h2,
  .final-appeal h2 {
    font-size: 43px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-copy {
    font-size: 16px;
  }

  .story-intro {
    font-size: 24px;
  }

  .timeline li {
    grid-template-columns: 64px 1fr;
  }

  .portrait-band {
    grid-template-columns: 1fr;
  }

  .portrait-band figure {
    min-height: 500px;
  }

  .portrait-band figure:nth-child(2) {
    min-height: 360px;
  }

  .portrait-quote {
    grid-column: auto;
    min-height: 350px;
    padding: 40px 24px;
  }

  .cost-total {
    padding: 30px 22px;
  }

  .cost-items article {
    grid-template-columns: 32px 1fr;
    gap: 14px;
  }

  .cost-items article > strong {
    grid-column: 2;
  }

  .video-copy {
    padding: 34px 22px;
  }

  .video-block video {
    height: 420px;
  }

  .help-section,
  .social-section {
    padding: 75px 18px;
  }

  .payment-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .payment-panel > img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
  }

  .payment-row {
    grid-template-columns: 1fr;
  }

  .copy-button {
    min-height: 40px;
  }

  .documents-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .documents-head > p {
    padding-top: 0;
  }

  .document-featured {
    grid-template-columns: 1fr;
  }

  .document-cover {
    min-height: 470px;
  }

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

  .thumb-grid button {
    height: 210px;
  }

  .social-section {
    gap: 40px;
  }

  .social-links a {
    grid-template-columns: 44px 1fr auto;
  }

  .final-appeal {
    min-height: 610px;
    padding: 70px 18px 120px;
  }

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

  footer p {
    grid-column: auto;
    grid-row: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
