.contact-main {
  background: var(--white);
}

.contact-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.contact-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  color: var(--muted);
  font-size: 11px;
  overflow-x: auto;
  white-space: nowrap;
}

.contact-breadcrumbs a {
  color: var(--navy);
}

.contact-breadcrumbs i {
  color: #8e9aa3;
  font-size: 10px;
}

.contact-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #edf3f6;
}

.contact-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 500px;
}

.contact-hero__copy {
  width: min(48%, 570px);
  padding: 54px 0 66px;
}

.contact-kicker,
.contact-guide__kicker {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-hero h1 {
  margin: 0;
  color: #111820;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.35;
}

.contact-hero__copy > p:not(.contact-kicker) {
  max-width: 540px;
  margin: 22px 0 0;
  color: #34414b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.95;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-facts {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.contact-facts__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.contact-fact {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 17px;
  min-width: 0;
  min-height: 145px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.contact-fact > i {
  color: var(--navy);
  font-size: 32px;
  line-height: 1;
}

.contact-fact span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.contact-fact strong {
  display: block;
  color: #202c35;
  font-size: 19px;
  line-height: 1.5;
}

.contact-fact p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.contact-section {
  padding: 88px 0 96px;
  background: var(--surface);
}

.contact-advice,
.contact-faq-section {
  padding: 88px 0 96px;
  background: var(--white);
}

.contact-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.45;
}

.contact-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.contact-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-scope-card {
  min-width: 0;
  padding: 30px 25px 28px;
  background: var(--white);
  border-top: 3px solid var(--navy);
}

.contact-scope-card > span {
  display: block;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.contact-scope-card h3 {
  margin: 13px 0 0;
  color: #202c35;
  font-size: 19px;
  line-height: 1.5;
}

.contact-scope-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.contact-scope-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.contact-prep {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 2fr);
  gap: 42px;
  margin-top: 34px;
  padding: 34px;
  color: var(--white);
  background: var(--footer);
}

.contact-prep .contact-kicker {
  color: #a8cbe7;
}

.contact-prep h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.5;
}

.contact-prep > div > p:last-child {
  margin: 12px 0 0;
  color: #c7d1d8;
  font-size: 11px;
  line-height: 1.8;
}

.contact-prep ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-prep li {
  padding: 10px 0;
  border-bottom: 1px solid #596873;
}

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

.contact-prep li strong {
  font-size: 11px;
}

.contact-prep li span {
  margin-top: 3px;
  color: #c7d1d8;
  font-size: 10px;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 30%) minmax(0, 70%);
  align-items: start;
  gap: 48px;
}

.contact-guide {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding-top: 28px;
  border-top: 3px solid var(--navy);
}

.contact-guide h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-guide ul {
  margin: 25px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contact-guide li {
  display: flex;
  gap: 11px;
  padding: 14px 2px;
  color: #394650;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.7;
}

.contact-guide li i {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 17px;
}

.contact-guide__note {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  margin-top: 26px;
  padding: 20px;
  color: #dce6ed;
  background: var(--footer);
}

.contact-guide__note > i {
  color: #83b4dc;
  font-size: 24px;
}

.contact-guide__note p {
  margin: 0;
}

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

.contact-guide__note strong {
  color: var(--white);
  font-size: 12px;
  line-height: 1.6;
}

.contact-guide__note span {
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.75;
}

.eht-static-contact-form {
  min-width: 0;
  padding: 0 38px;
  background: var(--white);
  border: 1px solid var(--line);
}

.eht-form-section {
  padding: 42px 0 46px;
  border-bottom: 1px solid var(--line);
}

.eht-form-section:last-child {
  border-bottom: 0;
}

.eht-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.eht-section-heading__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--navy);
  font-size: 10px;
  font-weight: 700;
}

.eht-section-heading h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
}

.eht-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 22px;
}

.eht-field {
  min-width: 0;
}

.eht-field--full {
  grid-column: 1 / -1;
}

.eht-field > label,
.eht-field > div + label {
  display: block;
  margin-bottom: 9px;
  color: #293640;
  font-size: 12px;
  font-weight: 700;
}

.eht-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 19px;
  margin-left: 7px;
  padding: 1px 6px;
  font-size: 9px;
  font-weight: 700;
  vertical-align: 1px;
}

.eht-badge--required {
  color: var(--white);
  background: var(--navy);
}

.eht-badge--optional {
  color: #5d6872;
  background: #e9edef;
}

.eht-field input,
.eht-field textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfcfc;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.eht-field input {
  height: 52px;
  padding: 10px 14px;
}

.eht-field textarea {
  min-height: 190px;
  padding: 14px 15px 42px;
  line-height: 1.8;
  resize: vertical;
}

.eht-field input::placeholder,
.eht-field textarea::placeholder {
  color: #919ba3;
}

.eht-field input:hover,
.eht-field textarea:hover {
  border-color: #82909a;
}

.eht-field input:focus,
.eht-field textarea:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 63, 125, 0.11);
}

.eht-textarea-wrap {
  position: relative;
  display: block;
}

