/* ===========================
   CSS VARIABLES & RESET
   =========================== */
:root {
  --clr-bg: #f5f3ef;
  --clr-bg-alt: #eceae4;
  --clr-dark: #1a1a1a;
  --clr-dark-2: #2d2d2d;
  --clr-accent: #e05a2b;
  --clr-accent-2: #f0a500;
  --clr-blue: #2b7be0;
  --clr-light: #ffffff;
  --clr-muted: #888;
  --clr-border: rgba(0,0,0,0.10);
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 70px rgba(0,0,0,0.14);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-dark);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY HELPERS
   =========================== */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(224,90,43,0.10);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--clr-dark);
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--clr-accent);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--clr-muted);
  max-width: 600px;
  margin-bottom: 56px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 100px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--clr-accent);
  color: #fff;
  box-shadow: 0 8px 30px rgba(224,90,43,0.40);
}
.btn--primary:hover {
  background: #c94d20;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(224,90,43,0.50);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-dark);
  border-color: var(--clr-border);
}
.btn--ghost:hover {
  border-color: var(--clr-dark);
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--clr-dark);
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.20);
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1e1a16;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(240,165,0,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(224,90,43,0.20) 0%, transparent 60%),
    linear-gradient(145deg, #1e1a16 0%, #2a2318 50%, #1a1510 100%);
}

/* Subtle grain overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
}

.hero__photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.hero__photo {
  width: 320px;
  height: 420px;
  border-radius: 24px 24px 80px 24px;
  overflow: hidden;
  background: #2e2820;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.50);
}

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

.hero__photo-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  background: linear-gradient(135deg, #3a3020, #2a2015);
}

.hero__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(224,90,43,0.50);
}

.hero__text {
  color: #fff;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--clr-accent-2);
  margin-bottom: 18px;
  opacity: 0.9;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 14px;
}

.hero__title span {
  color: var(--clr-accent-2);
  display: block;
}

.hero__diagnosis {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__goal {
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__goal-bar {
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}

.hero__goal-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-2));
  border-radius: 100px;
  transition: width 1s ease;
}

.hero__goal-numbers {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
}

.hero__goal-numbers strong {
  color: #fff;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  animation: scrollBounce 1.4s ease-in-out 5;
  will-change: opacity, transform;
}
.hero__scroll span:nth-child(2) { animation-delay: 0.2s; }
.hero__scroll span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollBounce {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.4); }
}

/* ===========================
   STORY
   =========================== */
.story {
  padding: 120px 0;
  background: var(--clr-light);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}

.story__text p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}

.story__text p strong {
  color: var(--clr-dark);
  font-weight: 700;
}

.story__photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--clr-bg-alt);
  aspect-ratio: 4/3;
  margin-bottom: 24px;
  position: relative;
}

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

.story__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--clr-muted);
}

.story__photo-placeholder svg { width: 48px; height: 48px; }
.story__photo-placeholder span { font-size: 0.9rem; }

.story__quote {
  background: var(--clr-bg);
  border-left: 4px solid var(--clr-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  position: relative;
}

.story__quote-icon {
  width: 30px;
  height: 22px;
  color: var(--clr-accent);
  opacity: 0.3;
  margin-bottom: 12px;
}

.story__quote p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-dark);
  font-style: italic;
  margin-bottom: 10px;
}

.story__quote cite {
  font-size: 0.85rem;
  color: var(--clr-muted);
  font-style: normal;
  font-weight: 600;
}

/* ===========================
   DISEASE
   =========================== */
.disease {
  padding: 120px 0;
  background: var(--clr-bg-alt);
}

.disease__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.disease__card {
  background: var(--clr-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.disease__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.disease__card-icon {
  width: 52px;
  height: 52px;
  background: rgba(224,90,43,0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.disease__card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--clr-accent);
}

.disease__card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.disease__card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ===========================
   VIDEO
   =========================== */
.video-section {
  padding: 120px 0;
  background: var(--clr-light);
}

.video-wrap {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--clr-dark);
  box-shadow: var(--shadow-lg);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
  .video-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px; background: #111;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body); font-size: 1rem;
  }
  .video-placeholder[onclick] { cursor: pointer; }
  .video-placeholder svg { transition: transform 0.2s; }
  .video-placeholder[onclick]:hover svg { transform: scale(1.1); }

/* ===========================
   GALLERY
   =========================== */
.gallery-section {
  padding: 120px 0;
  background: var(--clr-bg);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}

.gallery__item--big {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--clr-bg-alt);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery__item--big {
  aspect-ratio: 16/9;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img { transform: scale(1.05); }

.gallery__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--clr-muted);
  z-index: 0;
}

.gallery__placeholder svg { width: 40px; height: 40px; }
.gallery__placeholder span { font-size: 0.85rem; }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.gallery__overlay svg { width: 44px; height: 44px; }

