/* «Щити Десанту» — статичний лендінг. Палітра: бордо на світлому. */
:root{
  --bordo:#6e1423;
  --bordo-dark:#5a0f1c;
  --ink:#251b1c;
  --muted:#726263;
  --cream:#fbf8f5;
  --tint:#f1e5e6;
  --line:#ece4e0;
  --white:#fff;
  --light-on-dark:#ebd4d7;
  --tg:#229ed9;
  --radius:16px;
  --shadow:0 12px 32px rgba(110,20,35,.10);
}
*{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent}
html{scroll-behavior:smooth}
body{font:16px/1.6 Manrope,system-ui,sans-serif;color:var(--ink);background:var(--cream)}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3{font-family:Lora,serif;line-height:1.15}
h1{font-size:clamp(30px,5vw,50px)}
.hero-copy h1{font-weight:500} /* легший заголовок героя */
h2{font-size:clamp(26px,4vw,40px)}
h3{font-size:clamp(19px,2.2vw,24px)}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.center{text-align:center}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}
.section{padding:32px 0}
section[id],footer[id]{scroll-margin-top:100px} /* якорі не ховаються під sticky-шапку (88px + запас) */
.eyebrow{display:inline-block;font-size:13px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--bordo);margin-bottom:10px}
.eyebrow.light{color:var(--light-on-dark)}
.light{color:var(--white)}
.section-sub{max-width:560px;margin:10px auto 0;color:var(--muted)}
.accent{color:var(--bordo);font-weight:700}
.muted{color:var(--muted)}

/* Кнопки */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 26px;border-radius:12px;font-weight:700;font-size:15px;border:0;cursor:pointer;transition:transform .15s,box-shadow .15s,background .15s}
.btn:hover{transform:translateY(-1px)}
.btn:focus-visible{outline:3px solid var(--bordo);outline-offset:2px}
.btn-primary{background:var(--bordo);color:var(--white)}
.btn-primary:hover{background:var(--bordo-dark)}
.btn-outline{border:1.5px solid var(--bordo);color:var(--bordo);background:transparent}
.btn-light{background:var(--white);color:var(--bordo)}
.btn-tg{background:var(--tg);color:var(--white)}
.btn-wide{width:100%}

/* Шапка */
.site-header{position:sticky;top:0;z-index:50;background:var(--white);border-bottom:1px solid var(--line)}
.header-inner{display:flex;align-items:center;gap:24px;height:88px}
.brand img{height:68px;width:auto;display:block} /* повний логотип (обрізаний по контуру), крупний; висота шапки не змінюється */
.nav{display:flex;gap:26px;margin-left:auto;align-items:center}
.nav a{font-weight:600;font-size:15px}
.nav a:hover{color:var(--bordo)}
.nav-cta{display:none} /* кнопка «Задонатити» всередині меню — лише на планшеті/телефоні */
.header-cta{padding:11px 22px;position:relative;animation:ctaPulse 2.6s ease-in-out infinite}
.header-cta:hover{animation:none;transform:translateY(-1px) scale(1.04)}
@keyframes ctaPulse{0%{box-shadow:0 0 0 0 rgba(110,20,35,.45)}100%{box-shadow:0 0 0 10px rgba(110,20,35,0)}}
@media(prefers-reduced-motion:reduce){.header-cta{animation:none}}
.burger{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px}
.burger span{width:24px;height:2.5px;background:var(--ink);border-radius:2px;transition:.2s}

