.contact-section {
  position: relative;
  padding: clamp(112px, 11vw, 178px) clamp(18px, 4.4vw, 70px)
    clamp(118px, 11vw, 174px);
  color: #f4f3ef;
  background: var(--background);
}

.contact-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-top: clamp(28px, 4vw, 62px);
}

.contact-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(42px, 6vw, 86px);
  color: #9b9b95;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-kicker span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 13px rgba(252, 199, 81, 0.55);
}

.contact-heading h2 {
  max-width: 1250px;
  margin: 0;
  color: #f4f3ef;
  font-size: clamp(106px, 15.4vw, 248px);
  font-weight: 300;
  letter-spacing: -0.09em;
  line-height: 0.73;
}

.contact-heading h2 span {
  color: var(--gold);
}

.contact-body {
  display: grid;
  align-items: start;
  margin-top: clamp(88px, 10vw, 152px);
  grid-template-columns: minmax(230px, 0.7fr) minmax(430px, 1.3fr);
  gap: clamp(74px, 13vw, 220px);
}

.contact-intro {
  max-width: 420px;
}

.contact-intro p {
  margin: 0;
  color: #b1b0aa;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.7;
}

.contact-intro > span {
  display: block;
  margin-top: 25px;
  color: #666762;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-methods {
  border-top: 1px solid rgba(244, 243, 239, 0.14);
}

.contact-method {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(82px, 7.8vw, 118px);
  padding: 0 54px 0 0;
  border-bottom: 1px solid rgba(244, 243, 239, 0.14);
  grid-template-columns: minmax(85px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  transition:
    color 220ms ease,
    padding 360ms var(--ease-out);
}

.contact-method::before {
  position: absolute;
  inset: 0;
  background: rgba(252, 199, 81, 0.045);
  content: "";
  opacity: 0;
  transform: scaleY(0.25);
  transform-origin: center;
  transition:
    opacity 240ms ease,
    transform 420ms var(--ease-out);
}

.contact-method:hover {
  padding-left: 18px;
  color: var(--gold);
}

.contact-method:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.contact-method-label,
.contact-method strong,
.contact-method i {
  position: relative;
  z-index: 1;
}

.contact-method-label {
  color: #777873;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-method strong {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-size: clamp(18px, 2vw, 31px);
  font-weight: 400;
  letter-spacing: -0.045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-method i {
  position: absolute;
  right: 4px;
  color: var(--gold);
  font-size: 19px;
  font-style: normal;
  transition: transform 260ms ease;
}

.contact-method:hover i {
  transform: translate(4px, -4px);
}
