/* Внешние обёртки */
.contacts-wrapper {
  background-color: var(--cloud-gray);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  width: 100%;
  padding: 0 20px;
}

.contacts-inner-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.contacts-section {
  background-color: var(--white-0); 
  padding: 80px 0;
}

.contacts-content {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Текст */
.contacts-text {
  color: var(--black-0);
  font-family: 'Lora', serif;
  text-align: center;
  padding: 0 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}


.contacts-title {
  font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem); /* ~28px–44px */
  margin-bottom: clamp(12px, 2vw, 20px);
}

.contacts-subtitle {
  font-size: clamp(1.2rem, 2vw + 0.8rem, 1.5rem); /* ~20px–24px */
  margin-bottom: clamp(12px, 2vw, 20px);
}

.contacts-paragraph {
  font-size: clamp(1.1rem, 1.8vw + 0.5rem, 1.25rem); /* ~16px–20px */
  line-height: 1.4;
  text-align: justify;
}

.contacts-paragraph-intro {
  text-align: left;
  margin-bottom: 1em; 
}

.contacts-map {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.contacts-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1000px) {
  .contacts-section {
    padding: 60px 0;
  }
  
  .contacts-content {
	  gap: 10px;
  }

  .contacts-title {
    font-size: 2rem;
  }

  .contacts-subtitle {
    font-size: 1.3rem;
  }

  .contacts-paragraph {
    font-size: 1.1rem;
  }

  .contacts-map iframe {
    height: 350px;
  }

  .services-cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta-button {
    width: 100%;
    max-width: 400px;
    height: 55px;
    font-size: 0.8rem;
	padding: 0 20px;
  }
}

@media (max-width: 650px) {
  .contacts-section {
    padding: 40px 0;
  }

  .contacts-title {
    font-size: 1.6rem;
  }

  .contacts-subtitle {
    font-size: 1.1rem;
  }

  .contacts-paragraph {
    font-size: 1rem;
  }

  .contacts-paragraph-intro {
    text-align: center;
  }

  .contacts-map iframe {
    height: 300px;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
    height: 50px;
    font-size: 0.65rem;
  }

  .services-cta {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
