.contact-page main {
  overflow: hidden;
}

.contact-hero {
  min-height: 760px;
  padding-top: 170px;
  display: grid;
  place-items: center;
  text-align: center;
}

.contact-intro {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
}

.contact-intro h1 {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: .08em;
  margin: 24px 0 30px;
  font: 400 clamp(92px, 13vw, 190px)/.82 var(--display);
  letter-spacing: -.045em;
}

.contact-intro h1 span:last-child,
.contact-section-heading h2 span {
  color: var(--orange);
}

.contact-intro > p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--light-gray);
  font-size: 15px;
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.contact-label,
.contact-sticker {
  position: absolute;
  z-index: 2;
  padding: 9px 15px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.contact-label {
  top: 116px;
  left: 14%;
  color: #080808;
  background: var(--orange);
  rotate: -4deg;
  box-shadow: 0 10px 30px rgba(232,80,2,.24);
}

.contact-sticker {
  top: 150px;
  right: 12%;
  color: var(--orange-light);
  border: 1px solid rgba(232,80,2,.48);
  background: rgba(8,8,8,.58);
  rotate: 5deg;
}

.contact-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.contact-glow-left {
  width: 390px;
  height: 390px;
  left: -180px;
  top: 100px;
  background: rgba(193,8,1,.28);
}

.contact-glow-right {
  width: 330px;
  height: 330px;
  right: -130px;
  bottom: 20px;
  background: rgba(232,80,2,.22);
}

.contact-details {
  padding-block: 105px 130px;
}

.contact-section-heading {
  margin-bottom: 44px;
}

.contact-section-heading h2 {
  margin: 13px 0 0;
  font: 400 clamp(58px, 8vw, 104px)/.9 var(--display);
  letter-spacing: -.025em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  min-width: 0;
  min-height: 290px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.contact-card:hover {
  transform: translateY(-7px);
  border-color: rgba(232,80,2,.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.26),
    0 24px 64px rgba(0,0,0,.42),
    0 0 34px rgba(232,80,2,.13);
}

.contact-card-icon {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  color: var(--orange-light);
  border: 1px solid rgba(232,80,2,.36);
  border-radius: 14px;
  background: rgba(232,80,2,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 0 22px rgba(232,80,2,.1);
  font-size: 16px;
  font-weight: 900;
}

.contact-card small,
.contact-card strong,
.contact-card em {
  position: relative;
  z-index: 4;
}

.contact-card small {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(16px, 1.8vw, 23px);
}

.contact-card em {
  margin-top: 18px;
  color: var(--light-gray);
  font-size: 11px;
  font-style: normal;
}

.contact-note {
  margin: 24px 0 0;
  padding: 20px 24px;
  color: var(--light-gray);
  border-radius: 20px;
  text-align: center;
  font-size: 12px;
}

.contact-note a {
  position: relative;
  z-index: 4;
  color: var(--orange-light);
  font-weight: 700;
}

@media (max-width: 820px) {
  .contact-hero {
    min-height: 700px;
    padding-top: 140px;
  }
  .contact-intro h1 {
    font-size: clamp(76px, 15vw, 120px);
  }
  .contact-intro > p {
    max-width: 620px;
    font-size: 13px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    min-height: 230px;
  }
}

@media (max-width: 560px) {
  .contact-page main,
  .contact-page .section {
    max-width: 100%;
    overflow-x: clip;
  }
  .contact-hero {
    min-height: 680px;
    padding-top: 130px;
  }
  .contact-intro h1 {
    flex-wrap: nowrap;
    gap: .06em;
    margin-top: 20px;
    font-size: clamp(57px, 17vw, 76px);
  }
  .contact-intro > p {
    padding-inline: 8px;
    font-size: 12px;
    line-height: 1.7;
  }
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(290px, 100%);
    margin-inline: auto;
  }
  .contact-actions .button {
    justify-content: center;
  }
  .contact-label {
    top: 90px;
    left: 16px;
  }
  .contact-sticker {
    top: 112px;
    right: 14px;
    font-size: 8px;
  }
  .contact-details {
    padding-block: 85px 100px;
  }
  .contact-section-heading h2 {
    font-size: 55px;
  }
  .contact-card {
    min-height: 220px;
    padding: 24px;
    border-radius: 24px;
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
  }
  .contact-card strong {
    font-size: 18px;
  }
}
