:root {
  --ink: #12161f;
  --muted-ink: #5c6675;
  --paper: #f7f8fb;
  --surface: #ffffff;
  --soft: #eef2f7;
  --line: #e2e6ee;
  --belarus-red: #d4213d;
  --belarus-red-dark: #a9152c;
  --ukraine-blue: #1e5aa8;
  --ukraine-yellow: #ffd84d;
  --graphite: #17202b;
  --shadow: 0 18px 55px rgba(18, 22, 31, 0.12);
  --small-shadow: 0 8px 24px rgba(18, 22, 31, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .floating-donate {
  bottom: 26px;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(14px, 2.2vw, 24px);
  min-height: 82px;
  padding: 18px clamp(20px, 6vw, 96px);
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, padding 220ms ease, color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  min-height: 68px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(226, 230, 238, 0.82);
  box-shadow: 0 14px 42px rgba(18, 22, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: currentColor;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand .brand-logo,
.site-header .brand-logo,
.footer .brand-logo {
  display: block;
  flex: 0 0 44px;
  width: 44px !important;
  min-width: 44px;
  max-width: 44px;
  height: 44px !important;
  min-height: 44px;
  max-height: 44px;
  object-fit: contain;
  border-radius: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-header.is-scrolled .site-nav,
body:not(.home) .site-nav {
  color: var(--muted-ink);
}

.site-nav a,
.header-donate,
.floating-donate,
.project a,
.footer a {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

.site-nav a:hover {
  color: currentColor;
}

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

.header-donate,
.floating-donate,
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-donate,
.floating-donate,
.button.primary {
  color: #fff;
  background: var(--belarus-red);
  box-shadow: 0 12px 28px rgba(212, 33, 61, 0.24);
}

.hero .button.primary {
  animation: donateBreath 4.8s ease-in-out infinite;
}

.hero .button.primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.28) 44%, transparent 68%);
  transform: translateX(-130%) skewX(-14deg);
  transition: transform 520ms ease;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.header-donate:hover,
.floating-donate:hover,
.button:hover {
  transform: translateY(-2px);
}

.button.primary:hover {
  background: var(--belarus-red-dark);
  box-shadow: 0 16px 36px rgba(212, 33, 61, 0.32);
}

.hero .button.primary:hover::after {
  transform: translateX(130%) skewX(-14deg);
}

.floating-donate {
  position: fixed;
  z-index: 19;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 36px);
  min-height: 54px;
  padding-inline: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
  box-shadow: 0 10px 22px rgba(212, 33, 61, 0.22);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-donate.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  animation: floatingDonatePulse 5.6s ease-in-out infinite;
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.18);
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .language-switcher,
body:not(.home) .language-switcher {
  background: rgba(18, 22, 31, 0.04);
  border-color: rgba(18, 22, 31, 0.08);
}

.language-switcher button {
  min-width: 42px;
  height: 38px;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled .language-switcher button,
body:not(.home) .language-switcher button {
  color: var(--muted-ink);
}

.language-switcher button[aria-pressed="true"] {
  color: var(--ink);
  background: linear-gradient(135deg, #fff 0%, #fff5f6 46%, var(--ukraine-yellow) 100%);
  box-shadow: 0 10px 22px rgba(255, 216, 77, 0.22), inset 0 0 0 1px rgba(212, 33, 61, 0.14);
}

.language-switcher button:hover {
  transform: translateY(-1px);
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  position: relative;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled .header-social a,
body:not(.home) .header-social a {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.social-links a::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: currentColor;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 180ms ease, transform 180ms ease;
}

.social-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 220ms ease;
}

.social-icon rect,
.social-icon circle,
.social-icon path {
  vector-effect: non-scaling-stroke;
}

.social-icon rect,
.social-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-icon path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--ukraine-blue);
  border-color: var(--ukraine-blue);
  box-shadow: 0 10px 22px rgba(30, 90, 168, 0.18);
}

.social-links a:hover::after {
  opacity: 0.1;
  transform: scale(1);
}

.social-links a:hover .social-icon {
  transform: scale(1.08) rotate(-3deg);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(96px, 13dvh, 132px) clamp(20px, 7vw, 96px) clamp(28px, 5dvh, 58px);
  color: #fff;
  isolation: isolate;
}

body.admin-bar .hero {
  min-height: calc(100svh - 32px);
  min-height: calc(100dvh - 32px);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 19, 27, 0.93) 0%, rgba(13, 19, 27, 0.74) 48%, rgba(13, 19, 27, 0.3) 100%),
    linear-gradient(0deg, rgba(13, 19, 27, 0.48), rgba(13, 19, 27, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 890px;
  display: grid;
  align-content: end;
  animation: fadeUp 720ms ease both;
}

.hero-identity {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: min(100%, 660px);
  margin-bottom: clamp(14px, 2.6dvh, 22px);
  padding: 8px 12px 8px 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-identity img {
  display: block;
  flex: 0 0 clamp(48px, 8dvh, 64px);
  width: clamp(48px, 8dvh, 64px);
  height: clamp(48px, 8dvh, 64px);
  object-fit: contain;
}

.hero-identity span {
  max-width: 460px;
  font-size: clamp(14px, 2.2dvh, 18px);
  font-weight: 850;
  line-height: 1.14;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 clamp(8px, 1.8dvh, 12px);
  color: var(--belarus-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
}

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

h1 {
  max-width: 900px;
  margin-bottom: clamp(12px, 2.4dvh, 20px);
  font-size: clamp(46px, 9.2dvh, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 780px;
  margin-bottom: clamp(16px, 3dvh, 26px);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2.9dvh, 21px);
}

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

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-item {
  min-height: 148px;
  padding: 30px clamp(20px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.94);
  transition: transform 180ms ease, background 180ms ease;
}

.intro-item:hover {
  transform: translateY(-2px);
  background: #fff;
}

.intro-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
  letter-spacing: 0;
}

.intro-item span {
  color: var(--muted-ink);
}

.section {
  padding: clamp(72px, 10vw, 118px) clamp(20px, 7vw, 96px);
}

.content-page {
  padding-top: clamp(166px, 14vw, 220px);
  min-height: 62vh;
}

.section.muted {
  background: #fff;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.section-heading.compact {
  margin-bottom: 26px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.16;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  color: var(--muted-ink);
  font-size: 19px;
}

.identity-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--small-shadow);
}

.identity-card img {
  width: min(100%, 320px);
  height: auto;
  border-radius: var(--radius);
  background: var(--surface);
}

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

.feature,
.donate-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--small-shadow);
}

