.contact-page {
  --contact-width: min(var(--page-width), var(--max));
}

.contact-hero {
  padding: 59px 0 72px;
}

.contact-hero-shell {
  --shell-pad: 34px;
  --header-height: 89px;
  --header-corner: var(--radius);
  --notch-radius: 80px;
  --notch-left-top: 109px;
  --notch-right-top: 245px;
  --notch-left-bottom: 109px;
  --notch-right-bottom: 245px;
  --brand-left: 120px;
  --brand-top: -13px;
  --brand-box: 112px;
  --brand-size: 194px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: stretch;
  gap: 14px;
  width: var(--contact-width);
  margin: 0 auto;
  padding: 0 var(--shell-pad) var(--shell-pad);
  background: var(--white);
  border: 1px solid #d8d1c7;
  border-top-color: transparent;
  border-radius: var(--radius);
  overflow: visible;
}

.contact-hero-copy,
.contact-details-panel {
  min-width: 0;
  min-height: 650px;
  height: 100%;
  border-radius: var(--radius);
}

.contact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
  background: var(--blue-soft);
}

.contact-hero-copy h1 {
  margin: 0 0 34px;
  font-size: clamp(72px, 7.3vw, 110px);
  font-weight: 510;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.contact-intro {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 560;
  line-height: 1.24;
}

.contact-context {
  max-width: 620px;
  margin: 0;
  color: rgba(11, 11, 13, 0.64);
  font-size: 17px;
}

.contact-details-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(36px, 5vw, 68px);
  background: var(--blush);
  color: var(--ink);
}

.contact-details-panel > .eyebrow {
  margin-bottom: 34px;
  color: rgba(11, 11, 13, 0.54);
}

.contact-detail-list {
  display: grid;
  border-top: 1px solid rgba(11, 11, 13, 0.22);
}

.contact-detail {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 5px 18px;
  padding: 28px 46px 28px 0;
  border-bottom: 1px solid rgba(11, 11, 13, 0.14);
  color: var(--ink);
  text-decoration: none;
}

.contact-detail > span {
  grid-row: 1 / 3;
  padding-top: 4px;
  color: rgba(11, 11, 13, 0.52);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail small {
  color: rgba(11, 11, 13, 0.62);
  font-size: 14px;
}

.contact-detail strong {
  min-width: 0;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 570;
  letter-spacing: -0.025em;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.contact-detail[href^="mailto:"] strong {
  font-size: clamp(22px, 2vw, 30px);
}

.contact-detail i {
  position: absolute;
  top: 28px;
  right: 0;
  font-size: 21px;
  font-style: normal;
  transition: transform 180ms ease;
}

.contact-detail:hover i {
  transform: translate(3px, -3px);
}

.contact-signoff {
  margin-top: auto;
  padding: 28px;
  background: #f0e5e4;
  border-radius: var(--radius);
  color: var(--ink);
}

.contact-signoff p {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: clamp(25px, 2.7vw, 40px);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.contact-signoff span,
.contact-signoff strong {
  display: block;
}

.contact-signoff span {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 13px;
}

.contact-signoff strong {
  font-size: 18px;
  font-weight: 750;
}

@media (max-width: 1100px) {
  .contact-hero-shell {
    --shell-pad: 16px;
    grid-template-columns: 1fr;
    padding: 0 var(--shell-pad) var(--shell-pad);
  }

  .contact-hero-copy,
  .contact-details-panel {
    min-height: 580px;
    height: auto;
  }
}

@media (max-width: 680px) {
  .contact-hero {
    padding-bottom: 48px;
  }

  .contact-hero-copy,
  .contact-details-panel {
    min-height: 0;
    padding: 28px;
  }

  .contact-hero-copy {
    padding-top: 92px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(65px, 19vw, 82px);
  }

  .contact-intro {
    font-size: 21px;
  }

  .contact-details-panel > .eyebrow {
    margin-bottom: 26px;
  }

  .contact-detail {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .contact-detail > span {
    grid-row: auto;
  }

  .contact-detail strong {
    font-size: clamp(22px, 7.2vw, 28px);
  }

  .contact-detail[href^="mailto:"] strong {
    font-size: 20px;
    letter-spacing: -0.035em;
  }

  .contact-signoff {
    margin-top: 28px;
    padding: 24px;
  }
}
