/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .header__top-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header__info {
    width: 100%;
    align-items: flex-start;
  }
  
  .about__title {
    font-size: 26px;
  }
  
  .map-section__title {
    font-size: 26px;
  }
  
  .hero__image-wrapper {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .header__contacts {
    flex-direction: column;
    gap: 6px;
  }
  
  .nav-menu {
    width: 100%;
    left: 0;
    right: 0;
  }
  
  .header__brand-name {
    font-size: 24px;
  }
  
  .map-section__map {
    height: 300px;
  }
  
  .map-section__actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .map-section__route-btn,
  .map-section__navi-btn {
    justify-content: center;
    text-align: center;
  }
  
  .hero__image-wrapper {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .header__call-btn {
    padding: 8px 16px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  
  .header__actions {
    width: 100%;
  }
  
  .hero__title {
    font-size: 24px;
  }
  
  .hero__image-wrapper {
    max-width: 280px;
  }
  
  .about__text h3 {
    font-size: 18px;
  }
  
  .cookie-modal {
    flex-direction: column;
    text-align: center;
  }
}