/* Hero */
.hero{padding:0}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center;align-content:center;min-height:max(380px,calc(100vh - 274px));min-height:max(380px,calc(100svh - 274px))} /* геро заповнює екран: хедер(89) зверху, цифри(185) знизу */
.pill{display:inline-block;background:var(--tint);color:var(--bordo);font-size:13px;font-weight:700;padding:8px 15px;border-radius:100px;margin-bottom:18px}
.hero-sub{margin:18px 0 26px;font-size:18px;color:var(--muted);max-width:520px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-slider{position:relative;border-radius:20px;overflow:hidden;aspect-ratio:8/7;box-shadow:var(--shadow)}
.hero-slides img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .6s}
.hero-slides img[src*="hero-10"]{object-position:50% 72%} /* піднімаємо фото, щоб було видно руку з лайком */
.hero-slides img.active{opacity:1}
.hero-dots{position:absolute;left:0;right:0;bottom:14px;display:flex;gap:8px;justify-content:center}
.hero-dots button{width:8px;height:8px;border-radius:4px;border:0;background:rgba(255,255,255,.55);cursor:pointer;transition:.25s;padding:0}
.hero-dots button.active{width:22px;background:var(--white)}

/* Цифри */
.stats{background:var(--bordo);color:var(--white);padding:44px 0}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.stat b{font-family:Lora,serif;font-size:clamp(22px,3vw,40px);line-height:1.15;white-space:nowrap;display:block} /* nowrap: реальна сума з пробілами не переносилась і не ламала висоту блоку цифр */
.stat span{font-size:13.5px;color:var(--light-on-dark)}

/* Хто ми */
.about-grid{display:grid;grid-template-columns:1.4fr .8fr;gap:48px;margin-top:26px;align-items:start}
.about-text p{margin-bottom:18px;font-size:17px}
.about-text blockquote{border-left:4px solid var(--bordo);padding:4px 0 4px 18px;color:var(--muted);font-size:17px}
.founder-card{background:var(--white);border-radius:18px;padding:16px;box-shadow:var(--shadow);margin-top:-64px}
.founder-card img{border-radius:12px;aspect-ratio:4/4.4;object-fit:cover;object-position:top}
.founder-card figcaption{padding:14px 6px 6px}
.founder-card b{display:block;font-size:16.5px}
.founder-card span{color:var(--bordo);font-size:14px}
.team{margin-top:44px}
.team-pill{display:inline-block;background:var(--bordo);color:var(--white);font-size:13px;font-weight:700;padding:8px 16px;border-radius:100px;margin-bottom:16px}
.team-slider-wrap{position:relative}
.team-slider{display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding-bottom:6px}
.team-slider::-webkit-scrollbar{display:none}
.team-slider figure{flex:0 0 calc(20% - 13px);min-width:170px;scroll-snap-align:start;background:var(--white);border:1px solid var(--line);border-radius:14px;overflow:hidden}
.team-slider img{aspect-ratio:4/4.6;object-fit:cover;object-position:top;width:100%}
.team-slider figcaption{padding:12px 14px}
.team-slider figcaption b{display:block;font-size:15px}
.team-slider figcaption span{color:var(--muted);font-size:13px}
.team-arrow{display:none;position:absolute;top:42%;transform:translateY(-50%);z-index:2;width:40px;height:40px;border-radius:50%;border:0;background:var(--bordo);color:#fff;font-size:22px;line-height:1;cursor:pointer;box-shadow:var(--shadow);transition:.15s}
.team-arrow:hover{background:var(--bordo-dark)}
.team-arrow.prev{left:-8px}
.team-arrow.next{right:-8px}

/* Задонатити */
.donate{background:var(--bordo);padding:72px 0;text-align:center}
.donate-sub{max-width:620px;margin:14px auto 30px;color:var(--light-on-dark);font-size:17px}
.donate-sub u{text-underline-offset:3px}
.donate-card{display:flex;gap:28px;background:var(--white);border-radius:20px;padding:28px;max-width:720px;margin:0 auto;text-align:left;box-shadow:0 20px 50px rgba(0,0,0,.25)}
.donate-qr{display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center;padding-right:28px;border-right:1px solid var(--line)}
.donate-qr img{border:1px solid var(--line);border-radius:10px}
.donate-qr b{font-size:15px}
.donate-qr span{font-size:12.5px;color:var(--muted)}
.donate-info{flex:1;display:flex;flex-direction:column;gap:13px;justify-content:center}
.donate-label{color:var(--bordo);font-weight:700;font-size:15px;display:flex;align-items:center;justify-content:flex-start;gap:10px}
.donate-logo{height:40px;width:auto;flex:none} /* повна емблема з крилами, поруч із назвою */
.donate-status{font-family:Lora,serif;font-size:26px;font-weight:700}
.iban{display:flex;justify-content:space-between;align-items:center;gap:10px;background:var(--cream);border:1px solid var(--line);border-radius:10px;padding:12px 14px;font:inherit;font-size:13.5px;cursor:pointer;text-align:left}
.iban b{color:var(--bordo);font-size:12.5px;white-space:nowrap}
.iban:hover{border-color:var(--bordo)}
.donate-note{font-size:12.5px;color:var(--muted)}

/* Напрямки */
.dir-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px;margin-top:34px;text-align:left}
.dir-card{background:var(--white);border:1px solid var(--line);border-radius:16px;padding:16px;transition:transform .2s,box-shadow .2s;cursor:pointer;font:inherit;color:inherit;text-align:left;display:block;width:100%}
.dir-energia{object-position:50% 57%} /* показуємо і генератор, і зарядну станцію (фото вертикальне) */
.dir-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.gallery-open{margin-top:26px}
.dir-img{border-radius:10px;overflow:hidden;aspect-ratio:16/11;margin-bottom:14px;background:var(--tint)}
.dir-img img{width:100%;height:100%;object-fit:cover}
.dir-img-empty{display:grid;place-items:center;color:var(--muted);font-size:12px}
.dir-card h3{font-family:Manrope,sans-serif;font-weight:700;font-size:17px;margin-bottom:6px}
.dir-card p{font-size:14px;color:var(--muted)}

