.contact-page {
  background: var(--paper);
}
.contact-page main {
  padding-top: 74px;
}
.contact-page .hdr__nav [aria-current=page] {
  color: var(--orange-deep);
}
.contact-hero {
  min-height: 520px;
  padding-top: clamp(70px, 7vw, 112px);
  padding-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(520px, 1.35fr);
  align-items: center;
  gap: 14px;
}
.contact-hero__copy {
  position: relative;
  z-index: 2;
  padding-left: 18px;
}
.contact-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--ink-btn);
  margin-bottom: 12px;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(62px, 5.4vw, 82px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: .005em;
  color: var(--ink-btn);
  margin: 0 0 24px;
}
.contact-hero h1 span {
  color: var(--orange);
  white-space: nowrap;
}
.contact-hero__lead {
  max-width: 530px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-body);
}
.contact-hero__underline {
  width: 110px;
  margin: 18px 0 0 64px;
  overflow: visible;
}
.contact-hero__underline path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.contact-hero__art {
  position: relative;
  align-self: end;
  min-width: 0;
}
.contact-hero__art img {
  position: relative;
  z-index: 1;
  width: 112%;
  max-width: none;
  margin-left: -10%;
}
.contact-hero__wash {
  position: absolute;
  display: block;
  border-radius: 48% 52% 45% 55%;
  filter: blur(.2px);
}
.contact-hero__wash--one {
  width: 50%;
  aspect-ratio: 1;
  left: 23%;
  top: -3%;
  background: #FBE9DA;
  rotate: 18deg;
}
.contact-hero__wash--two {
  width: 25%;
  aspect-ratio: .72;
  right: 0;
  top: 19%;
  background: #FCE3DC;
  rotate: 17deg;
}
.contact-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(310px, .86fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 84px;
}
.message-card,
.contact-option {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(20, 58, 43, .05);
  box-shadow: 0 18px 42px rgba(78, 62, 39, .08);
  border-radius: 22px;
}
.message-card {
  overflow: hidden;
}
.message-card__bar {
  min-height: 64px;
  border-bottom: 1px solid rgba(20, 58, 43, .1);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.message-card__bar p {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-eyebrow);
  font-weight: 800;
  font-size: 14px;
}
.message-card__mark {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: var(--orange);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}
.message-card__lights {
  display: flex;
  gap: 9px;
}
.message-card__lights i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.message-card__lights i:nth-child(1) {
  background: #FF7A22;
}
.message-card__lights i:nth-child(2) {
  background: #FDBF29;
}
.message-card__lights i:nth-child(3) {
  background: #26B86A;
}
.message-card__body {
  padding: 28px 36px 32px;
}
.message-card__intro {
  font-size: 16px;
  color: #60748B;
  margin-bottom: 26px;
}
.contact-field {
  margin-bottom: 22px;
}
.contact-field--trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-field label {
  display: block;
  margin-bottom: 9px;
  color: #5A6D82;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-field label span {
  color: var(--orange);
}
.contact-field label small {
  font: inherit;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #CCD7E0;
  border-radius: 13px;
  background: rgba(255, 255, 255, .7);
  color: var(--ink-body);
  font: inherit;
  font-size: 16px;
  padding: 15px 17px;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}
