/* ── Contact info bar ── */
.contact-bar {
  background: #f3f1ee;
  padding: 32px 28px;
  margin-top: 40px;
  border-radius: 6px;
  border: 1px solid #e8e4df;
}

.contact-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 32px;
}

.contact-bar__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-bar__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #b8895a;
  border-radius: 50%;
  color: #9d3b16;
}

.contact-bar__icon svg {
  width: 22px;
  height: 22px;
}

.contact-bar__text {
  font-size: 14px;
  line-height: 1.65;
  color: #4a4038;
}

.contact-bar__text a {
  color: #4a4038;
  transition: color 0.2s;
}

.contact-bar__text a:hover {
  color: #9d3b16;
}

/* ── Map + form ── */
.contact-main {
  background: #fff;
  padding: 40px 0 56px;
}

.contact-main__inner {
  display: flex;
  flex-direction: column;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  min-height: 520px;
}

.contact-map {
  background: #e8ecf1;
  min-height: 520px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e8ecf1;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.contact-form-panel {
  background: #f8f6f3;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #e8e4df;
}

.contact-form-panel__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: #2c2418;
  margin-bottom: 12px;
  line-height: 1.25;
}

.contact-form-panel__intro {
  font-size: 14px;
  color: #7a7068;
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-form__group {
  margin-bottom: 18px;
}

.contact-form__label {
  display: block;
  font-size: 13px;
  color: #6b635c;
  margin-bottom: 8px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd8d2;
  border-radius: 2px;
  font-family: var(--font);
  font-size: 14px;
  color: #2c2418;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: #b8895a;
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__submit {
  display: inline-block;
  margin-top: 4px;
  background: #c9a227;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 14px 36px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form__submit:hover {
  background: #b08d1f;
}

.contact-form-panel__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e0dbd4;
}

.contact-form-panel__social-label {
  font-size: 13px;
  font-weight: 600;
  color: #4a4038;
}

.contact-form-panel__social-links {
  display: flex;
  gap: 8px;
}

.contact-form-panel__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #9d3b16;
  color: #fff;
  transition: background 0.2s;
}

.contact-form-panel__social-links a svg {
  width: 14px;
  height: 14px;
}

.contact-form-panel__social-links a:hover {
  background: #7a2e11;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }

  .contact-form-panel {
    padding: 40px 36px;
  }

  .contact-form-panel__heading {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .contact-bar {
    margin-top: 32px;
    padding: 28px 20px;
  }

  .contact-main {
    padding: 32px 0 40px;
  }

  .contact-main__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .contact-map {
    min-height: 300px;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  .contact-form-panel {
    padding: 36px 24px;
  }
}

@media (max-width: 600px) {
  .contact-bar {
    padding: 24px 16px;
  }

  .contact-bar__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-form-panel__heading {
    font-size: 24px;
  }
}
