/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;
  --red-950: #450a0a;
  --brand: #cc0000;
  --brand-dark: #a00000;
  --brand-light: #e63939;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);

  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  gap: 8px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header__logo-icon svg {
  width: 40px;
  height: 40px;
}

.header__logo-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.header__logo-subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.header__nav-link:hover {
  color: var(--gray-900);
  background: var(--gray-50);
}

.header__nav-link--cta {
  background: var(--brand);
  color: #fff !important;
  margin-left: 8px;
  padding: 8px 20px;
}

.header__nav-link--cta:hover {
  background: var(--brand-dark) !important;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--gray-950) 0%, var(--red-950) 50%, var(--brand-dark) 100%);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(204, 0, 0, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(204, 0, 0, 0.1) 0%, transparent 50%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(204, 0, 0, 0.2);
  border: 1px solid rgba(204, 0, 0, 0.3);
  border-radius: 100px;
  color: var(--red-200);
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== SECTION HEADER ===== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.section-header__label {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-header__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  transition: color var(--transition);
  white-space: nowrap;
}

.section-header__link:hover {
  color: var(--brand-dark);
}

/* ===== NEWS ===== */
.news {
  padding: 100px 0;
  background: var(--gray-50);
}

.news__featured {
  margin-bottom: 32px;
}

.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
}

.news-card--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.news-card__image {
  background: linear-gradient(135deg, var(--red-900), var(--gray-900));
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card--featured .news-card__image {
  min-height: 320px;
}

.news-card__image-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.news-card__image-placeholder svg {
  width: 48px;
  height: 48px;
}

.news-card--featured .news-card__image-placeholder svg {
  width: 64px;
  height: 64px;
}

.news-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.news-card--featured .news-card__body {
  padding: 40px;
  justify-content: center;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-card__date {
  font-size: 0.813rem;
  color: var(--gray-500);
  font-weight: 500;
}

.news-card__tag {
  font-size: 0.688rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--red-50);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.news-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.news-card--featured .news-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 16px;
}

.news-card__excerpt {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card--featured .news-card__excerpt {
  -webkit-line-clamp: 4;
  font-size: 0.938rem;
}

.news-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  transition: color var(--transition);
}

.news-card__link:hover {
  color: var(--brand-dark);
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== INFO SECTION ===== */
.info {
  padding: 100px 0;
  background: #fff;
}

.info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.info-card:hover {
  border-color: var(--red-200);
  background: var(--red-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.info-card__icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.info-card__title {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.info-card__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.info-card__link {
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--brand);
  transition: color var(--transition);
}

.info-card__link:hover {
  color: var(--brand-dark);
}

/* ===== DOCUMENTS SECTION ===== */
.documents {
  padding: 100px 0;
  background: var(--gray-50);
}

.documents__banner {
  position: relative;
  background: linear-gradient(135deg, var(--gray-900), var(--red-950));
  border-radius: var(--radius-xl);
  padding: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.documents__banner-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.documents__banner-issue {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 16px;
}

.documents__banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.documents__banner-text {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 28px;
}

.documents__banner-decoration {
  position: absolute;
  right: -20px;
  bottom: -20px;
  opacity: 0.5;
}

.documents__banner-decoration svg {
  width: 200px;
  height: 200px;
}

/* ===== MEMORIAL ===== */
.memorial {
  padding: 60px 0;
  background: #fff;
}

.memorial__card {
  display: flex;
  gap: 32px;
  padding: 40px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gray-400);
  align-items: flex-start;
}

.memorial__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-200);
  border-radius: var(--radius);
}

.memorial__icon svg {
  width: 24px;
  height: 24px;
  color: var(--gray-600);
}

.memorial__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.memorial__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.4;
}

.memorial__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.memorial__link {
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: color var(--transition);
}

.memorial__link:hover {
  color: var(--gray-700);
}

/* ===== LEADERSHIP ===== */
.leadership {
  padding: 100px 0;
  background: var(--gray-50);
}

.leadership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leadership__card {
  padding: 40px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
}

.leadership__card:hover {
  border-color: var(--red-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.leadership__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--red-100), var(--red-200));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leadership__avatar svg {
  width: 36px;
  height: 36px;
  color: var(--brand);
}

.leadership__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.leadership__role {
  font-size: 0.813rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== JOIN CTA ===== */
.join {
  padding: 100px 0;
  background: #fff;
}

.join__inner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 60%, var(--red-950) 100%);
  border-radius: var(--radius-xl);
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.join__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.join__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.join__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 28px;
}

.join__benefits {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.join__benefits li {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 24px;
  position: relative;
}

.join__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.join__decoration {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.join__decoration-star svg {
  width: 240px;
  height: 240px;
}

.join .btn--primary {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

.join .btn--primary:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===== CONTACTS ===== */
.contacts {
  padding: 100px 0;
  background: var(--gray-50);
}

.contacts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contacts__card {
  padding: 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.contacts__card:hover {
  border-color: var(--red-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contacts__card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-50);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.contacts__card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
}

.contacts__card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contacts__card-text {
  font-size: 0.938rem;
  color: var(--gray-800);
  line-height: 1.5;
}

.contacts__card-text a {
  color: var(--gray-800);
  transition: color var(--transition);
}

.contacts__card-text a:hover {
  color: var(--brand);
}

.contacts__links {
  padding: 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.contacts__links-title {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.contacts__links-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contacts__ext-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}

.contacts__ext-link:hover {
  background: var(--red-50);
  color: var(--brand);
}

.contacts__ext-link svg {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: color var(--transition);
}

.contacts__ext-link:hover svg {
  color: var(--brand);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-950);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand .header__logo {
  margin-bottom: 20px;
}

.footer__brand .header__logo-title {
  color: #fff;
}

.footer__brand .header__logo-subtitle {
  color: rgba(255, 255, 255, 0.4);
}

.footer__description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 320px;
}

.footer__nav-title {
  font-size: 0.813rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__nav-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__nav-link:hover {
  color: #fff;
}

.footer__bottom {
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__badge,
.hero__title,
.hero__subtitle,
.hero__actions,
.hero__stats {
  animation: fadeInUp 0.8s ease forwards;
}

.hero__title { animation-delay: 0.1s; }
.hero__subtitle { animation-delay: 0.2s; }
.hero__actions { animation-delay: 0.3s; }
.hero__stats { animation-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .news-card--featured {
    grid-template-columns: 1fr;
  }

  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .documents__banner {
    padding: 40px;
  }

  .join__inner {
    padding: 60px;
  }

  .join__decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav-link {
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius);
  }

  .header__nav-link--cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    padding: 14px 20px;
  }

  .header__burger {
    display: flex;
  }

  .hero {
    padding: 140px 0 80px;
    min-height: auto;
  }

  .hero__actions {
    margin-bottom: 60px;
  }

  .hero__stats {
    gap: 32px;
  }

  .news__grid {
    grid-template-columns: 1fr;
  }

  .info__grid {
    grid-template-columns: 1fr;
  }

  .leadership__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contacts__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .documents__banner {
    padding: 32px;
  }

  .documents__banner-title {
    font-size: 1.375rem;
  }

  .join__inner {
    padding: 40px 32px;
  }

  .memorial__card {
    flex-direction: column;
    gap: 20px;
    padding: 28px;
  }

  .section-header {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .news,
  .info,
  .documents,
  .leadership,
  .join,
  .contacts {
    padding: 60px 0;
  }

  .news-card__body {
    padding: 20px;
  }

  .info-card {
    padding: 24px;
  }

  .contacts__links {
    padding: 24px;
  }
}
