.contact-page {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, .64), rgba(247, 242, 234, 0) 36%),
    var(--paper);
}

.lbn-contact__head {
  max-width: 820px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.lbn-contact__head h2,
.lbn-contact-card h3,
.lbn-contact__note h3,
.lbn-contact__map h3,
.lbn-contact__form h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

.lbn-contact__head h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(2.05rem, 4.7vw, 4.75rem);
}

.lbn-contact__head p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.lbn-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .72fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.lbn-contact__left,
.lbn-contact__cards {
  display: grid;
  gap: 14px;
}

.lbn-contact-card,
.lbn-contact__note,
.lbn-contact__map,
.lbn-contact__form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(32, 32, 29, .07);
}

.lbn-contact-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
}

.lbn-contact-card__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(49, 95, 105, .12);
  color: var(--sea);
  font-size: 1.3rem;
}

.lbn-contact-card h3,
.lbn-contact__note h3,
.lbn-contact__map h3,
.lbn-contact__form h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.lbn-contact-card p,
.lbn-contact__note p,
.lbn-contact__form p {
  margin: 10px 0 0;
  color: var(--muted);
}

.lbn-contact-card__link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--sea);
  font-weight: 850;
  border-bottom: 1px solid rgba(49, 95, 105, .28);
}

.lbn-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.lbn-contact__actions .button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.lbn-contact__note {
  margin-top: 8px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(103, 117, 100, .13), rgba(255, 250, 243, .94)),
    var(--white);
}

.lbn-contact__map {
  overflow: hidden;
  position: sticky;
  top: 96px;
}

.lbn-contact__map-top {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.lbn-contact__map h3 {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.lbn-contact__map h3 i {
  color: var(--sea);
  font-size: 1.15rem;
}

.lbn-contact__map-top a {
  color: var(--clay);
  font-size: .92rem;
  font-weight: 850;
  white-space: nowrap;
}

.lbn-contact__map-frame {
  aspect-ratio: 4 / 3;
  min-height: 380px;
  background: rgba(32, 32, 29, .06);
}

.lbn-contact__map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.lbn-contact__form {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  margin-top: clamp(24px, 5vw, 58px);
  padding: clamp(22px, 4vw, 34px);
}

.lbn-contact__form-head {
  align-self: start;
}

.lbn-contact__form-body {
  min-width: 0;
}

.lbn-contact__form input,
.lbn-contact__form textarea,
.lbn-contact__form select {
  max-width: 100%;
}

@media (max-width: 960px) {
  .lbn-contact__grid,
  .lbn-contact__form {
    grid-template-columns: 1fr;
  }

  .lbn-contact__map {
    position: static;
  }
}

@media (max-width: 640px) {
  .lbn-contact.section {
    padding-top: 58px;
  }

  .lbn-contact-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .lbn-contact-card__icon {
    width: 42px;
    height: 42px;
    font-size: 1.08rem;
  }

  .lbn-contact__actions,
  .lbn-contact__actions .button {
    width: 100%;
  }

  .lbn-contact__map-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .lbn-contact__map-frame {
    min-height: 300px;
  }
}