.feature {
  min-height: 260px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 90, 168, 0.28);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  color: #fff;
  background: var(--ukraine-blue);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
}

.feature:nth-child(2) .feature-icon {
  background: var(--belarus-red);
}

.feature:nth-child(3) .feature-icon {
  color: var(--ink);
  background: var(--ukraine-yellow);
}

.feature p,
.project p,
.report-grid p,
.donate-copy p,
.footer p {
  color: var(--muted-ink);
}

.project-list {
  display: grid;
  gap: 12px;
}

.project {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(18, 22, 31, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 33, 61, 0.28);
  box-shadow: var(--small-shadow);
}

.project h3 {
  margin-bottom: 8px;
}

.project p {
  max-width: 760px;
  margin-bottom: 0;
}

.project-label {
  color: var(--ukraine-blue) !important;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--belarus-red);
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 850;
  transition: color 180ms ease, background 180ms ease;
}

.project a:hover {
  color: #fff;
  background: var(--belarus-red);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  min-height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--small-shadow);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 33, 61, 0.28);
  box-shadow: var(--shadow);
}

.news-card a,
.news-card-empty {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 24px;
  text-decoration: none;
}

.news-card figure {
  margin: -24px -24px 20px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft);
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.news-card time {
  margin-bottom: 12px;
  color: var(--ukraine-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card h3 {
  margin-bottom: 10px;
}

.news-card p {
  margin-bottom: 0;
  color: var(--muted-ink);
}

.donate-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
  color: #fff;
  background: var(--graphite);
}

.donate-copy .eyebrow {
  color: var(--ukraine-yellow);
}

.donate-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.donate-panel {
  padding: 28px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.amount-title {
  margin-bottom: 14px;
  color: var(--muted-ink);
  font-weight: 850;
}

.currency-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.currency-options a {
  display: grid;
  place-items: center;
  min-height: 64px;
  color: #fff;
  background: var(--belarus-red);
  border: 1px solid var(--belarus-red);
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 21px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(212, 33, 61, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.currency-options a:hover {
  transform: translateY(-2px);
  background: var(--belarus-red-dark);
  box-shadow: 0 16px 34px rgba(212, 33, 61, 0.26);
}

.wide {
  width: 100%;
}

.fineprint {
  margin: 14px 0 0;
  color: var(--muted-ink);
  font-size: 14px;
}

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

.report-grid > div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 230, 238, 0.8);
  border-radius: var(--radius);
}

.report-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 44px clamp(20px, 7vw, 96px);
  color: #fff;
  background: var(--graphite);
  border-top: 5px solid var(--belarus-red);
}

.footer-brand {
  margin-bottom: 14px;
  color: #fff;
}

.footer .brand-logo {
  filter: none;
}

.footer-social {
  margin-top: 24px;
}

.footer-social a {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.footer-social a:hover {
  color: var(--ink);
  background: var(--ukraine-yellow);
  border-color: var(--ukraine-yellow);
}

.footer address {
  display: grid;
  gap: 8px;
  align-content: start;
  font-style: normal;
}

.footer a:hover {
  color: var(--ukraine-yellow);
}

.wp-content {
  display: block;
  max-width: 850px;
  color: var(--muted-ink);
  font-size: 19px;
}

.wp-content a {
  color: var(--ukraine-blue);
  font-weight: 800;
}

.wp-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.section,
.intro-item,
.feature,
.project,
.news-card,
.donate-panel,
.report-grid > div,
.identity-card {
  animation: fadeUp 700ms ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 24%;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-1.2%, -0.6%, 0);
  }
}