/* Підрозділи */
.units{background:var(--bordo);padding:72px 0}
.units-sub{color:var(--light-on-dark);margin-top:8px}
.units-hint{color:var(--light-on-dark);font-size:13.5px;font-weight:600;margin-top:6px}
.units-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:30px;text-align:left}
.unit{position:relative;display:flex;align-items:center;gap:16px;background:var(--white);border-radius:14px;padding:16px 20px;border:0;font:inherit;text-align:left;width:100%}
.unit img{width:54px;height:54px;object-fit:contain}
.unit b{display:block;font-size:15.5px;line-height:1.3}
.unit span{color:var(--muted);font-size:13px}
.unit-btn{cursor:pointer;transition:transform .15s,box-shadow .15s}
.unit-btn:hover{transform:translateY(-3px);box-shadow:0 14px 30px rgba(0,0,0,.25)}
.pod-badge{position:absolute;top:10px;right:12px;font-size:18px;line-height:1;filter:drop-shadow(0 1px 2px rgba(0,0,0,.25))}
.pod-mark{font-style:normal}

/* Звіти */
.year-tabs{display:flex;gap:10px;justify-content:center;margin:26px 0}
.year-tab{padding:11px 24px;border-radius:100px;border:1px solid var(--line);background:transparent;font:inherit;font-weight:700;font-size:15px;color:var(--muted);cursor:pointer;transition:.2s}
.year-tab.active{background:var(--bordo);border-color:var(--bordo);color:var(--white)}
/* Звіти: зліва місяці стовпчиком, справа телеграм-пост */
.reports-layout{display:grid;grid-template-columns:340px 520px;gap:44px;justify-content:center;align-items:start;text-align:left;margin-top:30px}
.reports-col{display:flex;flex-direction:column;gap:16px;margin-top:39px} /* опускаємо колонку звітів на рівень картки Telegram (висота заголовка + відступ) */
.report{background:var(--white);border:1px solid var(--line);border-radius:14px;padding:20px;transition:transform .2s,box-shadow .2s}
.report:hover{transform:translateY(-2px);box-shadow:0 8px 22px rgba(28,18,20,.10)}
.report-top{display:flex;align-items:center;gap:11px}
.report b{font-size:17px}
.report-desc{color:var(--muted);font-size:13.5px;margin:11px 0 13px;line-height:1.45}
.report-sum{display:block;color:var(--muted);font-size:13.5px;margin:9px 0 12px} /* сума зі звіту (з Google Таблиці) */
.chip{display:inline-block;background:var(--tint);color:var(--bordo);font-weight:700;font-size:13px;padding:9px 14px;border-radius:8px}
.reports-empty{max-width:520px;margin:0 auto;color:var(--muted);background:var(--white);border:1px solid var(--line);border-radius:14px;padding:24px}
.reports-empty a{color:var(--bordo);text-decoration:underline}

