@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --red: #c8394b;
  --red-hover: #a82d3e;
  --pink: #ef556a;
  --dark-pink: #dc4f61;
  --bg: #ffffff;
  --bg-gray: #f4f4f4;
  --bg-light: #f8f8f8;
  --text: #000000;
  --text-gray: #555555;
  --text-light: #656565;
  --text-muted: #a3a3a3;
  --green: #4caf50;
  --container-padding: 8.125vw;
}

@media screen and (min-width: 768px) {
  :root { --container-padding: 7.8125vw; }
}
@media screen and (min-width: 1920px) {
  :root { --container-padding: calc((100vw - 1600px) / 2); }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  padding: 0 var(--container-padding);
  margin: 0 auto;
}

/* ===================== HEADER ===================== */

.header__logo-img {
  display: block;
  max-height: 208px;
  width: auto;
  height: auto;
}

.footer__logo-img {
  display: block;
  max-height: 176px;
  width: auto;
  height: auto;
}

.header-bar {
  background: #000000;
  width: 100%;
  margin-bottom: 12px;
}

.header-bar .header {
  padding: 6px 0;
  gap: 20px;
  align-items: center;
}

.header-bar .header__logo {
  line-height: 0;
}

.header-bar .header__ewa-btn {
  padding: 8px 20px;
}

.header-bar .header__nav-link {
  color: #ffffff;
}

.header-bar .header__nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.header-bar .header__nav-link.active {
  color: var(--red);
}

.header-bar .mobile-menu-toggle span {
  background: #ffffff;
}

.header {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  transform: rotate(-10deg);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  line-height: 1.2;
}

