:root {
  --purple: #2D1B69;
  --purple-deep: #0D0520;
  --orange: #FF6B35;
  --lime: #B4D335;
  --yellow: #FFD700;
  --pink: #E91E8A;
  --blue: #2B7ECF;
  --cream: #F5F0E8;
  --light: #f9f8f6;
  --text: #333;
  --text-light: #777;
  --border: #e8e5e0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ═══ HEADER ═══ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media (min-width: 1101px) {
  .logo { left: 48px; }
}
.logo-icon { flex-shrink: 0; max-height: 48px; width: auto; }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a {
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-light);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--purple); }

.nav-toggle { display: none; flex-direction: column; gap: 4px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--purple); border-radius: 2px; transition: 0.3s; }

/* ═══ HERO — В СТИЛЕ ТВОИХ АФИШ ═══ */
.hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 640px;
  overflow: hidden;
  background: linear-gradient(150deg, #FF6B35 0%, #ff7a4a 45%, #FF6B35 100%);
}

/* Клякса лаймовая — как на постере «Мечты не стареют» */
.hero-klyaksa-main {
  position: absolute;
  width: 60%;
  height: 70%;
  top: -10%; right: -10%;
  background: var(--lime);
  opacity: 0.5;
  border-radius: 40% 60% 55% 45% / 50% 35% 65% 50%;
  z-index: 1;
  pointer-events: none;
  animation: heroBlob 10s ease-in-out infinite alternate;
}

/* Клякса розовая — яркий акцент справа */
.hero-klyaksa-pink {
  position: absolute;
  width: 40%;
  height: 35%;
  bottom: 15%; right: 0%;
  background: var(--pink);
  opacity: 0.6;
  border-radius: 55% 45% 40% 60% / 40% 55% 45% 60%;
  z-index: 1;
  pointer-events: none;
  animation: heroBlob2 12s ease-in-out infinite alternate;
}

/* Клякса фиолетовая — яркая, поверх лаймовой */
.hero-klyaksa-purple {
  position: absolute;
  width: 25%;
  height: 30%;
  top: 8%; left: 35%;
  background: #8B5CF6;
  opacity: 0.5;
  border-radius: 45% 55% 55% 45% / 55% 40% 60% 45%;
  z-index: 2;
  pointer-events: none;
  animation: heroBlob3 14s ease-in-out infinite alternate;
}

@keyframes heroBlob {
  0% { border-radius: 40% 60% 55% 45% / 50% 35% 65% 50%; transform: scale(1) rotate(0deg); }
  100% { border-radius: 50% 50% 40% 60% / 45% 55% 45% 55%; transform: scale(1.05) rotate(3deg); }
}
@keyframes heroBlob2 {
  0% { border-radius: 55% 45% 40% 60% / 40% 55% 45% 60%; transform: scale(1); }
  100% { border-radius: 45% 55% 55% 45% / 55% 40% 60% 45%; transform: scale(1.08); }
}
@keyframes heroBlob3 {
  0% { border-radius: 45% 55% 55% 45% / 55% 40% 60% 45%; transform: scale(1) rotate(0deg); }
  100% { border-radius: 50% 50% 45% 55% / 45% 55% 45% 55%; transform: scale(1.1) rotate(4deg); }
}

/* Зигзаг — как на афише наТВОРИЛИ! */
.hero-zigzag {
  position: absolute;
  width: 60px;
  height: 55%;
  top: 10%; right: 0;
  background: repeating-linear-gradient(
    -35deg,
    transparent, transparent 6px,
    rgba(255,255,255,0.15) 6px, rgba(255,255,255,0.15) 8px
  );
  z-index: 2;
  pointer-events: none;
}

/* Зигзаг второй — слева, как на афише Ча-Ча-Чатверг */
.hero-zigzag-left {
  position: absolute;
  width: 40px;
  height: 35%;
  bottom: 15%; left: 0;
  background: repeating-linear-gradient(
    35deg,
    transparent, transparent 5px,
    rgba(255,215,0,0.2) 5px, rgba(255,215,0,0.2) 7px
  );
  z-index: 2;
  pointer-events: none;
}

/* Пятилучевая звезда-цветок — как в логотипе и на постере */
.hero-starflower {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 12%; left: 12%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
  animation: starPulse 4s ease-in-out infinite alternate;
}

/* Второй цветочек — справа */
.hero-starflower-right {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 25%; right: 10%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  animation: starPulse 5s ease-in-out infinite alternate;
}

@keyframes starPulse {
  0% { transform: scale(0.95) rotate(0deg); opacity: 0.4; }
  100% { transform: scale(1.1) rotate(8deg); opacity: 0.6; }
}