/* Telegram */
.tg-heading{margin:0 0 16px;text-align:center;font-size:20px}
.tg-block{display:flex;justify-content:center;margin-top:0}
.tg-copy h3{margin:6px 0 10px}
.tg-copy p{color:var(--muted);margin-bottom:18px}
.tg-card{flex:1 1 auto;width:100%;max-width:100%;background:var(--white);border:1px solid var(--line);border-radius:16px;overflow:hidden;box-shadow:var(--shadow)}
.tg-head{display:flex;align-items:center;gap:12px;padding:14px 16px;background:var(--tint)}
.tg-ava{width:52px;height:52px;border-radius:50%;background:var(--tint);display:grid;place-items:center;overflow:hidden;flex:none}
.tg-ava img{width:40px;height:40px;object-fit:contain}
.tg-head b{display:block;font-size:15px;color:var(--ink)}
.tg-head span{font-size:12px;color:var(--muted)}
.tg-head em{margin-left:auto;font-style:normal;background:var(--tg);color:#fff;font-weight:700;font-size:12.5px;padding:8px 14px;border-radius:8px}
.tg-feed{padding:12px 14px;background:var(--cream);min-height:200px;max-height:640px;overflow-y:auto;scrollbar-width:thin} /* стрічка кількох звітів — гортається всередині */
.tg-feed iframe{margin:6px 0 !important}
.tg-feed::-webkit-scrollbar{width:8px}
.tg-feed::-webkit-scrollbar-thumb{background:rgba(110,20,35,.28);border-radius:8px}

/* Подяка благодійникам */
.thanks{background:var(--cream)}
.thanks-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:28px;text-align:left}
.thanks-item{display:flex;align-items:center;gap:12px;background:var(--white);border:1px solid var(--line);border-radius:12px;padding:14px 16px}
/* CTA-картка «долучитись» — такого ж розміру, як усі подяки */
.thanks-cta{border:1.5px dashed var(--bordo);background:var(--tint);color:var(--bordo);text-decoration:none;transition:transform .18s,box-shadow .18s}
.thanks-cta:hover{box-shadow:0 8px 22px rgba(110,20,35,.16);transform:translateY(-2px)} /* без зміни кольору — лише підсвічуємо віджет */
.thanks-cta b{color:inherit}
.thanks-cta span{color:inherit;opacity:.85}
.thanks-ic{width:36px;height:36px;border-radius:50%;background:var(--tint);display:grid;place-items:center;font-size:17px;flex:none}
.heart-ic{width:18px;height:18px;display:block}
.thanks-item b{display:block;font-size:15px;line-height:1.25}
.thanks-item span{color:var(--muted);font-size:13px}
.thanks-note{margin-top:24px;color:var(--muted);font-size:13.5px}
.thanks-note a{color:var(--bordo);text-decoration:underline}
@media(max-width:860px){.thanks-grid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.thanks-grid{grid-template-columns:1fr}}

