
.container {
  max-width: 1044px;
  margin: 0 auto;
  padding: 20px 40px;

}


.contacts-section + .contacts-section {
  padding-top: 0;
}

.contacts-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #3e323e;
  margin-bottom: 24px;
}


.address-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #f3eef3;
  border-radius: 8px;
  overflow: hidden;
}

.address-info {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.address-main {
  font-family: 'Jost', sans-serif;
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.6;
  color: #4a3d4a;
}

.address-hint {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: #6a5a6a;
}

.address-hours {
  margin-top: 4px;
}

.hours-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #4a3d4a;
  margin-bottom: 4px;
}

.address-hours p {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: #4a3d4a;
}

.address-map {
  min-height: 220px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: #ddd6e0;

}


.contacts-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: #f3eef3;
  border-radius: 8px;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #8B7B8B;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-value {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #3e323e;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-value:hover { color: #8B7B8B; }

.contact-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  color: #7a6a7a;
  line-height: 1.5;
}

.contact-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #4a3d4a;
  margin-top: 8px;
}

.contact-sub a {
  color: #4a3d4a;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-sub a:hover { color: #8B7B8B; }


.faq-section {
  padding-bottom: 56px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-card {
  background: #f3eef3;
  border-radius: 8px;
  padding: 20px 22px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s ease calc(var(--i, 0) * 0.07s),
    transform 0.4s ease calc(var(--i, 0) * 0.07s);
}

.faq-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-card h3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.93rem;
  font-weight: 400;
  color: #3e323e;
  margin-bottom: 10px;
  line-height: 1.35;
}

.faq-card p {
  font-family: 'Jost', sans-serif;
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.6;
  color: #5a4d5a;
  margin: 0;
}


.feedback-section {
  padding: 0 0 80px;
}

.feedback-card {
  background: #f3eef3;
  border-radius: 10px;
  padding: 32px 40px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.feedback-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #3e323e;
  text-align: center;
  margin-bottom: 30px;
}

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

.form-field input,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #3e323e;
  background: #faf8fa;
  border: 1px solid #ddd0dd;
  border-radius: 6px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #b0a0b0;
  font-weight: 300;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #8B7B8B;
  background: #fff;
  box-shadow: 0 4px 12px rgba(139,123,139,0.06);
}

.form-field textarea {
  min-height: 140px;
  line-height: 1.5;
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.btn-submit {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a3d4a;
  background: transparent;
  border: 1.5px solid #8B7B8B;
  border-radius: 2px;
  padding: 12px 48px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.btn-submit:hover {
  background: #8B7B8B;
  color: #fff;
}


@media (max-width: 860px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contacts-section {
    padding: 36px 0 32px;
  }

  .contacts-title {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }

  .address-card {
    grid-template-columns: 1fr;
  }

  .address-info {
    padding: 22px 20px;
  }

  .map-placeholder {
    min-height: 180px;
  }

  .contact-card {
    padding: 18px 20px;
  }

  .faq-grid {
    gap: 10px;
  }

  .faq-card {
    padding: 16px 18px;
  }

  .feedback-card {
    padding: 28px 20px 36px;
  }

  .feedback-title {
    font-size: 1.4rem;
    margin-bottom: 22px;
  }

  .btn-submit {
    width: 100%;
    padding: 13px;
  }
}

@media (max-width: 380px) {
  .faq-card h3 {
    font-size: 0.88rem;
  }

  .faq-card p {
    font-size: 0.82rem;
  }
}