/* Пятилепестковый цветочек из логотипа ПТА — левый нижний угол */
.hero-flower-pta {
  position: absolute;
  width: auto;
  height: 683px;
  bottom: -22%;
  left: 0%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.75;
  animation: flowerFloat 8s ease-in-out infinite alternate;
}

@keyframes flowerFloat {
  0% { transform: translateY(0) rotate(-3deg) scale(1); }
  33% { transform: translateY(-18px) rotate(3deg) scale(1.05); }
  66% { transform: translateY(-6px) rotate(-2deg) scale(0.97); }
  100% { transform: translateY(6px) rotate(2deg) scale(1.03); }
}

/* Шестилучевая звезда (doodle) — как на постере, рядом с карандашами */
.hero-star-doodle {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 40%; right: 8%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.35;
}

/* Изогнутая doodle-линия — как на афише наТВОРИЛИ! */
.hero-squiggle {
  position: absolute;
  width: 220px;
  height: 40px;
  bottom: 35%; right: 15%;
  border-bottom: 2px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  border-left: 2px solid rgba(255,255,255,0.18);
  transform: rotate(-20deg);
  z-index: 2;
  pointer-events: none;
}

/* Вторая doodle-линия */
.hero-squiggle-2 {
  position: absolute;
  width: 150px;
  height: 30px;
  top: 25%; left: 30%;
  border-top: 2px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  border-right: 2px solid rgba(255,255,255,0.12);
  transform: rotate(30deg);
  z-index: 2;
  pointer-events: none;
}

/* Точки (поп-арт горошек) — как на афише наТВОРИЛИ! */
.hero-polka {
  position: absolute;
  width: 140px;
  height: 140px;
  bottom: 12%; right: 10%;
  background: radial-gradient(circle, rgba(255,215,0,0.25) 3px, transparent 3px);
  background-size: 18px 18px;
  z-index: 2;
  pointer-events: none;
}

/* Второй горошек */
.hero-polka-2 {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 18%; right: 22%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 2.5px, transparent 2.5px);
  background-size: 14px 14px;
  z-index: 2;
  pointer-events: none;
}

/* Контент */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 120px 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Заголовок на кляксе-форме, а не на прямоугольнике! */
.hero-title-wrap {
  display: inline-block;
  margin-bottom: 16px;
  align-self: flex-start;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  line-height: 1.05;
  color: var(--purple-deep);
  margin: 0;
  padding: 16px 40px 18px 38px;
  background: var(--lime);
  display: inline-block;
  transform: rotate(-1.8deg);
  border-radius: 24px 40px 18px 36px;
  box-shadow: 10px 10px 0 rgba(0,0,0,0.06);
}
.hero-title .hi { display: block; }

/* Подзаголовок */
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #fff;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.5;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Слоган в карточке проекта */
.card-slogan {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--orange);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.card-img { border-radius: 0; position: relative; }
.card-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; transition: transform 0.5s ease; border-radius: 0; display: block; }
.card:hover .card-img img { transform: scale(1.04); }

/* Логотип Серебряного источника в заголовке */
.card-serebryany-logo {
  display: inline-block;
  height: 1.2em;
  width: auto;
  vertical-align: middle;
  margin-left: 6px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Кнопки — БЕЗ острых углов, органичные */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  border-radius: 16px 28px 12px 24px;
  border: none;
}
.btn:hover { transform: translateY(-2px) rotate(-0.5deg); }

.btn-primary {
  background: var(--yellow);
  color: #222;
  box-shadow: 0 4px 14px rgba(255,215,0,0.3);
}
.btn-primary:hover { background: #ffe44d; }

.btn-secondary {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* Текстовые направления */
.hero-directions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.dir-group {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.dir-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.dir-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.hero-direction {
  font-weight: 600;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.hero-direction:hover { color: white; border-bottom-color: rgba(255,255,255,0.6); }
.dir-dot {
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ═══ SECTION COMMON ═══ */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-dark {
  background: var(--purple);
  color: white;
}
.section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--purple);
}
.section-dark h2 { color: white; }

.section-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
}

/* ═══ SECTION HEADINGS ═══ */
.section-head-blob {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.section-head-blob::before {
  content: '';
  position: absolute;
  inset: -200px -250px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(80px);
  opacity: 0.6;
  border-radius: 45% 55% 55% 45% / 50% 40% 60% 50%;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 5%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 5%, transparent 80%);
}
.section-heading-img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0;
  border-radius: 45% 55% 55% 45% / 50% 40% 60% 50%;
  position: relative;
  z-index: 1;
  outline: 2px dashed rgba(45,27,105,0.45);
  outline-offset: 6px;
}

.section-head-blob::after {
  content: '';
  position: absolute;
  inset: -55px;
  border: 80px solid rgba(255,255,255,0.5);
  border-radius: 45% 55% 55% 45% / 50% 40% 60% 50%;
  filter: blur(55px);
  box-shadow: 0 0 100px rgba(255,255,255,0.3);
  z-index: 2;
  pointer-events: none;
}

.section-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 28px;
}