/* Доєднатись */
.join{padding:72px 0;background:var(--cream)}
.join-card{display:flex;max-width:920px;margin:30px auto 0;border-radius:22px;overflow:hidden;box-shadow:var(--shadow);text-align:left}
.join-photo{flex:1;min-height:380px}
.join-photo img{width:100%;height:100%;object-fit:cover}
.join-form{flex:1;background:var(--bordo);padding:40px;display:flex;flex-direction:column;gap:12px}
.join-form h3{color:var(--white);margin-bottom:6px}
.join-form input{width:100%;padding:14px 16px;border-radius:10px;border:0;font:inherit;font-size:16px;background:var(--white)}
.join-form input:focus-visible{outline:3px solid var(--light-on-dark)}
.form-note{color:var(--light-on-dark);font-size:12.5px;text-align:center}
.hp{display:none!important} /* honeypot проти спам-ботів */
.flag-ua{display:inline-block;width:1.15em;height:auto;vertical-align:-.12em;border-radius:2px;margin-left:.12em;box-shadow:0 0 0 .5px rgba(0,0,0,.12)} /* прапор картинкою — рендериться всюди, на відміну від emoji */

/* Футер */
.footer{background:#1c1214;color:#b9a9ab;font-size:14px}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr 1fr;gap:40px;padding:56px 20px 30px}
.f-brand b{font-family:Lora,serif;color:var(--white);font-size:20px;letter-spacing:.04em}
.f-brand p{margin:12px 0 16px;max-width:300px}
.socials{display:flex;gap:10px}
.socials a{width:38px;height:38px;border-radius:9px;background:rgba(255,255,255,.08);display:grid;place-items:center;font-size:12px;font-weight:700;color:var(--white);transition:.15s}
.socials a:hover{background:var(--bordo)}
.f-col{display:flex;flex-direction:column;gap:9px}
.f-col span{font-size:12px;font-weight:700;letter-spacing:.1em;color:#8d7c7e;text-transform:uppercase;margin-bottom:4px}
.f-col a:hover{color:var(--white)}
.footer-bottom{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;border-top:1px solid rgba(255,255,255,.09);padding:20px;font-size:13px}

/* Модалка підрозділу */
#podyakaModal{margin:auto;border:0;border-radius:16px;padding:0 0 8px;max-width:min(92vw,540px);max-height:88vh;overflow:auto;box-shadow:0 30px 80px rgba(0,0,0,.4)}
#podyakaModal::backdrop{background:rgba(28,18,20,.7)}
.modal-head{display:flex;align-items:center;gap:14px;padding:18px 56px 12px 18px}
.modal-head img{width:56px;height:56px;object-fit:contain}
.modal-head b{display:block;font-size:17px;line-height:1.25}
.modal-head span{color:var(--muted);font-size:13px}
.modal-body{padding:0 18px 14px;display:flex;flex-direction:column;align-items:center;gap:8px}
.modal-label{align-self:center;text-align:center;font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--bordo)}
#modalImg{display:block;width:auto;max-width:100%;max-height:calc(88vh - 130px);border-radius:8px;box-shadow:0 8px 24px rgba(0,0,0,.15);transition:opacity .2s}
.modal-close{position:absolute;top:10px;right:10px;width:36px;height:36px;border-radius:50%;border:0;background:var(--tint);cursor:pointer;font-size:15px;z-index:2}

/* Фотогалерея */
#galleryModal{margin:auto;border:0;border-radius:18px;padding:24px;max-width:min(94vw,960px);max-height:90vh;overflow:auto;box-shadow:0 30px 80px rgba(0,0,0,.45)}
#galleryModal::backdrop{background:rgba(28,18,20,.75)}
.gallery-title{margin:0 0 16px;font-family:Lora,serif;color:var(--bordo);padding-right:40px}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.gallery-grid figure{position:relative;border-radius:14px;overflow:hidden;background:var(--tint);box-shadow:0 6px 18px rgba(28,18,20,.14)}
.gallery-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;transition:transform .5s ease}
.gallery-grid figure:hover img{transform:scale(1.05)}
.gallery-grid figcaption{position:absolute;left:0;right:0;bottom:0;padding:30px 14px 13px;
  background:linear-gradient(to top,rgba(20,10,12,.94) 8%,rgba(20,10,12,.55) 55%,rgba(20,10,12,0));
  color:#fff;font-weight:700;font-size:14px;line-height:1.32;letter-spacing:.01em;
  text-shadow:0 1px 4px rgba(0,0,0,.4)}