.header__logo-subtitle {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media screen and (min-width: 1920px) {
  .header__nav { gap: 60px; }
}

.header__nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.header__nav-link:hover { color: var(--text-gray); }
.header__nav-link.active { color: #d2d2d2; }

.header__nav-link .hot-badge {
  position: absolute;
  top: -8px;
  right: -16px;
  font-size: 10px;
  color: var(--pink);
  font-weight: 500;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__login {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.header__ewa-btn {
  background: var(--red);
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.header__ewa-btn:hover { background: var(--red-hover); }

/* ===================== HERO BANNER ===================== */
.hero-banner {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  background: linear-gradient(135deg, #8b2a3a 0%, #c8394b 50%, #a33245 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

.hero-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 60px 40px;
  max-width: 700px;
}

.hero-banner__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-banner__subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-banner__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== BUTTONS ===================== */
.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn--solid {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--solid:hover { background: var(--red-hover); border-color: var(--red-hover); }

.btn--outline {
  background: #fff;
  color: var(--text);
  border-color: #ccc;
}
.btn--outline:hover { border-color: #999; }

.btn--dark {
  background: #333;
  color: #fff;
  border-color: #333;
}
.btn--dark:hover { background: #444; border-color: #444; }

.btn--white {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

.btn--small {
  padding: 10px 22px;
  font-size: 13px;
}

/* ===================== SECTION ===================== */
.section {
  padding: 50px 0;
}

.section__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text);
}

.section__title--red { color: var(--red); }

/* ===================== INITIATIVE CARDS ===================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

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

.card__image-placeholder {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}

.card__heart {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text);
}

.card__title a { text-decoration: none; color: inherit; }
.card__title a:hover { color: var(--dark-pink); }

.card__subtitle {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 8px;
  line-height: 1.4;
}

.card__location {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card__buttons {
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

/* ===================== PROGRESS BAR ===================== */
.progress {
  margin-top: auto;
  padding-top: 12px;
}

.progress__bar {
  width: 100%;
  height: 6px;
  background: #e8e8e8;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress__fill {
  height: 100%;
  background: var(--red);
  border-radius: 50px;
  transition: width 1s ease;
}

.progress__info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-gray);
}

.progress__collected {
  font-weight: 600;
  color: var(--green);
}

/* ===================== AMBASSADOR SECTION ===================== */
.ambassadors {
  padding: 50px 0;
}

.ambassador-tiers {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ambassador-tier {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ambassador-tier__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.ambassador-tier__content { flex: 1; }

.ambassador-tier__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ambassador-tier__desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ===================== QUOTE SECTION ===================== */
.quote-section {
  padding: 60px 0;
  text-align: center;
}

.quote-section__text {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
}

/* ===================== TEAM GRID ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
}

.team-card__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: #999;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}

.team-card__surname {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.team-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.team-card__role {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

.team-card__email a {
  font-size: 12px;
  color: var(--dark-pink);
}

/* ===================== NEWS CARDS ===================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

@media (min-width: 1024px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.news-card:hover { transform: translateY(-4px); }

.news-card__image {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
}

.news-card__image-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.news-card__body { padding: 20px; }

.news-card__date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.news-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.news-card__text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===================== CONTACTS ===================== */
.contacts-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .contacts-section { grid-template-columns: 1fr; }
}

.contact-block {
  margin-bottom: 24px;
}

.contact-block__label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-block__value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.contact-block__value a { color: inherit; }
.contact-block__value a:hover { color: var(--dark-pink); }

/* ===================== REQUISITES TABLE ===================== */
.requisites-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.requisites-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.requisites-table td:first-child {
  font-weight: 600;
  color: var(--text-gray);
  width: 35%;
  white-space: nowrap;
}

.requisites-table td:last-child {
  color: var(--text);
}

/* ===================== MAP ===================== */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
}

/* ===================== DONATE ===================== */
.donate-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 0;
}

.donate-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.donate-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  background: var(--bg-light);
  border-radius: 50px;
  padding: 4px;
}

.donate-tab {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  color: var(--text-gray);
  transition: all 0.2s;
}

.donate-tab.active {
  background: var(--red);
  color: #fff;
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.donate-amount {
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  background: #fff;
  color: var(--text);
  transition: all 0.2s;
  text-align: center;
}

.donate-amount:hover { border-color: var(--red); color: var(--red); }
.donate-amount.active { border-color: var(--red); background: var(--red); color: #fff; }

.donate-summary {
  background: #333;
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
}

.donate-summary strong {
  font-size: 24px;
  display: block;
  margin-top: 6px;
}

.donate-legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  margin-top: 16px;
}

.donate-legal a { color: var(--dark-pink); text-decoration: underline; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-gray);
  padding: 80px 0;
  margin-top: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 200px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

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

.footer__nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.footer__nav-link:hover { color: var(--dark-pink); }

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 14px;
  transition: background 0.2s;
}

.footer__social-icon:hover { background: #d0d0d0; }

.footer__contact-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: none;
}

.footer__contact-link:hover { color: var(--dark-pink); }

.footer__logo {
  width: 241px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
  opacity: 0.3;
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 25000;
  padding: 0 var(--container-padding);
  pointer-events: none;
}

.cookie-banner:not(.hidden) {
  pointer-events: auto;
}

.cookie-banner__inner {
  background: var(--red);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  max-width: 1600px;
  margin: 0 auto;
}

.cookie-banner__title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}

.cookie-banner__text {
  font-weight: 500;
  font-size: 16px;
}

.cookie-banner__btn {
  background: #fff;
  color: var(--text);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.cookie-banner__btn:hover { background: #f0f0f0; }

.cookie-banner__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.cookie-banner.hidden { display: none; }

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner__btn { width: 100%; }
}

/* ===================== PAGE BANNER ===================== */
.page-banner {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  padding: 40px;
  margin-bottom: 40px;
}

.page-banner--red { background: linear-gradient(135deg, #8b2a3a, #c8394b); }
.page-banner--photo {
  background: linear-gradient(135deg, #8b2a3a, #c8394b);
}

.page-banner__title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* ===================== LEGAL TEXT ===================== */
.legal-content {
  max-width: 860px;
  padding: 40px 0;
  color: var(--text);
}

.legal-content h1 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 16px;
}

.legal-content p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-content a { color: var(--dark-pink); }

/* ===================== 3D CUBE LOGO ===================== */
.cube-logo {
  width: 120px;
  height: 120px;
  margin: 40px auto;
  position: relative;
}

.cube-logo__face {
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 12px;
}

.cube-logo__face--front {
  background: var(--red);
  top: 20px;
  left: 20px;
  z-index: 2;
}

.cube-logo__face--top {
  background: #a02f40;
  top: 0;
  left: 30px;
  transform: skewX(-20deg);
  z-index: 1;
  width: 70px;
  height: 30px;
}

.cube-logo__face--right {
  background: #7a2433;
  top: 25px;
  left: 90px;
  z-index: 1;
  width: 30px;
  height: 70px;
  transform: skewY(-20deg);
}

/* ===================== MOBILE NAV ===================== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 6px;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #636363;
  border-radius: 8px;
}

@media (max-width: 1023px) {
  .header__nav, .header__right { display: none; }
  .mobile-menu-toggle { display: flex; }

  .header-bar .header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    padding: 30px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    z-index: 10000;
    gap: 20px;
    max-height: 100vh;
    overflow: auto;
  }

  .header-bar .header__nav.open .header__nav-link {
    font-size: 18px;
    padding: 8px 0;
    color: #ffffff;
  }
}

/* ===================== MODALS ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 20000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px var(--container-padding);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  background: var(--bg);
  border-radius: 24px;
  width: 100%;
  max-width: 800px;
  margin: auto 0;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-gray);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  z-index: 2;
  transition: background 0.2s;
}

.modal__close:hover {
  background: #e8e8e8;
}

.modal__body {
  padding: 32px;
}

.modal__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 20px;
  padding-right: 48px;
}

.modal__video {
  margin: -32px -32px 24px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.modal__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-gray);
}

.modal__text p + p {
  margin-top: 14px;
}

.pilgrimage-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pilgrimage-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.pilgrimage-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pilgrimage-item__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.pilgrimage-item__desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 10px;
}

.pilgrimage-item__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  text-decoration: underline;
}

.pilgrimage-item__link:hover {
  color: var(--red-hover);
}

/* ===================== PAY / QR PAGE ===================== */
.pay-page {
  max-width: 480px;
  margin: 40px auto 60px;
  text-align: center;
}

.pay-page__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pay-page__lead {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.55;
  margin-bottom: 32px;
}

.pay-page__qr-wrap {
  background: #1a2d5a;
  border-radius: 24px;
  padding: 32px 24px;
  display: inline-block;
}

.pay-page__qr {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  border: 3px solid var(--red);
  background: #fff;
}

/* ===================== REPORTS SECTION ===================== */
.status-collected {
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
}

/* ===================== ANDREEVSKIY ADDITIONS ===================== */
.hero-banner__lead {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.card__text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.55;
  margin-bottom: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.stat-card {
  background: var(--bg-gray);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
}

.stat-card__value {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.4;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.join-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 28px;
}

.join-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.join-card__text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.55;
}

.join-card a {
  color: var(--red);
  text-decoration: underline;
}

.news-article {
  padding: 32px 0;
  border-bottom: 1px solid #e8e8e8;
}

.news-article:last-child {
  border-bottom: none;
}

.news-article__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.news-article__qa {
  margin-bottom: 14px;
}

.news-article__question {
  font-weight: 700;
  margin-bottom: 6px;
}

.news-article__answer {
  color: var(--text-gray);
  line-height: 1.6;
}

.news-article p {
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 12px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 20px;
}

.contacts-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.contacts-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--bg-gray);
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s;
}

.contacts-social__link:hover {
  background: #e8e8e8;
}

@media (max-width: 767px) {
  .stats-grid,
  .join-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== NEWS (list + article) ===================== */
.news-list-section {
  max-width: 760px;
  margin: 0 auto;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-preview {
  padding: 32px 0;
  border-bottom: 1px solid #e8e8e8;
}

.news-preview:first-child {
  padding-top: 8px;
}

.news-preview:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}

.news-preview__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px;
}

.news-preview__title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.news-preview__title a:hover {
  color: var(--red);
}

.news-preview__date {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.news-preview__excerpt {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-gray);
  margin: 0 0 16px;
}

.news-preview__more {
  font-weight: 600;
  font-size: 14px;
  color: var(--red);
  text-decoration: none;
}

.news-preview__more:hover {
  text-decoration: underline;
}

.news-article-section {
  max-width: 720px;
  margin: 0 auto;
}

.news-post__header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}

.news-post__title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
}

.news-post__date {
  font-size: 15px;
  color: var(--text-light);
}

.news-post__footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}

.news-empty {
  text-align: center;
  color: var(--text-gray);
  padding: 40px 0;
}

.prose {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-gray);
}