.gallery__item:hover .gallery__overlay {
  background: rgba(0,0,0,0.40);
  opacity: 1;
}

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox__inner {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__inner img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #fff;
  font-size: 1.6rem;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 2;
}
.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  opacity: 0.6;
  padding: 20px;
  transition: opacity 0.2s;
  z-index: 2;
}
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }

/* ===========================
   DOCUMENTS
   =========================== */
.docs-section {
  padding: 120px 0;
  background: var(--clr-light);
}

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

.doc-card {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.doc-card:hover {
  border-color: var(--clr-accent);
  box-shadow: 0 8px 40px rgba(224,90,43,0.12);
  transform: translateY(-4px);
}

.doc-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(224,90,43,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--clr-accent);
}

.doc-card__body h4 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.doc-card__body p {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

.doc-card__action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-top: auto;
}

.doc-card__action svg {
  width: 16px;
  height: 16px;
}

/* PDF MODAL */
.pdf-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.pdf-modal.active { display: flex; }

.pdf-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.pdf-modal__box {
  position: relative;
  width: 90vw;
  max-width: 900px;
  height: 85vh;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.pdf-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.4rem;
  color: var(--clr-dark);
  z-index: 2;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.pdf-modal__box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===========================
   DONATE
   =========================== */
.donate {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.donate__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1a16 0%, #2e2318 40%, #1a1208 100%);
}

.donate__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(240,165,0,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(224,90,43,0.18) 0%, transparent 60%);
}

.donate .container { position: relative; z-index: 1; }

.donate__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.donate__card {
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.donate__card--card {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.14);
}

.donate__card--mono {
  background: linear-gradient(135deg, #00b2e3 0%, #0090c0 100%);
  box-shadow: 0 20px 60px rgba(0,178,227,0.30);
}

.donate__card--iban {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.14);
}

.donate__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.donate__card-header svg {
  width: 24px;
  height: 24px;
  color: rgba(255,255,255,0.80);
  flex-shrink: 0;
}

.donate__card-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.donate__card-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
}
.donate__card--mono .btn {
  padding: 16px 20px;
}

.donate__card-number {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.donate__card-number:hover { background: rgba(255,255,255,0.14); }

#cardNumberText {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-accent-2);
  flex-shrink: 0;
}

.copy-btn svg { width: 16px; height: 16px; }

.donate__card-owner {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
}

.donate__card-owner strong { color: rgba(255,255,255,0.80); }

/* IBAN */
.iban-list { display: flex; flex-direction: column; gap: 10px; }

.iban-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.iban-row span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.iban-row strong {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  word-break: break-all;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: var(--clr-bg-alt);
  padding: 64px 0;
  text-align: center;
}

.cta-banner__text {
  font-size: 1.15rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.cta-banner__share {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 100px;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.share-btn svg { width: 16px; height: 16px; }

.share-btn--fb { background: #1877f2; }
.share-btn--tg { background: #2aabee; }
.share-btn--wa { background: #25d366; }

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.20);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__nav a:hover { color: #fff; }

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contacts a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__contacts a:hover { color: #fff; }

.footer__bottom {
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.45;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .disease__cards { grid-template-columns: repeat(2, 1fr); }
  .docs__grid { grid-template-columns: 1fr 1fr; }
  .donate__grid { grid-template-columns: 1fr 1fr; }
  .donate__card--iban { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 100px 24px 60px;
  }

  .hero__photo-wrap { justify-self: center; }
  .hero__photo { width: 240px; height: 300px; }
  .hero__desc { margin: 0 auto 32px; }
  .hero__goal { margin: 0 auto 32px; }
  .hero__btns { justify-content: center; }

  .story__grid { grid-template-columns: 1fr; gap: 40px; }
  .disease__cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item--big { grid-column: 1 / -1; }
  .docs__grid { grid-template-columns: 1fr; }
  .donate__grid { grid-template-columns: 1fr; }
  .donate__card--iban { grid-column: auto; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.8rem; }
  .gallery { grid-template-columns: 1fr; }
  .btn { padding: 14px 24px; font-size: 0.72rem; }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__label  { animation: fadeUp 0.6s ease 0.1s both; }
.hero__title  { animation: fadeUp 0.6s ease 0.2s both; }
.hero__diagnosis { animation: fadeUp 0.6s ease 0.3s both; }
.hero__desc   { animation: fadeUp 0.6s ease 0.4s both; }
.hero__goal   { animation: fadeUp 0.6s ease 0.5s both; }
.hero__btns   { animation: fadeUp 0.6s ease 0.6s both; }
.hero__photo-wrap { animation: fadeUp 0.7s ease 0.15s both; }
/* ===========================
   VIDEO THUMBNAIL PREVIEW
   =========================== */
.video-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #111; cursor: pointer; position: relative;
}
.video-placeholder[onclick] { cursor: pointer; }

.video-placeholder__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}
.video-placeholder:hover .video-placeholder__play {
  transform: translate(-50%, -50%) scale(1.12);
}

/* когда нет видео — текст */
.video-placeholder p {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-top: 16px;
}