@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --page-bg: #f8f1ea;
  --paper: rgb(255 251 247 / 74%);
  --paper-strong: rgb(255 252 249 / 90%);
  --ink: #2e3551;
  --muted: #5f6680;
  --accent: #8d6fa7;
  --accent-soft: #d9c9e8;
  --accent-deep: #715884;
  --sand: #dfc4ab;
  --sand-deep: #b88b6d;
  --line: rgb(141 111 167 / 22%);
  --shadow: none;
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --font-script: "Segoe Script", "URW Chancery L", "Brush Script MT", "Lucida Handwriting", cursive;
}

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

html {
  min-height: 100%;
  background: var(--page-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  color: var(--ink);
  font-family: var(--font-body);
  background: linear-gradient(180deg, #faf2ea 0%, #f5e6da 45%, #eeddd0 100%);
  background-repeat: no-repeat;
}

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

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

.rebus-title {
  color: var(--accent-deep);
}

/* Sidebar */
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: flex;
  width: 264px;
  flex-direction: column;
  padding: 34px 28px 28px;
  background: rgb(255 251 247 / 0.95);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.sidebar-brand__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-soft);
  box-shadow: none;
}

.sidebar-brand strong {
  display: block;
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
}

.sidebar-brand small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: auto 0;
}

.sidebar-nav a {
  position: relative;
  padding: 11px 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s, transform 0.25s;
}

.sidebar-nav a::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 50%;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s;
}

.sidebar-nav a:hover {
  color: var(--accent-deep);
  transform: translateX(4px);
}

.sidebar-nav a:hover::before {
  width: 20px;
}

.sidebar-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sidebar-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.sidebar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s;
}

.sidebar-socials a:hover {
  transform: translateY(-2px) scale(1.1);
}

.sidebar-email {
  display: block;
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sidebar-ask-btn {
  display: inline-block;
  padding: 10px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand-deep), var(--accent));
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sidebar-ask-btn:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.menu-toggle,
.menu-backdrop {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

.page-shell {
  width: min(960px, calc(100% - 264px - 48px));
  margin-left: max(calc(264px + 24px), calc((100% + 264px - 960px) / 2));
  margin-right: max(24px, calc((100% - 264px - 960px) / 2));
  overflow: hidden;
}

.page-shell--full {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  padding: 28px 0 36px;
}

.hero {
  position: relative;
  padding: 0 0 24px;
  overflow: hidden;
}

.hero__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border: 1px solid rgb(255 255 255 / 0.72);
  border-radius: 999px;
  background: rgb(255 249 244 / 0.55);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.brand__eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand__title {
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero__banner {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.hero__intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  align-items: stretch;
  margin: 12px 0 0;
}

.hero__intro-photo {
  display: flex;
  justify-content: flex-start;
}

.hero__intro-img {
  width: 100%;
  height: 100%;
  max-width: 460px;
  object-fit: contain;
  object-position: bottom;
}

.hero__intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: auto;
  padding: 24px 28px;
  border: 1px solid rgb(255 255 255 / 0.68);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: none;
  backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 21px);
  font-style: italic;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}

.hero__greeting-line {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.hero__intro-text p {
  margin: 0 0 14px;
}

.hero__intro-text p:last-child {
  margin-bottom: 0;
}

.hero__mission {
  margin-top: 18px !important;
  font-style: italic;
}

.hero__photo-card {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 0.78);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgb(255 252 249 / 0.86), rgb(250 239 231 / 0.76));
  box-shadow: none;
}

.hero__photo-card::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgb(141 111 167 / 0.18);
  border-radius: 28px;
  content: "";
  pointer-events: none;
}

.hero__photo {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
}

.hero__photo-card--wide {
  max-width: min(100%, 980px);
  width: 100%;
  padding: 14px;
  border-radius: 42px;
}

.hero__photo-card--wide::before {
  inset: 10px;
  border-radius: 32px;
}

.hero__photo--wide {
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 30px;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__content--centered {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

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

.hero__logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 0;
}

.hero__logo-badge {
  width: clamp(240px, 36vw, 420px);
  aspect-ratio: 1;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 0.84);
  border-radius: 50%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(255 252 249 / 0.96), rgb(252 244 237 / 0.82));
  box-shadow: none;
}

.hero__logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero__greeting {
  margin: 28px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.3vw, 40px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.42;
}

.hero__greeting--centered {
  margin-top: 46px;
}

.mission-frame {
  max-width: 620px;
  margin-top: 28px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.86), rgb(255 248 243 / 0.68));
  box-shadow: none;
}

.mission-frame p {
  margin: 0;
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  line-height: 1.28;
}