.prose h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 14px;
  line-height: 1.3;
}

.prose h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 10px;
}

.prose p {
  margin: 0 0 16px;
}

.prose strong {
  color: var(--text);
  font-weight: 700;
}

.prose hr {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 28px 0;
}

.prose a {
  color: var(--red);
}

.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 1.4em;
}

.prose li {
  margin-bottom: 8px;
}
/* ===================== PILGRIMAGE ===================== */
.pilgrimage-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pilgrimage-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.pilgrimage-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pilgrimage-item__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.pilgrimage-item__desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 10px;
}

.pilgrimage-item__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  text-decoration: underline;
}

.pilgrimage-item__link:hover {
  color: var(--red-hover);
}

.pilgrimage-modal__intro,
.pilgrimage-overview__intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.pilgrimage-trip__heading {
  text-align: left;
}

.pilgrimage-trip__intro {
  max-width: 720px;
  margin-bottom: 32px;
}

.pilgrimage-places {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 720px;
}

.pilgrimage-place__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.pilgrimage-place__address {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.55;
  margin-bottom: 14px;
}


.pilgrimage-place__map {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--bg-gray);
}

.pilgrimage-place__map iframe {
  display: block;
  width: 100%;
  min-height: 280px;
}

.pilgrimage-place__map-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  text-decoration: underline;
}

.pilgrimage-place__map-link:hover {
  color: var(--red-hover);
}

.pilgrimage-map__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pilgrimage-map-unified {
  width: 100%;
  max-width: 960px;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--bg-gray);
}

.pilgrimage-trip__cta {
  margin-top: 40px;
}

.home-partner-notice {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 20px 24px;
  background: var(--bg-gray);
  border-radius: 16px;
  text-align: center;
}

.home-partner-notice__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-gray);
  margin: 0;
}


