.conversation-body {
  min-width: 320px;
  background: #f7f2e8;
}

.conversation-body .site-header { background: rgba(252, 250, 245, .96); }

.conversation-body .nav-cta[aria-current="page"] {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.conversation-page {
  overflow: hidden;
  background: linear-gradient(#fdfbf6, #f5efe3);
}

.conversation-section {
  position: relative;
  padding: clamp(52px, 5vw, 80px) 0 clamp(80px, 8vw, 126px);
}

.conversation-shell {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr);
  align-items: start;
  gap: clamp(58px, 7vw, 108px);
}

.conversation-intro {
  position: sticky;
  top: 46px;
  padding-top: 0;
}

.conversation-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .22em;
}

.conversation-eyebrow span {
  width: 38px;
  height: 2px;
  background: #d9aa3f;
}

.conversation-intro h1 {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--navy);
  font-size: clamp(54px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.conversation-lead {
  max-width: 560px;
  margin: 27px 0 0;
  color: #173f54;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.3;
}

.conversation-support {
  max-width: 570px;
  margin: 16px 0 0;
  color: #405c6a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.67;
}

.direct-contact {
  max-width: 500px;
  margin-top: 34px;
  padding: 23px 0 23px 22px;
  display: grid;
  gap: 15px;
  border-top: 1px solid rgba(8, 43, 66, .15);
  border-bottom: 1px solid rgba(8, 43, 66, .15);
  border-left: 2px solid #d9aa3f;
}

.direct-contact > p {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 750;
}

.direct-contact a {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--navy);
  text-decoration: none;
}