.mission-frame--centered {
  margin-inline: auto;
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.story-card,
.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgb(255 255 255 / 0.68);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.story-card::before,
.cta-card::before,
.materials-showcase::before {
  display: none;
}

.story-card__lead,
.story-card__text,
.cta-card p,
.values p {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
}

.story-card__lead {
  font-weight: 700;
}

.story-card__text {
  margin-top: 18px;
}

.story-card__values {
  margin-top: 22px;
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-style: italic;
  line-height: 1.45;
  text-align: center;
}

.materials-showcase {
  position: relative;
  display: grid;
  gap: clamp(22px, 3vw, 30px);
}

.materials-showcase h2 {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.materials-showcase h2 span {
  display: block;
  margin-top: 12px;
  color: var(--accent-deep);
  font-weight: 800;
}

.materials-showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.materials-category {
  min-height: 136px;
  display: grid;
  grid-template-columns: clamp(82px, 8vw, 112px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.5vw, 28px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgb(255 255 255 / 0.72);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgb(255 252 249 / 0.92), rgb(255 246 240 / 0.76));
  box-shadow: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.materials-category--wide {
  grid-column: 1 / -1;
}

.materials-category:hover {
  transform: translateY(-3px);
  border-color: rgb(141 111 167 / 0.34);
  box-shadow: none;
}

.materials-category:focus-visible {
  outline: 3px solid rgb(141 111 167 / 0.34);
  outline-offset: 4px;
}

.materials-category__text {
  display: grid;
  gap: 7px;
}

.materials-category__text span,
.materials-category__text strong {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(24px, 2.8vw, 35px);
  line-height: 1.12;
}

.materials-category__text span {
  color: var(--muted);
}

.materials-category__text strong {
  color: var(--accent-deep);
  font-size: clamp(24px, 2.8vw, 35px);
}

.materials-title-break {
  display: none;
}

.materials-category__thumb {
  order: -1;
  width: clamp(82px, 8vw, 112px);
  aspect-ratio: 3 / 4;
  display: block;
  overflow: hidden;
  border: 5px solid rgb(255 252 249 / 0.94);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgb(255 252 249 / 0.94), rgb(246 235 228 / 0.8));
  box-shadow: none;
}

.materials-category__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.materials-category__thumb--empty {
  border-style: dashed;
  border-color: rgb(141 111 167 / 0.28);
  background:
    radial-gradient(circle at 50% 42%, rgb(141 111 167 / 0.14), transparent 34%),
    linear-gradient(145deg, rgb(255 252 249 / 0.94), rgb(246 235 228 / 0.8));
}

.benefits {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  position: relative;
  margin-top: 12px;
  padding-left: 28px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
}

.benefits li::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--sand), var(--accent));
  box-shadow: none;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-card__eyebrow {
  margin-bottom: 10px;
  color: var(--sand-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-card h2 {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: min(100%, 340px);
  padding: 18px 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--sand-deep), var(--accent));
  box-shadow: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: none;
  filter: saturate(1.06);
}

.cta-button:focus-visible {
  outline: 3px solid rgb(141 111 167 / 0.35);
  outline-offset: 4px;
}

.hero__intro-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support-project-link {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.support-project-link--under-logo {
  display: none;
}

.cta-button--hero {
  width: 100%;
  padding: 24px 28px;
  font-size: 18px;
}

.counter-card {
  padding: 24px 28px;
  border: 1px solid rgb(255 255 255 / 0.68);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: none;
  backdrop-filter: blur(12px);
  text-align: center;
}

.counter-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(24px, 2.8vw, 35px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
}

.counter-count-line {
  white-space: nowrap;
}

.counter-number {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 900;
  color: var(--accent-deep);
  font-size: 3.6em;
  line-height: 1;
  min-width: 1.2em;
  vertical-align: middle;
}

.notice-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgb(46 53 81 / 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.notice-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.notice-card {
  position: relative;
  max-width: 360px;
  padding: 32px 36px;
  text-align: center;
  border: 1px solid rgb(255 255 255 / 0.68);
  border-radius: 34px;
  background: var(--paper);
  backdrop-filter: blur(12px);
}

.notice-card p {
  margin: 0;
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
}

.notice-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--accent-deep);
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.contacts-section {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgb(255 255 255 / 0.68);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: none;
  backdrop-filter: blur(12px);
  text-align: center;
}

.contacts-section h2 {
  margin: 0 0 28px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
}

.contacts-title-break {
  display: none;
}

.contacts-socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}

.contacts-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease;
}

.contacts-social-link:hover {
  transform: scale(1.12);
}

.contacts-email {
  margin: 0 0 28px;
}

.contacts-email a {
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contacts-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contacts-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand-deep), var(--accent));
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contacts-btn:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.footer {
  padding: 34px 0 8px;
  text-align: center;
}