.eht-message-count {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  pointer-events: none;
}

.eht-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 22px;
  color: #35424c;
  font-size: 12px;
  line-height: 1.8;
  cursor: pointer;
}

.eht-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

.eht-file-drop {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 102px;
  padding: 20px 22px;
  color: #31404a;
  background: #f8fafb;
  border: 1px dashed #9eabb5;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.eht-file-drop:hover,
.eht-file-drop.is-dragover {
  background: #eef4f8;
  border-color: var(--navy);
}

.eht-file-drop > i {
  color: var(--navy);
  font-size: 29px;
}

.eht-file-drop__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.eht-file-drop__main,
.eht-file-drop__sub,
.eht-file-name {
  display: block;
}

.eht-file-drop__main {
  font-size: 13px;
  font-weight: 700;
}

.eht-file-drop__sub,
.eht-file-name {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.eht-file-name {
  color: #34414b;
}

.eht-file-drop__action {
  min-width: 118px;
  padding: 9px 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--navy);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.eht-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.eht-submit-area {
  display: grid;
  justify-items: start;
  gap: 18px;
  margin-top: 28px;
}

.eht-contact-status {
  width: 100%;
  margin: 0;
  padding: 13px 15px;
  background: #f5f8fa;
  border-left: 3px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

.eht-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 270px;
  min-height: 58px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.eht-submit-button:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.eht-submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.contact-phone {
  color: var(--white);
  background: var(--footer);
}

.contact-phone__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  min-height: 280px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact-phone .contact-kicker {
  color: #84b7df;
}

.contact-phone h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 43px);
  font-weight: 600;
  line-height: 1.4;
}

.contact-phone p:not(.contact-kicker) {
  max-width: 620px;
  margin: 14px 0 0;
  color: #c1ccd3;
  font-size: 13px;
}

.contact-phone__inner > div:last-child {
  flex: 0 0 auto;
  padding: 24px 0 24px 35px;
  border-left: 1px solid #64717a;
}

.contact-phone__inner > div:last-child span {
  display: block;
  color: #b8c4cb;
  font-size: 11px;
}

.contact-phone__inner > div:last-child a {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.contact-faq {
  border-top: 1px solid var(--line-dark);
}

.contact-faq details {
  border-bottom: 1px solid var(--line);
}

.contact-faq summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
}

.contact-faq summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 12px;
  font-size: 22px;
  font-weight: 400;
}

.contact-faq details[open] summary::after {
  content: "−";
}

.contact-faq p {
  max-width: 920px;
  margin: 0;
  padding: 0 48px 22px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.contact-faq a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .contact-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: minmax(210px, 28%) minmax(0, 72%);
    gap: 30px;
  }

  .eht-static-contact-form {
    padding-inline: 28px;
  }

  .contact-fact {
    padding-inline: 20px;
  }
}

@media (max-width: 760px) {
  .contact-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .contact-breadcrumbs {
    min-height: 46px;
  }

  .contact-hero,
  .contact-hero__inner {
    min-height: 520px;
  }

  .contact-hero__image {
    object-position: 64% center;
    opacity: 0.28;
  }

  .contact-hero__copy {
    width: 100%;
    padding: 56px 0 66px;
  }

  .contact-hero h1 {
    font-size: 40px;
  }

  .contact-hero__copy > p:not(.contact-kicker) {
    max-width: 560px;
    color: #27343e;
    font-size: 14px;
  }

  .contact-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-hero__actions .button {
    width: 100%;
  }

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

  .contact-fact {
    min-height: 112px;
    padding: 23px 20px;
    border-bottom: 1px solid var(--line);
  }

  .contact-fact:last-child {
    border-bottom: 0;
  }

  .contact-section {
    padding: 62px 0 70px;
  }

  .contact-advice,
  .contact-faq-section {
    padding: 62px 0 70px;
  }

  .contact-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
  }

  .contact-heading h2 {
    font-size: 30px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .contact-prep {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 27px 22px;
  }

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

  .contact-guide {
    position: static;
  }

  .contact-guide__note {
    margin-top: 20px;
  }

  .eht-static-contact-form {
    padding-inline: 20px;
  }

  .eht-form-section {
    padding: 34px 0 38px;
  }

  .eht-form-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .eht-file-drop {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 18px;
  }

  .eht-file-drop__action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .eht-submit-button {
    width: 100%;
    min-width: 0;
  }

  .contact-phone__inner {
    align-items: stretch;
    flex-direction: column;
    min-height: 0;
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .contact-phone__inner > div:last-child {
    padding: 22px 0 0;
    border-top: 1px solid #64717a;
    border-left: 0;
  }
}

@media (max-width: 430px) {
  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-heading h2 {
    font-size: 28px;
  }

  .eht-static-contact-form {
    padding-inline: 16px;
  }

  .eht-section-heading h2 {
    font-size: 19px;
  }

  .contact-phone__inner > div:last-child a {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eht-submit-button,
  .eht-field input,
  .eht-field textarea,
  .eht-file-drop {
    transition: none;
  }
}