@media(max-width:760px){.gallery-grid{grid-template-columns:1fr 1fr}}
@media(max-width:440px){.gallery-grid{grid-template-columns:1fr}}

/* Блок «Приєднуйтесь» — фото команди (колаж) + текст поверх */
.join-visual{flex:1;min-height:380px;position:relative;overflow:hidden}
.join-collage{width:100%;height:100%;object-fit:cover;object-position:50% 38%}
.join-overlay{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;gap:8px;padding:28px;color:#fff;
  background:linear-gradient(180deg,rgba(28,14,17,.15) 0%,rgba(28,14,17,.35) 45%,rgba(28,14,17,.9) 100%)}
.join-overlay b{font-family:Lora,serif;font-size:26px;line-height:1.2}
.join-overlay p{color:#f0e2e3;font-size:14.5px;max-width:340px}

/* Перемикач дизайну */
.theme-switch{position:fixed;right:16px;bottom:16px;z-index:60;padding:12px 18px;border-radius:100px;border:0;background:var(--ink);color:var(--white);font:700 14px Manrope,sans-serif;cursor:pointer;box-shadow:0 10px 30px rgba(0,0,0,.35)}
.theme-switch:hover{background:var(--bordo)}


/* ============ «ДИЗАЙН 2»: інші лише шапка та hero (низ як у Дизайні 1) ============ */
[data-theme="v2"]{--v2-line:#3b2a2e;--v2-text:#f3ecec}
[data-theme="v2"] .site-header{background:#1b1214;border-bottom-color:var(--v2-line)}
[data-theme="v2"] .nav{background:#1b1214}
[data-theme="v2"] .nav a{color:var(--v2-text)}
[data-theme="v2"] .burger span{background:var(--v2-text)}
[data-theme="v2"] .header-inner{height:88px}
[data-theme="v2"] .brand img{filter:brightness(0) invert(1);height:68px;transform:none} /* білий повний логотип */
[data-theme="v2"] .nav a{color:#fff}
[data-theme="v2"] .nav a:hover{color:#f3c4cc}
[data-theme="v2"] .header-cta{border:0} /* без білої рамки */
[data-theme="v2"] .burger span{background:#fff}
[data-theme="v2"] h1{font-family:Onest,Manrope,sans-serif;font-weight:700;text-transform:uppercase;letter-spacing:-.01em}
[data-theme="v2"] .hero{padding:0;position:relative;background:#140d0f}
[data-theme="v2"] .hero-grid{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;position:static;min-height:max(380px,calc(100vh - 274px));min-height:max(380px,calc(100svh - 274px))} /* геро займає екран мінус хедер(89) і цифри(185); vh — запасний варіант для старих браузерів, svh — точний */
[data-theme="v2"] .hero-slider{position:absolute;inset:0;border-radius:0;aspect-ratio:auto;box-shadow:none}
[data-theme="v2"] .hero-slides img{object-position:50% 62%} /* трохи піднімаємо фото, щоб обрізані смайлики на обличчях не потрапляли у верх кадру */
[data-theme="v2"] .hero-slides img[src*="hero-10"]{object-position:50% 80%} /* це фото піднімаємо більше — рука з лайком нижче */
[data-theme="v2"] .hero-slider::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,8,10,.25) 0%,rgba(15,8,10,.55) 55%,rgba(15,8,10,.93) 100%);z-index:1}
[data-theme="v2"] .hero-dots{z-index:2}
[data-theme="v2"] .hero-copy{position:relative;z-index:2;max-width:660px;padding:20px 0}
[data-theme="v2"] .hero-copy h1,[data-theme="v2"] .hero-sub{color:#fff;text-shadow:0 2px 14px rgba(0,0,0,.55)} /* тінь — щоб текст читався і над світлим фото */
[data-theme="v2"] .hero-sub{color:#e8dddd}
[data-theme="v2"] .header-cta{animation:ctaPulseV2 2.6s ease-in-out infinite} /* білий пульс видно на темній шапці */
@keyframes ctaPulseV2{0%{box-shadow:0 0 0 0 rgba(255,255,255,.5)}100%{box-shadow:0 0 0 10px rgba(255,255,255,0)}}
[data-theme="v2"] .header-cta:hover{animation:none} /* на hover пульс зупиняється, як у Дизайні 1 */
@media(prefers-reduced-motion:reduce){[data-theme="v2"] .header-cta{animation:none}} /* після правила пульсу — щоб перекрити його */
[data-theme="v2"] .pill{display:none} /* у Дизайні 2 плашку прибираємо */
[data-theme="v2"] .hero-actions .btn-outline{border-color:#fff;color:#fff}

/* ============ Адаптив ============ */
@media(max-width:1020px){
  .dir-grid{grid-template-columns:repeat(3,1fr)}
  .units-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr;gap:30px}
  .founder-card{max-width:340px;margin-top:0}
  .team-slider figure{flex-basis:calc(33.4% - 11px)}
}
/* Планшет+телефон: меню ховаємо в бургер, «Задонатити» переносимо всередину меню */
@media(max-width:1000px){
  .nav{display:none;position:absolute;top:89px;left:0;right:0;background:var(--white);flex-direction:column;align-items:stretch;padding:16px 20px;gap:14px;border-bottom:1px solid var(--line);box-shadow:0 14px 26px rgba(28,18,20,.12)}
  [data-theme="v2"] .nav{background:#1b1214;border-bottom-color:rgba(255,255,255,.14)}
  .nav.open{display:flex}
  .burger{display:flex;margin-left:auto}
  .header-cta{display:none}
  .nav-cta{display:inline-flex;justify-content:center;margin-top:4px}
}
@media(max-width:760px){
  .section,.donate,.units,.join{padding:40px 0}
  .header-inner{height:68px}
  .brand img{height:50px}
  .hero-sub{font-size:16px}
  .nav{top:69px} /* шапка нижча (68px) → підганяємо позицію меню */
  [data-theme="v2"] .nav{top:69px}
  .hero{padding:40px 0}
  .hero-grid{grid-template-columns:1fr;gap:30px;min-height:auto} /* на мобайлі геро не прив'язуємо до висоти екрана */
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .dir-grid{grid-template-columns:repeat(2,1fr)}
  .units-grid{grid-template-columns:1fr}
  .reports-layout{grid-template-columns:1fr;gap:26px}
  .reports-col{margin-top:0}
  .tg-col{margin-top:6px}
  .donate-card{flex-direction:column;text-align:center;padding:20px}
  .donate-qr{padding:0 0 22px;border-right:0;border-bottom:1px solid var(--line)}
  .tg-block{flex-direction:column}
  .tg-card{flex-basis:auto;width:100%}
  .join-card{flex-direction:column}
  .join-photo,.join-visual{min-height:220px}
  .team-slider figure{flex-basis:calc(50% - 8px)}
  .team-arrow{display:flex;align-items:center;justify-content:center} /* на вузьких екранах є скрол → стрілки потрібні */
  .footer-grid{grid-template-columns:1fr;gap:28px}
  [data-theme="v2"] .hero-grid{min-height:520px}
  [data-theme="v2"] .hero-copy{padding:90px 0 70px}
  [data-theme="v2"] .header-inner{height:68px}
  [data-theme="v2"] .brand img{height:50px}
  [data-theme="v2"] .nav{top:69px}
}
@media(max-width:440px){
  .dir-grid{grid-template-columns:1fr}
  .team-slider figure{flex-basis:calc(100% - 40px)}
  .stat b{white-space:normal} /* на вузькому екрані дозволяємо перенос суми, щоб не було горизонт. прокрутки (геро тут не прив'язане до екрана) */
}