.footer p {
  margin: 0;
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.28;
}

.site-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px 60px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.site-footer-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px 60px;
}

.site-footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer p a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer nav a {
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-rights {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  text-decoration: none;
}

.footer-brand__icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 56px;
  aspect-ratio: 1;
  border-radius: 18px;
  color: #fff6e8;
  background:
    radial-gradient(circle at 33% 26%, rgb(255 255 255 / 25%), transparent 36%),
    linear-gradient(145deg, #f09a42, #ce612d);
  box-shadow: 0 10px 20px rgb(206 97 45 / 24%);
  transition: transform 0.2s ease;
}

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

.footer-brand:focus-visible {
  outline: 3px solid color-mix(in srgb, #d77037 74%, #fff);
  outline-offset: 4px;
  border-radius: 12px;
}

.footer-brand__icon svg {
  width: 42px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-brand__loaf {
  fill: rgb(255 230 191 / 16%);
}

.footer-brand__copy {
  display: flex;
  flex-direction: column;
}

.footer-brand__wordmark {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.footer-brand__wordmark b {
  font-style: normal;
  background: linear-gradient(145deg, #f09a42, #ce612d);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand__wordmark i {
  font-style: normal;
  color: #d77037;
}

.footer-brand__tagline {
  margin-top: 6px;
  color: color-mix(in srgb, #d77037 34%, #5d6980);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .cta-card {
    grid-template-columns: 1fr;
  }

  .materials-showcase__grid {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .story-card,
  .cta-card,
  .materials-showcase {
    text-align: center;
  }

  .benefits {
    text-align: left;
  }

  .cta-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .site-footer-columns {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
  }

  .footer-brand {
    margin-left: 0;
  }

  .footer-brand__icon {
    width: 46px;
    border-radius: 15px;
  }

  .footer-brand__icon svg {
    width: 34px;
  }

  .footer-brand__wordmark {
    font-size: 22px;
  }

  .footer-brand__tagline {
    font-size: 10px;
  }

  .contacts-title-break,
  .materials-title-break {
    display: inline;
  }

  .counter-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .counter-row {
    display: block;
  }

  .menu-toggle {
    position: fixed;
    z-index: 40;
    left: 18px;
    top: 18px;
    display: flex;
    width: 50px;
    height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgb(255 251 247 / 0.92);
    box-shadow: none;
    cursor: pointer;
    backdrop-filter: blur(8px);
  }

  .menu-toggle span {
    width: 19px;
    height: 1.5px;
    background: var(--accent-deep);
    transition: transform 0.25s, opacity 0.25s;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle {
    left: min(calc(82vw - 62px), 258px);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: none;
    background: rgb(46 53 81 / 0.45);
  }

  .menu-open .menu-backdrop {
    display: block;
  }

  .sidebar {
    z-index: 30;
    width: min(82vw, 320px);
    padding: 30px 24px;
    transform: translateX(-105%);
    transition: transform 0.3s ease;
  }

  .sidebar.open {
    transform: none;
  }

  .sidebar-nav {
    margin: 40px 0 auto;
  }

  .page-shell {
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
    padding-top: 18px;
  }

  .brand {
    padding-inline: 18px;
  }

  .hero__photo-card--wide {
    padding: 12px;
    border-radius: 28px;
  }

  .hero__photo-card--wide::before {
    border-radius: 22px;
  }

  .hero__photo {
    border-radius: 20px;
  }

  .hero__intro {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 8px;
  }

  .hero__intro-right .support-project-link {
    display: none;
  }

  .support-project-link--under-logo {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .hero__intro-photo {
    justify-content: center;
  }

  .hero__intro-img {
    width: min(100%, 320px);
    height: auto;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero__intro-text {
    border-radius: 24px;
    text-align: center;
  }

  .hero__logo-wrap {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero__logo-badge {
    width: clamp(240px, 62vw, 380px);
    padding: 14px;
  }

  .mission-frame,
  .story-card,
  .cta-card,
  .materials-showcase {
    border-radius: 24px;
  }

  .story-card__lead,
  .story-card__text,
  .benefits li,
  .cta-card p {
    font-size: 17px;
    line-height: 1.72;
  }

  .story-card__text {
    text-align: left;
    text-align-last: auto;
    hyphens: none;
  }

  .materials-showcase h2 span {
    display: block;
    margin-top: 16px;
  }

  .materials-category {
    min-height: 118px;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    text-align: left;
  }

  .materials-category__thumb {
    width: 78px;
    border-width: 4px;
  }

  .materials-category__text span {
    font-size: 24px;
  }

  .materials-category__text strong {
    font-size: 24px;
  }
}
