.contact-page {
  background: var(--paper);
}

.header-contact[aria-current='page'] {
  border-color: var(--copper);
  background: var(--copper);
}

.contact-hero {
  position: relative;
  min-height: 890px;
  overflow: hidden;
  background: var(--navy-950);
  color: white;
  isolation: isolate;
}

.contact-hero::after {
  position: absolute;
  z-index: -2;
  right: 0;
  bottom: 0;
  width: 38%;
  height: calc(100% - 116px);
  background: var(--copper);
  content: '';
}

.contact-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.09;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: calc((100vw - 96px) / 6) 100%;
  background-position: 48px 0;
  mask-image: linear-gradient(90deg, black 0%, black 66%, transparent 88%);
}

.contact-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(410px, 0.72fr);
  align-items: center;
  gap: clamp(70px, 9vw, 145px);
  min-height: 774px;
  padding: 54px 0 70px;
}

.contact-hero__copy {
  position: relative;
  z-index: 2;
}

.contact-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  color: var(--copper-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-hero__eyebrow i {
  width: 58px;
  height: 1px;
  background: rgba(225, 161, 125, 0.5);
}

.contact-hero h1 {
  max-width: 870px;
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4.8rem, 7.6vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-wrap: balance;
}

.contact-hero h1 em {
  display: block;
  color: var(--copper-light);
  font-weight: 400;
}

.contact-hero__copy > p {
  max-width: 620px;
  margin: 40px 0 0 min(8vw, 112px);
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-hero__anchor {
  display: inline-flex;
  gap: 14px;
  margin: 34px 0 0 min(8vw, 112px);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(225, 161, 125, 0.52);
  color: var(--copper-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 610px;
  margin: 34px 0 -70px;
  overflow: visible;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.25);
}

.contact-hero__visual::before {
  position: absolute;
  z-index: 2;
  inset: -20px 20px 20px -20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  content: '';
  pointer-events: none;
}

.contact-hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.contact-hero__visual figcaption {
  position: absolute;
  z-index: 3;
  right: -30px;
  bottom: 34px;
  width: 76%;
  padding: 24px 28px;
  background: rgba(3, 13, 24, 0.94);
}

.contact-hero__visual figcaption span {
  display: block;
  margin-bottom: 6px;
  color: var(--copper-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-hero__visual figcaption strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.contact-channels {
  padding: 160px 0 172px;
  background: var(--paper);
}

.contact-channels__heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 72px;
}

.contact-channels h2,
.contact-message h2,
.contact-location h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4rem, 6.4vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.87;
}

.contact-channels h2 em,
.contact-message h2 em,
.contact-location h2 em {
  color: var(--copper);
  font-weight: 400;
}

.contact-channels__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(13, 37, 59, 0.15);
}

.channel-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 38px 38px 42px;
  border-right: 1px solid rgba(13, 37, 59, 0.15);
}

.channel-card:last-child {
  border-right: 0;
}

.channel-card--featured {
  background: var(--navy-900);
  color: white;
}

.channel-card__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.channel-card--featured .channel-card__top {
  color: var(--copper-light);
}

.channel-card h3 {
  margin: 82px 0 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.9rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.channel-card__value {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.channel-card--featured .channel-card__value {
  color: rgba(255, 255, 255, 0.76);
}

.channel-card__action {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(13, 37, 59, 0.16);
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.channel-card--featured .channel-card__action {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--copper-light);
}

.contact-message {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--navy-900);
  color: white;
}

.contact-message__mark {
  position: absolute;
  top: -80px;
  left: -120px;
  width: 440px;
  opacity: 0.055;
  transform: rotate(-12deg);
}

.contact-message__mark img {
  width: 100%;
}

.contact-message__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(500px, 0.72fr);
  align-items: start;
  gap: clamp(80px, 10vw, 160px);
}

.contact-message__copy {
  position: sticky;
  top: 46px;
}

.contact-message__cta {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 5vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.055);
}

