/* ========================================
   БАЗОВЫЕ СТИЛИ
   ======================================== */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   ОСНОВНОЙ КОНТЕЙНЕР
   ======================================== */

.section-ilyinskie {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 60px;
}

/* ========================================
   ЗАГОЛОВОЧНАЯ ЧАСТЬ
   ======================================== */

.header-ilyinskie {
  text-align: center;
  margin-bottom: 48px;
}

.header-ilyinskie__title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: -0.02em;
  color: #1e2b2c;
  line-height: 1.15;
  margin-bottom: 8px;
}

.header-ilyinskie__title span {
  color: #8b7a5a; /* золотистый акцент */
}

.header-ilyinskie__sub {
  font-size: 20px;
  font-weight: 400;
  color: #3d4a4b;
  margin-top: 8px;
  margin-bottom: 16px;
}

.header-ilyinskie__line {
  width: 70px;
  height: 2px;
  background: #8b7a5a;
  margin: 18px auto 18px;
}

.header-ilyinskie__desc {
  font-size: 18px;
  color: #4a5a5b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* ========================================
   СЕТКА КАРТОЧЕК
   ======================================== */

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

/* ========================================
   КАРТОЧКА
   ======================================== */

.card-ilyinskie {
  background: #fbfbfa;
  border: 1px solid #e6e4df;
  border-radius: 12px;
  padding: 28px 22px 26px;
  transition: all 0.2s ease;
}

.card-ilyinskie:hover {
  background: #f8f7f4;
  border-color: #c9c4b8;
}

.card-ilyinskie__icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
  color: #1e2b2c;
  line-height: 1;
  font-weight: 300;
}

.card-ilyinskie__title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1e2b2c;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.card-ilyinskie__desc {
  font-size: 15px;
  color: #556667;
  line-height: 1.4;
  font-weight: 400;
}

/* ========================================
   ФИНАЛЬНЫЙ БЛОК
   ======================================== */

.footer-ilyinskie {
  background: #f5f3ef;
  border-radius: 16px;
  padding: 42px 32px 38px;
  text-align: center;
  margin-top: 12px;
  border: 1px solid #e3dfd8;
}

.footer-ilyinskie__line {
  width: 50px;
  height: 2px;
  background: #8b7a5a;
  margin: 0 auto 14px;
}

.footer-ilyinskie__text {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 28px;
  color: #1e2b2c;
  letter-spacing: -0.01em;
}

.footer-ilyinskie__text:last-of-type {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #8b7a5a;
  margin-top: 4px;
}

/* ========================================
   АДАПТИВНОСТЬ
   ======================================== */

/* Планшеты */
@media (max-width: 1024px) {
  .grid-ilyinskie {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .header-ilyinskie__title {
    font-size: 40px;
  }
}

/* Мобильные устройства */
@media (max-width: 640px) {
  .section-ilyinskie {
    padding: 40px 16px 36px;
  }

  .header-ilyinskie {
    margin-bottom: 32px;
  }

  .header-ilyinskie__title {
    font-size: 30px;
  }

  .header-ilyinskie__sub {
    font-size: 17px;
  }

  .header-ilyinskie__desc {
    font-size: 16px;
  }

  .header-ilyinskie__line {
    width: 50px;
    margin: 14px auto 14px;
  }

  .grid-ilyinskie {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 28px 0 32px;
  }

  .card-ilyinskie {
    padding: 20px 16px 18px;
  }

  .card-ilyinskie__title {
    font-size: 17px;
  }

  .card-ilyinskie__desc {
    font-size: 14px;
  }

  .footer-ilyinskie {
    padding: 28px 18px 24px;
  }

  .footer-ilyinskie__text {
    font-size: 22px;
  }

  .footer-ilyinskie__text:last-of-type {
    font-size: 18px;
  }
}

/* Очень маленькие экраны */
@media (max-width: 400px) {
  .section-ilyinskie {
    padding: 30px 12px 28px;
  }

  .header-ilyinskie__title {
    font-size: 26px;
  }

  .card-ilyinskie {
    padding: 16px 14px 14px;
  }
}

/* ========================================
   ВСПОМОГАТЕЛЬНЫЕ КЛАССЫ
   ======================================== */

/* Для растягивания карточки на всю ширину */
.card-ilyinskie--full {
  grid-column: 1 / -1;
}

/* Текст с золотым акцентом */
.text-gold {
  color: #8b7a5a;
}

/* Дополнительный отступ */
.mt-8 {
  margin-top: 8px;
}
.mb-8 {
  margin-bottom: 8px;
}