.direct-contact a > span {
  color: #6a7b83;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.direct-contact a > strong { font-size: 17px; line-height: 1.4; }
.direct-contact a:hover strong { color: var(--blue-deep); }

.conversation-form-panel {
  position: relative;
  padding: clamp(30px, 3.3vw, 48px);
  border: 1px solid rgba(8, 43, 66, .17);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 28px 64px rgba(28, 46, 53, .1);
}

.conversation-form-panel::before {
  position: absolute;
  top: -1px;
  left: clamp(30px, 3.3vw, 48px);
  width: 94px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #d9aa3f 0 42%, var(--blue) 42% 100%);
}

.form-panel-heading {
  padding-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(8, 43, 66, .13);
}

.form-panel-heading > span {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .19em;
}

.form-panel-heading > p {
  max-width: 320px;
  margin: 0;
  color: #60737d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.45;
  text-align: right;
}

#consultation-form { margin-top: 29px; }

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

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

.form-field { min-width: 0; }
.form-field-wide { grid-column: 1 / -1; }

.form-field > label,
.form-choice-group > legend {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: .045em;
}

.form-field > label { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }

.form-field > label > span:not(.optional-label),
.form-choice-group > legend > span:not(.optional-label) { color: #a66c1b; }

.optional-label {
  color: #75858d;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(8, 43, 66, .22);
  border-radius: 5px;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-size: 17px;
  line-height: 1.45;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"] {
  height: 54px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 154px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 121, 186, .14);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #a23b32;
  background: #fffaf8;
  box-shadow: 0 0 0 2px rgba(162, 59, 50, .1);
}

.field-helper {
  margin: -2px 0 10px;
  color: #667b85;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.5;
}

.field-error {
  min-height: 18px;
  margin: 6px 0 0;
  color: #8d2e27;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.form-choice-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.choice-row label { position: relative; cursor: pointer; }
.choice-row input { position: absolute; opacity: 0; }

.choice-row label > span {
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 43, 66, .19);
  border-radius: 4px;
  color: #3f5a68;
  background: #fff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.choice-row input:checked + span {
  color: var(--navy);
  border-color: var(--blue);
  background: rgba(8, 121, 186, .07);
  box-shadow: inset 0 -2px 0 var(--blue);
}

.choice-row input:focus-visible + span {
  outline: 3px solid rgba(8, 121, 186, .3);
  outline-offset: 2px;
}

.choice-row-timeline label > span { min-height: 48px; }

.form-error-summary,
.submission-error {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-left: 3px solid #a23b32;
  color: #6f2823;
  background: #fff3ef;
  font-size: 15px;
  line-height: 1.5;
}

.submission-error { margin: 22px 0 0; }
.submission-error strong { color: #6f2823; }
.submission-error p { margin: 5px 0 0; }
.submission-error a { color: #6f2823; font-weight: 750; }

.form-submit-area {
  margin-top: 30px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: minmax(235px, auto) 1fr;
  align-items: center;
  gap: 23px;
  border-top: 1px solid rgba(8, 43, 66, .13);
}

.conversation-submit {
  min-height: 58px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(8, 121, 186, .2);
  font: inherit;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: .045em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.conversation-submit svg { width: 18px; flex: 0 0 auto; }
.conversation-submit:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 16px 34px rgba(8, 121, 186, .25); }
.conversation-submit:disabled { opacity: .68; cursor: wait; transform: none; }

.conversation-submit:focus-visible,
.direct-contact a:focus-visible,
.form-consent a:focus-visible,
.conversation-success a:focus-visible,
.footer-legal a:focus-visible {
  outline: 3px solid rgba(8, 121, 186, .35);
  outline-offset: 3px;
}

.form-submit-area > p {
  margin: 0;
  color: #5a6f79;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.5;
}

.form-consent {
  margin: 18px 0 0;
  color: #718089;
  font-size: 12.5px;
  line-height: 1.5;
}

.form-consent a { color: #315a70; font-weight: 700; }

.conversation-success {
  min-height: 590px;
  padding: clamp(28px, 4vw, 58px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.conversation-success[hidden] { display: none; }

.success-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 121, 186, .3);
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 23px;
  font-weight: 800;
}

.success-eyebrow {
  margin: 26px 0 0;
  color: #a66c1b;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .2em;
}

.conversation-success h2 {
  margin: 13px 0 0;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -.035em;
}

.conversation-success > p:not(.success-eyebrow) {
  max-width: 560px;
  margin: 21px 0 0;
  color: #48626f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.6;
}

.conversation-success > p + p { margin-top: 8px !important; }

.success-secondary {
  margin-top: 34px;
  padding-top: 23px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(8, 43, 66, .14);
}

.success-secondary > span { color: #697b83; font-size: 14px; }

.success-secondary a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
}

.success-secondary a span { color: #d9aa3f; }
.footer-legal a { color: inherit; text-decoration: none; }
.footer-legal a:hover { color: #fffaf0; }

@media (max-width: 1080px) {
  .conversation-shell {
    width: min(760px, calc(100% - 48px));
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .conversation-intro { position: static; padding-top: 0; }
  .conversation-support { max-width: 680px; }
  .direct-contact { max-width: 680px; grid-template-columns: 1fr 1fr; }
  .direct-contact > p { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .conversation-section { padding: 40px 0 68px; }
  .conversation-shell { width: calc(100% - 36px); gap: 40px; }
  .conversation-eyebrow { font-size: 12px; letter-spacing: .18em; }
  .conversation-intro h1 { margin-top: 20px; font-size: clamp(46px, 13vw, 58px); }
  .conversation-lead { margin-top: 24px; font-size: 23px; }
  .conversation-support { font-size: 18px; line-height: 1.62; }
  .direct-contact { margin-top: 30px; padding: 20px 0 20px 18px; grid-template-columns: 1fr; }
  .direct-contact > p { grid-column: auto; }
  .direct-contact a > strong { overflow-wrap: anywhere; }
  .conversation-form-panel { padding: 27px 20px 25px; border-radius: 9px; }
  .conversation-form-panel::before { left: 20px; }
  .form-panel-heading { padding-bottom: 20px; align-items: flex-start; flex-direction: column; gap: 8px; }
  .form-panel-heading > p { text-align: left; }
  #consultation-form { margin-top: 24px; }
  .form-grid { grid-template-columns: 1fr; gap: 19px; }
  .form-field-wide { grid-column: auto; }
  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="tel"] { height: 54px; font-size: 16px; }
  .form-field textarea { font-size: 16px; }
  .choice-row { display: grid; grid-template-columns: 1fr 1fr; }
  .choice-row label > span { width: 100%; padding-inline: 10px; }
  .choice-row-timeline { grid-template-columns: 1fr; }
  .form-submit-area { margin-top: 24px; padding-top: 22px; grid-template-columns: 1fr; gap: 14px; }
  .conversation-submit { width: 100%; min-height: 56px; }
  .form-consent { font-size: 13px; }
  .conversation-success { min-height: 500px; }
  .success-secondary { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .conversation-submit,
  .form-field input,
  .form-field textarea,
  .choice-row label > span { transition: none; }
}
