.pm-contacts-page {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pm-contacts-layout {
  display: grid;
  gap: 1.5rem;
}

.pm-contacts-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pm-contacts-intro,
.pm-contacts-channel,
.pm-contacts-map,
.pm-contacts-form-card,
.pm-contacts-faq,
.pm-contacts-guide {
  border: 1px solid rgba(199, 219, 255, 0.92);
  box-shadow: 0 24px 60px rgba(23, 76, 175, 0.08);
}

.pm-contacts-intro {
  background:
    radial-gradient(circle at top right, rgba(31, 100, 228, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.98) 100%);
}

.pm-contacts-intro__chips,
.pm-contacts-actions,
.pm-contacts-socials,
.pm-contacts-hours,
.pm-contacts-faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pm-contacts-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(199, 219, 255, 0.92);
  background: rgba(255, 255, 255, 0.88);
  color: var(--pm-brand-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pm-contacts-addresses {
  display: grid;
  gap: 0.9rem;
}

.pm-contacts-address {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(199, 219, 255, 0.92);
  color: var(--pm-ink-900);
}

.pm-contacts-address:hover {
  border-color: rgba(31, 100, 228, 0.3);
  color: var(--pm-brand-700);
}

.pm-contacts-address__title,
.pm-contacts-guide__label,
.pm-contacts-map__label {
  color: rgba(51, 65, 85, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pm-contacts-address__value,
.pm-contacts-channel__value,
.pm-contacts-map__value {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
}

.pm-contacts-address__meta,
.pm-contacts-channel__meta,
.pm-contacts-map__copy,
.pm-contacts-guide__copy {
  color: rgba(51, 65, 85, 0.76);
  font-size: 0.94rem;
  line-height: 1.65;
}

.pm-contacts-channel-grid {
  display: grid;
  gap: 1rem;
}

.pm-contacts-channel {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  height: 100%;
}

.pm-contacts-channel__meta {
  margin-top: auto;
}

.pm-contacts-map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pm-contacts-map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pm-contacts-form-card .page-form {
  margin-top: 2rem;
}

.pm-contacts-faq details {
  border: 1px solid rgba(199, 219, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.pm-contacts-faq summary {
  position: relative;
  padding-right: 2rem;
}

.pm-contacts-faq summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--pm-brand-700);
  font-size: 1.4rem;
  line-height: 1;
}

.pm-contacts-faq details[open] summary::after {
  content: "-";
}

.pm-contacts-guide__list {
  display: grid;
  gap: 0.85rem;
}

.pm-contacts-guide__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(199, 219, 255, 0.72);
}

.pm-contacts-guide__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pm-contacts-guide__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pm-brand-500) 0%, var(--pm-brand-700) 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .pm-contacts-page,
  .pm-contacts-layout,
  .pm-contacts-column {
    gap: 2rem;
  }

  .pm-contacts-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .pm-contacts-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
    align-items: start;
  }
}