.contact-field select {
  appearance: none;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      var(--ink-btn) 50%),
    linear-gradient(
      135deg,
      var(--ink-btn) 50%,
      transparent 50%);
  background-position: calc(100% - 21px) 52%, calc(100% - 15px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.contact-field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.45;
}
.contact-field ::placeholder {
  color: #9AAFC3;
  opacity: 1;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--orange-deep);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(190, 69, 28, .12);
}
.message-card__submit {
  display: flex;
  align-items: center;
  gap: 30px;
}
.contact-submit,
.contact-option__button {
  border: 0;
  border-radius: 999px;
  background: var(--orange-deep);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: translate .2s ease, box-shadow .2s ease;
}
.contact-submit {
  min-width: 195px;
  padding: 15px 26px;
}
.contact-submit:disabled {
  cursor: wait;
  opacity: .72;
}
.contact-submit:hover,
.contact-option__button:hover {
  translate: 0 -2px;
  box-shadow: 0 10px 24px rgba(190, 69, 28, .2);
}
.message-card__privacy {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6D7D90;
  font-size: 13px;
  line-height: 1.55;
}
.message-card__privacy svg {
  flex: 0 0 auto;
  width: 24px;
  fill: #84909D;
  stroke: #84909D;
  stroke-width: 1.5;
}
.message-card__status {
  min-height: 1.4em;
  margin-top: 14px;
  color: var(--ink-display);
  font-size: 14px;
}
.message-card__status[data-state=success] {
  color: #127844;
}
.message-card__status[data-state=error] {
  color: #A52A1F;
}
.contact-options {
  display: grid;
  gap: 22px;
}
.contact-option {
  padding: 28px;
}
.contact-option__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}
.contact-option__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  color: #68788D;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-option__eyebrow i {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: #259AF5;
}
.contact-option__icon {
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #FDE9DA;
  color: var(--orange);
}
.contact-option__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-option h2 {
  color: var(--ink-btn);
  font-size: 24px;
  line-height: 1.28;
  margin: 0 0 12px;
}
.contact-option h2 a {
  text-decoration: none;
}
.contact-option h2 a:hover {
  text-decoration: underline;
}
.contact-option > p {
  color: #68788D;
  font-size: 15px;
  line-height: 1.55;
}
.contact-option__button {
  width: 100%;
  padding: 14px 24px;
  margin-top: 22px;
}
.contact-option--email .contact-option__eyebrow i {
  background: #22B970;
}
.contact-option--email .contact-option__icon {
  background: #E7F4E4;
  color: #15964E;
}
.contact-option--email h2 {
  font-size: 21px;
}
.contact-copy {
  margin-top: 22px;
  border: 1px solid #269DF5;
  border-radius: 8px;
  background: #F3FAFF;
  color: #0A76D1;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-copy svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.contact-option--phone .contact-option__eyebrow i {
  background: #FF8A79;
}
.contact-option--phone .contact-option__icon {
  background: #FCE3DC;
  color: var(--orange);
}
.contact-signoff {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding-bottom: 30px;
}
.contact-signoff svg {
  width: 100%;
  height: 36px;
  overflow: visible;
}
.contact-signoff path {
  fill: none;
  stroke: #174F5B;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}
.contact-signoff p {
  font-family: var(--font-hand);
  font-size: clamp(24px, 2.3vw, 34px);
  color: var(--ink-display);
  white-space: nowrap;
}
.contact-signoff p span {
  position: relative;
}
.contact-signoff p span::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: -.12em;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
  rotate: -3deg;
}
@media (max-width: 980px) {
  .contact-page main {
    padding-top: 96px;
  }
  .contact-hero {
    grid-template-columns: 1fr;
    padding-top: 64px;
    text-align: center;
  }
  .contact-hero__copy {
    padding: 0;
  }
  .contact-kicker {
    margin-left: .38em;
  }
  .contact-hero__lead {
    margin-inline: auto;
  }
  .contact-hero__underline {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-hero__art {
    width: min(100%, 780px);
    justify-self: center;
  }
  .contact-hero__art img {
    width: 100%;
    margin: 0;
  }
  .contact-workspace {
    grid-template-columns: 1fr;
  }
  .contact-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .contact-option {
    padding: 22px;
  }
  .contact-option__top {
    align-items: center;
  }
  .contact-option__icon {
    width: 50px;
    height: 50px;
  }
  .contact-option__icon svg {
    width: 25px;
    height: 25px;
  }
  .contact-option h2 {
    font-size: 20px;
  }
}
@media (max-width: 760px) {
  .contact-page main {
    padding-top: 110px;
  }
  .contact-page .hdr__inner {
    align-items: flex-start;
  }
  .contact-page .hdr__nav {
    justify-content: flex-end;
  }
  .contact-hero {
    min-height: 0;
    padding: 50px 20px 28px;
  }
  .contact-hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }
  .contact-hero__lead {
    font-size: 16px;
  }
  .contact-workspace {
    padding-inline: 18px;
    gap: 20px;
    padding-bottom: 54px;
  }
  .message-card__bar {
    padding-inline: 20px;
  }
  .message-card__body {
    padding: 24px 20px 26px;
  }
  .message-card__submit {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  .contact-submit {
    width: 100%;
  }
  .contact-options {
    grid-template-columns: 1fr;
  }
  .contact-option {
    padding: 24px;
  }
  .contact-signoff {
    grid-template-columns: 1fr;
    padding: 0 22px 42px;
    text-align: center;
    gap: 8px;
  }
  .contact-signoff svg {
    height: 22px;
  }
  .contact-signoff svg:last-child {
    scale: -1 1;
  }
  .contact-signoff p {
    white-space: normal;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-submit,
  .contact-option__button {
    transition: none;
  }
}