.contact-message__cta > span {
  margin-bottom: 28px;
  color: var(--copper-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-message__cta h3 {
  max-width: 520px;
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 0.96;
}

.contact-message__cta p {
  max-width: 540px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.78;
}

.contact-message__cta small {
  max-width: 500px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  line-height: 1.65;
}

.contact-message h2 {
  margin-top: 34px;
}

.contact-message h2 em {
  display: block;
  color: var(--copper-light);
}

.contact-message__copy > p {
  max-width: 560px;
  margin: 34px 0 54px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-message__steps {
  max-width: 560px;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.contact-message__steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-message__steps span {
  color: var(--copper-light);
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-message__steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-form--complete {
  position: relative;
  z-index: 1;
  padding: 48px 50px 52px;
}

.contact-form--complete .contact-form__top {
  font-size: 0.75rem;
}

.contact-form--complete .form-field {
  position: relative;
  margin-bottom: 26px;
}

.contact-form--complete .form-field label,
.contact-preference legend {
  font-size: 0.75rem;
}

.contact-form--complete .form-field label span {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form--complete .form-field input,
.contact-form--complete .form-field select,
.contact-form--complete .form-field textarea {
  min-height: 46px;
  font-size: 1rem;
}

.contact-form--complete .form-field textarea {
  min-height: 118px;
}

.form-field__error,
.form-consent__error {
  display: block;
  min-height: 17px;
  padding-top: 6px;
  color: #a33f27;
  font-size: 0.75rem;
}

.form-field:has(:invalid:not(:focus):not(:placeholder-shown)) input,
.form-field:has(:invalid:not(:focus)) select {
  border-color: #a33f27;
}

.contact-preference {
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.contact-preference legend {
  margin-bottom: 15px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-preference > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-preference label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(13, 37, 59, 0.16);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
}

.contact-preference label:has(input:checked) {
  border-color: var(--copper);
  background: rgba(201, 111, 67, 0.07);
  color: var(--navy-800);
}

.contact-preference input {
  accent-color: var(--copper);
}

.contact-form--complete .form-consent {
  font-size: 0.8rem;
}

.contact-form--complete .form-consent a {
  color: var(--navy-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form--complete .contact-form__submit {
  margin-top: 24px;
}

.contact-form__notice {
  margin: 20px 0 0;
  color: rgba(96, 112, 124, 0.78);
  font-size: 0.75rem;
  line-height: 1.65;
  text-align: center;
}

.contact-location {
  position: relative;
  overflow: hidden;
  padding: 160px 0 170px;
  background: var(--paper);
}

.contact-location::after {
  position: absolute;
  z-index: 0;
  right: -190px;
  bottom: -340px;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 111, 67, 0.18);
  content: '';
  transform: rotate(45deg);
}

.contact-location__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(480px, 0.95fr) minmax(0, 0.76fr);
  align-items: center;
  gap: clamp(80px, 10vw, 160px);
}

.contact-location__map {
  position: relative;
  min-height: 620px;
  padding: 20px 0 0 20px;
}

.contact-location__map::before {
  position: absolute;
  inset: 0 20px 20px 0;
  border: 1px solid rgba(201, 111, 67, 0.35);
  content: '';
}

.contact-location__map iframe {
  position: relative;
  width: 100%;
  height: 600px;
  border: 0;
  filter: grayscale(1) sepia(0.18) contrast(0.92);
}

.contact-location__map > span {
  position: absolute;
  right: -20px;
  bottom: 38px;
  padding: 14px 18px;
  background: var(--navy-900);
  color: var(--copper-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-location h2 {
  margin: 30px 0 34px;
}

.contact-location h2 em {
  display: block;
}

.contact-location__copy > p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.contact-location address {
  margin: 38px 0 36px;
  padding: 28px 0;
  border-top: 1px solid rgba(13, 37, 59, 0.15);
  border-bottom: 1px solid rgba(13, 37, 59, 0.15);
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.8;
}

.contact-location address span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-800);
  font-weight: 700;
}

.button--outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid rgba(13, 37, 59, 0.28);
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button--outline-dark:hover,
.button--outline-dark:focus-visible {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: white;
}

@media (max-width: 1120px) {
  .contact-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.68fr);
    gap: 60px;
  }

  .contact-message__layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(470px, 0.8fr);
    gap: 70px;
  }

  .contact-location__layout {
    grid-template-columns: minmax(420px, 0.9fr) minmax(0, 0.75fr);
    gap: 70px;
  }
}

@media (max-width: 900px) {
  .contact-hero {
    min-height: 920px;
  }

  .contact-hero::after {
    width: 29%;
    height: 62%;
  }

  .contact-hero__layout {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .contact-hero__copy {
    max-width: 760px;
  }

  .contact-hero__visual {
    width: min(82%, 620px);
    min-height: 460px;
    margin: 20px 0 -70px auto;
  }

  .contact-channels__heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-channels__grid {
    grid-template-columns: 1fr;
  }

  .channel-card {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 37, 59, 0.15);
  }

  .channel-card:last-child {
    border-bottom: 0;
  }

  .contact-message__layout,
  .contact-location__layout {
    grid-template-columns: 1fr;
  }

  .contact-message__copy {
    position: static;
    max-width: 700px;
  }

  .contact-form--complete {
    max-width: 700px;
    margin-left: auto;
  }

  .contact-location__map {
    width: min(90%, 650px);
  }

  .contact-location__copy {
    max-width: 700px;
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  .contact-hero {
    min-height: 900px;
  }

  .contact-hero::after {
    width: 34%;
    height: 48%;
  }

  .contact-hero__grid {
    background-size: calc((100vw - 40px) / 4) 100%;
    background-position: 20px 0;
  }

  .contact-hero__layout {
    padding: 74px 0 54px;
  }

  .contact-hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.2rem);
  }

  .contact-hero__copy > p,
  .contact-hero__anchor {
    margin-left: 0;
  }

  .contact-hero__visual {
    width: calc(100% - 18px);
    min-height: 360px;
    margin-top: 34px;
  }

  .contact-hero__visual figcaption {
    right: -18px;
    width: 84%;
  }

  .contact-channels,
  .contact-message,
  .contact-location {
    padding-top: 94px;
    padding-bottom: 100px;
  }

  .contact-channels h2,
  .contact-message h2,
  .contact-location h2 {
    font-size: clamp(3.35rem, 15vw, 4.7rem);
  }

  .channel-card {
    min-height: 280px;
    padding: 30px 26px 34px;
  }

  .channel-card h3 {
    margin-top: 58px;
  }

  .contact-message__layout {
    gap: 58px;
  }

  .contact-form--complete {
    padding: 38px 26px 42px;
  }

  .contact-form--complete .contact-form__top,
  .contact-form--complete .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form--complete .contact-form__top {
    display: grid;
    gap: 8px;
  }

  .contact-preference > div {
    display: grid;
  }

  .contact-location__map {
    width: calc(100% - 12px);
    min-height: 430px;
    padding: 12px 0 0 12px;
  }

  .contact-location__map iframe {
    height: 418px;
  }

  .contact-location__map > span {
    right: -12px;
    bottom: 24px;
  }
}