/* ═══ ABOUT ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text .lead {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--purple);
  margin-bottom: 18px;
  line-height: 1.55;
}
.about-text p { margin-bottom: 14px; color: #555; line-height: 1.85; font-size: 1rem; }
.about-image { overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* Статистика — КРУГЛЫЕ blob-формы вместо прямоугольников */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.stat {
  text-align: center;
  padding: 28px 16px;
  border-radius: 50% 40% 60% 45% / 45% 55% 45% 55%;
}
.stat:nth-child(1) { background: rgba(180,211,53,0.12); }
.stat:nth-child(2) { background: rgba(255,107,53,0.08); }
.stat:nth-child(3) { background: rgba(233,30,138,0.08); }
.stat:nth-child(4) { background: rgba(43,126,207,0.08); }

.stat span { display: block; font-weight: 900; font-size: 2.4rem; color: var(--purple); margin-bottom: 6px; }
.stat p { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); }

/* ═══ CARDS — изящные, одной высоты ═══ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.card {
  background: white;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.04); }

.card-body { padding: 32px 32px 36px; flex: 1; display: flex; flex-direction: column; }

/* Тег без прямоугольника — просто текст */
.card-tag {
  display: inline-block;
  padding: 0 0 4px 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 6px;
  border-bottom: 2px dotted var(--orange);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--purple);
  line-height: 1.3;
}
.card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; flex: 1; }
.card-tag {
  display: inline-block;
  padding: 0 0 4px 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 6px;
  border-bottom: 2px dotted var(--orange);
}
.card-slogan {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--orange);
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* ═══ EVENTS ═══ */
.event-cards { gap: 24px; }
.event-card {
  background: white;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.event-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.04); }
.event-card .card-body { padding: 32px 32px 36px; flex: 1; display: flex; flex-direction: column; }
.event-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--purple);
  line-height: 1.3;
}
.event-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; flex: 1; }
.event-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
}