@keyframes donateBreath {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(212, 33, 61, 0.22);
  }

  50% {
    box-shadow: 0 16px 38px rgba(212, 33, 61, 0.32), 0 0 0 6px rgba(212, 33, 61, 0.08);
  }
}

@keyframes floatingDonatePulse {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(212, 33, 61, 0.22), 0 0 0 0 rgba(212, 33, 61, 0);
  }

  45% {
    box-shadow: 0 12px 24px rgba(212, 33, 61, 0.24), 0 0 0 7px rgba(212, 33, 61, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 900px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .header-social a {
    width: 40px;
    height: 40px;
    font-size: 11px;
  }

  .header-social .social-icon {
    width: 19px;
    height: 19px;
  }

  .header-donate {
    display: none;
  }

  .language-switcher {
    justify-self: end;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    padding: 22px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: clamp(92px, 12dvh, 118px);
    padding-bottom: clamp(24px, 5dvh, 48px);
  }

  body.admin-bar .hero {
    min-height: calc(100svh - 46px);
    min-height: calc(100dvh - 46px);
  }

  .intro-band,
  .feature-grid,
  .split,
  .news-grid,
  .donate-section,
  .report-grid,
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-header .brand > span:not(.brand-mark) {
    display: none;
  }

  .brand .brand-logo,
  .site-header .brand-logo,
  .footer .brand-logo {
    flex-basis: 34px;
    width: 34px !important;
    min-width: 34px;
    max-width: 34px;
    height: 34px !important;
    min-height: 34px;
    max-height: 34px;
  }

  .language-switcher button {
    min-width: 32px;
    padding: 0 6px;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-identity {
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 8px 10px 8px 8px;
  }

  .hero-identity img {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  h1 {
    font-size: clamp(40px, 8.4dvh, 58px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .floating-donate {
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    width: auto;
    min-height: 48px;
    padding-inline: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(212, 33, 61, 0.2);
  }

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

  .currency-options {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 820px) {
  .hero-identity {
    gap: 10px;
  }

  .hero-copy {
    max-width: 720px;
  }
}

@media (max-height: 720px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 22px;
  }

  body.admin-bar .hero {
    min-height: calc(100dvh - 46px);
  }

  .hero-identity img {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .hero-identity span {
    font-size: 13px;
  }

  h1 {
    font-size: clamp(40px, 8.2dvh, 58px);
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.42;
  }
}

@media (max-width: 480px) {
  .header-social {
    display: none;
  }
}