/* CTA-box — не прямоугольник, а клякса */
.cta-box {
  text-align: center;
  margin-top: 44px;
  padding: 28px 36px;
  background: rgba(255,215,0,0.1);
  border-radius: 50% 40% 60% 45% / 55% 50% 50% 45%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-box p { font-size: 1rem; color: var(--purple); }
.cta-link {
  font-weight: 700;
  color: var(--orange) !important;
  border-bottom: 2px dotted var(--orange);
}
.cta-link:hover { border-bottom-style: solid; }

/* ═══ GALLERY ═══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid a {
  display: block;
  text-decoration: none;
  color: inherit;
  line-height: 0;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s, opacity 0.3s;
  cursor: pointer;
}
.gallery-grid a:hover img { transform: scale(1.03); opacity: 0.9; }

/* ═══ LIGHTBOX ═══ */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* ═══ DOCUMENTS — БЕЗ прямоугольных рамок ═══ */
.docs-list { max-width: 650px; margin: 0 auto; }
.doc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  margin-bottom: 10px;
  background: var(--light);
  border-radius: 50% 40% 55% 45% / 45% 55% 45% 55%;
  transition: background 0.2s, transform 0.2s;
}
.doc-item:hover { background: rgba(180,211,53,0.08); transform: translateX(4px); }
.doc-icon {
  width: 36px; height: 36px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border-radius: 50%;
}
.doc-info { flex: 1; }
.doc-name { display: block; font-weight: 600; font-size: 0.95rem; color: var(--purple); }
.doc-meta { font-size: 0.75rem; color: #aaa; }
.doc-btn {
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
  background: white;
  border-radius: 40% 60% 50% 50% / 50% 45% 55% 50%;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: none;
}
.doc-btn:hover { background: var(--purple); color: white; transform: scale(1.05); }

/* ═══ MERCH ═══ */
.merch-intro { text-align: center; font-size: 1rem; color: var(--text-light); margin-bottom: 36px; }
.merch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 700px; margin: 0 auto; }
.merch-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 50% 40% 60% 45% / 45% 55% 45% 55%;
  background: white;
  transition: transform 0.3s, box-shadow 0.3s;
}
.merch-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.merch-icon {
  width: 100px; height: 100px;
  margin: 0 auto 16px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 40% 60% 50% / 50% 55% 45% 50%;
}
.merch-name { font-weight: 600; font-size: 0.9rem; color: var(--purple); }
.merch-note { text-align: center; font-size: 0.8rem; color: #aaa; margin-top: 24px; }

/* ═══ DONATE ═══ */
.donate-box {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}
.donate-text { margin-bottom: 28px; }
.donate-text p { font-size: 1rem; color: #555; line-height: 1.7; }
.donate-btn {
  display: inline-block;
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--yellow);
  color: #222;
  border: none;
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(255,215,0,0.3);
}
.donate-btn:hover { transform: translateY(-3px) rotate(-0.5deg); box-shadow: 0 8px 25px rgba(255,215,0,0.4); }
.donate-hint { font-size: 0.8rem; color: #aaa; margin-top: 10px; }

/* Реквизиты — без прямоугольных рамок */
.donate-reqs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.donate-req {
  padding: 20px;
  background: var(--light);
  border-radius: 45% 55% 55% 45% / 50% 45% 55% 50%;
}
.donate-req-label { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: #aaa; margin-bottom: 4px; }
.donate-req-value { font-weight: 600; font-size: 0.9rem; color: var(--purple); }

/* ═══ CONTACT ═══ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 16px; }
.contact-info p { margin-bottom: 6px; opacity: 0.85; font-size: 0.95rem; }
.contact-social { display: flex; gap: 16px; margin: 16px 0; }
.contact-social a {
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--yellow) !important;
  padding: 6px 16px;
  border: 1.5px solid rgba(255,215,0,0.3);
  border-radius: 0;
  transition: background 0.2s;
}
.contact-social a:hover { background: rgba(255,215,0,0.1); }
.contact-slogan { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--orange); margin-top: 16px; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea {
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: white;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--yellow); }
.contact-form button { align-self: flex-start; }

.btn-solid {
  display: inline-block;
  padding: 14px 34px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border: none;
  background: var(--yellow);
  color: #222;
  border-radius: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,215,0,0.3); }

/* ═══ FOOTER ═══ */
.footer { background: var(--purple-deep); color: #888; padding: 40px 0 30px; text-align: center; }
.footer-inner { display: flex; flex-direction: column; gap: 8px; }
.footer p { font-size: 0.85rem; }
.footer-designer { font-size: 0.8rem; margin-top: 8px; color: var(--lime); }
.footer-designer strong { color: white; font-weight: 600; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .nav { gap: 14px; }
  .nav a { font-size: 0.68rem; letter-spacing: 0.8px; }
}

@media (max-width: 900px) {
  .nav { gap: 6px; }
  .nav a { font-size: 0.6rem; letter-spacing: 0.5px; }

  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .section-head { margin-bottom: 36px; }
}

@media (max-width: 768px) {
  .header { padding: 10px 16px; }
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 16px 24px; gap: 10px; border-bottom: 1px solid var(--border); z-index: 100; }
  .nav.nav-open { display: flex; }
  .nav-toggle { display: flex; }
  .logo-icon { max-height: 38px; }
}

@media (max-width: 600px) {

  .hero { height: 80vh; min-height: 500px; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); padding: 12px 24px 14px 22px; }
  .hero-sub { font-size: 1rem; margin-bottom: 28px; }
  .hero-content { padding: 0 24px; }
  .hero-actions { gap: 10px; margin-bottom: 28px; }
  .btn { padding: 14px 28px; font-size: 0.8rem; }

  .hero-starflower { width: 50px; height: 50px; top: 10%; left: 6%; }
  .hero-star-doodle { width: 40px; height: 40px; top: 35%; }
  .hero-squiggle { width: 120px; height: 25px; bottom: 30%; }
  .hero-squiggle-2 { display: none; }
  .hero-polka { width: 80px; height: 80px; }
  .hero-polka-2 { display: none; }
  .hero-zigzag { width: 30px; }
  .hero-zigzag-left { width: 25px; }
  .hero-flower-pta { height: 340px; bottom: -15%; left: -5%; animation: flowerFloat 6s ease-in-out infinite alternate; }

  .section { padding: 50px 0; }
  .section-head { margin-bottom: 28px; }

  .cards { grid-template-columns: 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .merch-grid { grid-template-columns: 1fr; max-width: 280px; }
  .donate-reqs { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 24px 12px; }
  .stat span { font-size: 1.5rem; }
  .doc-item { flex-wrap: wrap; gap: 10px; }
}
