.coyote-contact-v2 {
  --ccn-dark: #12100d;
  --ccn-dark-soft: #211d17;
  --ccn-on-dark: #fffaf0;
  --ccn-on-dark-muted: #d5cdbf;
  --ccn-paper: #fffdf7;
  --ccn-paper-warm: #f8f3e9;
  --ccn-ivory: #f3eee4;
  --ccn-warm: #e9dfcf;
  --ccn-ink: #1c1915;
  --ccn-muted: #5e574e;
  --ccn-subtle: #756d62;
  --ccn-gold: #e8ad16;
  --ccn-gold-light: #f4cf67;
  --ccn-gold-ink: #6f5206;
  --ccn-line: rgba(28, 25, 21, 0.17);
  --ccn-line-strong: rgba(28, 25, 21, 0.3);
  --ccn-line-dark: rgba(244, 207, 103, 0.25);
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background: var(--ccn-ivory);
  color: var(--ccn-ink);
  font-family: inherit;
}

.coyote-contact-v2 *,
.coyote-contact-v2 *::before,
.coyote-contact-v2 *::after {
  box-sizing: border-box;
}

.coyote-contact-v2 :where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--ccn-gold-light);
  outline-offset: 4px;
}

.coyote-contact-v2__shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.coyote-contact-v2__eyebrow,
.coyote-contact-v2__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 20px;
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 3px;
  color: var(--ccn-gold-ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
}

.coyote-contact-v2__button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px !important;
  border: 1px solid transparent !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none !important;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.coyote-contact-v2__button--primary {
  border-color: var(--ccn-dark) !important;
  background: var(--ccn-dark) !important;
  color: var(--ccn-on-dark) !important;
}

.coyote-contact-v2__button--secondary {
  border-color: var(--ccn-dark) !important;
  background: transparent !important;
  color: var(--ccn-ink) !important;
}

.coyote-contact-v2__button:hover {
  transform: translateY(-2px);
}

.coyote-contact-v2__button--primary:hover,
.coyote-contact-v2__button--secondary:hover {
  border-color: var(--ccn-gold) !important;
  background: var(--ccn-gold) !important;
  color: var(--ccn-dark) !important;
}

.coyote-contact-v2__hero {
  position: relative;
  padding: clamp(82px, 7vw, 108px) 0 clamp(72px, 6vw, 94px);
  overflow: hidden;
  background: var(--ccn-ivory);
}

.coyote-contact-v2__hero::before,
.coyote-contact-v2__hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.coyote-contact-v2__hero::before {
  top: 0;
  right: max(24px, calc((100vw - 1240px) / 2));
  width: 1px;
  height: 100%;
  background: rgba(28, 25, 21, 0.11);
}

.coyote-contact-v2__hero::after {
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 24px;
  width: 58px;
  height: 8px;
  background: var(--ccn-gold);
}

.coyote-contact-v2__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  gap: clamp(48px, 6vw, 86px);
  align-items: center;
}

.coyote-contact-v2__hero-copy {
  container-type: inline-size;
}

.coyote-contact-v2__overline {
  margin: 0 0 12px;
  color: var(--ccn-muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.coyote-contact-v2__title {
  margin: 0;
  color: var(--ccn-dark);
  font-size: clamp(48px, 5.4vw, 76px);
  font-size: min(76px, 11cqi);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.04;
}

.coyote-contact-v2__title span {
  display: block;
  width: max-content;
  max-width: 100%;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: normal;
}

.coyote-contact-v2__title span:first-child {
  font-size: 0.76em;
  letter-spacing: -0.045em;
  line-height: 1.24;
}

.coyote-contact-v2__title span:last-child {
  color: var(--ccn-gold-ink);
}

.coyote-contact-v2__lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--ccn-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 650;
  line-height: 1.9;
  text-wrap: pretty;
  word-break: auto-phrase;
}

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

.coyote-contact-v2__route-map {
  position: relative;
  padding: 22px;
  border: 1px solid var(--ccn-line-dark);
  border-radius: 4px;
  background: var(--ccn-dark);
  box-shadow: 0 28px 60px rgba(36, 27, 14, 0.2);
  color: var(--ccn-on-dark);
}

.coyote-contact-v2__route-map::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(244, 207, 103, 0.08);
  content: "";
  pointer-events: none;
}

.coyote-contact-v2__route-map-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--ccn-line-dark);
}

.coyote-contact-v2__route-map-head span,
.coyote-contact-v2__route-map-head strong {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.coyote-contact-v2__route-map-head span {
  color: var(--ccn-gold-light);
}

.coyote-contact-v2__route-map-head strong {
  color: #bdb4a4;
}

.coyote-contact-v2__route-map ol {
  position: relative;
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.coyote-contact-v2__route-map li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  min-height: 66px;
  border: 1px solid var(--ccn-line-dark);
  background: #181510;
}

.coyote-contact-v2__route-map li > span {
  display: grid;
  place-items: center;
  align-self: stretch;
  border-right: 1px solid var(--ccn-line-dark);
  color: var(--ccn-gold-light);
  font-size: 11px;
  font-weight: 900;
}

.coyote-contact-v2__route-map li div {
  display: grid;
  grid-template-columns: minmax(100px, 0.46fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 11px 15px;
}

.coyote-contact-v2__route-map li strong {
  color: var(--ccn-on-dark);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.coyote-contact-v2__route-map li small {
  color: var(--ccn-on-dark-muted);
  font-size: 12px;
  font-weight: 650;
}

.coyote-contact-v2__section-head {
  margin-bottom: clamp(34px, 4vw, 52px);
}

.coyote-contact-v2__section-head--row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: end;
}

.coyote-contact-v2__section-head--row > div {
  min-width: 0;
  container-type: inline-size;
}

.coyote-contact-v2__section-head h2,
.coyote-contact-v2__prepare-copy h2,
.coyote-contact-v2__form-copy h2,
.coyote-contact-v2__safe-heading h2,
.coyote-contact-v2__security-panel h2,
.coyote-contact-v2__next-head h2 {
  margin: 0;
  color: var(--ccn-dark);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.2;
  text-wrap: balance;
  word-break: auto-phrase;
}

.coyote-contact-v2__section-head h2 {
  font-size: clamp(34px, 3.4vw, 46px);
  font-size: min(46px, 5.3cqi);
  white-space: nowrap;
}

.coyote-contact-v2__section-head > p,
.coyote-contact-v2__prepare-copy > p:not(.coyote-contact-v2__kicker),
.coyote-contact-v2__form-copy > p:not(.coyote-contact-v2__kicker),
.coyote-contact-v2__safe-heading > p:not(.coyote-contact-v2__kicker),
.coyote-contact-v2__security-panel p:not(.coyote-contact-v2__kicker),
.coyote-contact-v2__next-head > p:not(.coyote-contact-v2__kicker) {
  margin: 0;
  color: var(--ccn-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.9;
  text-wrap: pretty;
  word-break: auto-phrase;
}

.coyote-contact-v2__routes {
  padding: clamp(74px, 7vw, 104px) 0;
  border-top: 1px solid var(--ccn-line);
  border-bottom: 1px solid var(--ccn-line);
  background: var(--ccn-paper-warm);
}

.coyote-contact-v2__route-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--ccn-line-strong);
  border-left: 1px solid var(--ccn-line-strong);
}

.coyote-contact-v2__route-card {
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  min-width: 0;
  padding: clamp(24px, 2.8vw, 34px);
  border-right: 1px solid var(--ccn-line-strong);
  border-bottom: 1px solid var(--ccn-line-strong);
  border-radius: 0;
  background: var(--ccn-paper);
}

.coyote-contact-v2__route-card:nth-child(4),
.coyote-contact-v2__route-card:nth-child(5) {
  grid-column: span 3;
}

.coyote-contact-v2__card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ccn-line);
}

.coyote-contact-v2__card-head span,
.coyote-contact-v2__card-head strong {
  color: var(--ccn-gold-ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.coyote-contact-v2__card-head strong {
  color: var(--ccn-subtle);
}

.coyote-contact-v2__route-card h3 {
  margin: 24px 0 0;
  color: var(--ccn-dark);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.coyote-contact-v2__route-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.coyote-contact-v2__route-card li {
  padding: 5px 9px;
  border: 1px solid var(--ccn-line);
  border-radius: 2px;
  background: var(--ccn-paper-warm);
  color: var(--ccn-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.coyote-contact-v2__card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: auto;
  padding-top: 26px;
}

.coyote-contact-v2__card-links a {
  display: inline-flex !important;
  align-items: center;
  min-height: 44px;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ccn-dark) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ccn-dark) !important;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none !important;
}

.coyote-contact-v2__card-links a:hover,
.coyote-contact-v2__card-links a:focus-visible {
  border-color: var(--ccn-gold) !important;
  color: var(--ccn-gold-ink) !important;
}

.coyote-contact-v2__card-note {
  margin: auto 0 0;
  padding-top: 26px;
  color: var(--ccn-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.7;
}

.coyote-contact-v2__prepare {
  padding: clamp(80px, 8vw, 112px) 0;
  border-bottom: 1px solid var(--ccn-line);
  background: var(--ccn-ivory);
  scroll-margin-top: 88px;
}

.coyote-contact-v2__prepare-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(48px, 7vw, 94px);
  align-items: start;
}

.coyote-contact-v2__prepare-copy {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 0 clamp(44px, 7vw, 92px);
  align-items: end;
  min-width: 0;
}

.coyote-contact-v2__prepare-copy .coyote-contact-v2__kicker,
.coyote-contact-v2__form-copy .coyote-contact-v2__kicker,
.coyote-contact-v2__safe-heading .coyote-contact-v2__kicker {
  grid-column: 1 / -1;
  justify-self: start;
  width: fit-content;
}

.coyote-contact-v2__prepare-copy h2 {
  grid-column: 1 / -1;
  font-size: clamp(34px, 3.4vw, 46px);
}

.coyote-contact-v2__prepare-copy > p:not(.coyote-contact-v2__kicker) {
  grid-column: 1;
  margin-top: 22px;
}

.coyote-contact-v2__prepare-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  grid-column: 2;
  margin-top: 22px;
}

.coyote-contact-v2__prepare-flow span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--ccn-line-strong);
  background: var(--ccn-paper);
  color: var(--ccn-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.coyote-contact-v2__prepare-flow b {
  color: var(--ccn-gold-ink);
  font-size: 14px;
}

.coyote-contact-v2__checklist {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ccn-line-strong);
  border-left: 1px solid var(--ccn-line-strong);
  list-style: none;
}

.coyote-contact-v2__checklist li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 16px;
  border-right: 1px solid var(--ccn-line-strong);
  border-bottom: 1px solid var(--ccn-line-strong);
  background: var(--ccn-paper);
  color: var(--ccn-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.coyote-contact-v2__checklist li:last-child {
  grid-column: 1 / -1;
}

.coyote-contact-v2__checklist li span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ccn-gold-ink);
  color: var(--ccn-gold-ink);
}

.coyote-contact-v2__checklist li span::before {
  width: 8px;
  height: 8px;
  background: var(--ccn-gold);
  content: "";
}

.coyote-contact-v2__form-section {
  padding: clamp(78px, 7vw, 104px) 0;
  background: var(--ccn-dark);
  scroll-margin-top: 80px;
}

.coyote-contact-v2__form-section:focus {
  outline: none;
}

.coyote-contact-v2__form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.coyote-contact-v2__form-copy {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: 0 clamp(44px, 7vw, 92px);
  align-items: end;
  min-width: 0;
  width: min(980px, 100%);
  margin-inline: auto;
  justify-self: center;
}

.coyote-contact-v2__form-copy .coyote-contact-v2__kicker {
  border-color: var(--ccn-gold-light);
  color: var(--ccn-gold-light);
}

.coyote-contact-v2__form-copy h2 {
  grid-column: 1 / -1;
  color: var(--ccn-on-dark);
  font-size: clamp(34px, 3.4vw, 46px);
}

.coyote-contact-v2__form-copy > p:not(.coyote-contact-v2__kicker) {
  grid-column: 1;
  margin-top: 22px;
  color: var(--ccn-on-dark-muted);
}

.coyote-contact-v2__form-order {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  border-top: 1px solid var(--ccn-line-dark);
  border-left: 1px solid var(--ccn-line-dark);
}

.coyote-contact-v2__form-order span {
  min-height: 42px;
  padding: 12px 14px;
  border-right: 1px solid var(--ccn-line-dark);
  border-bottom: 1px solid var(--ccn-line-dark);
  color: var(--ccn-gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.coyote-contact-v2__form-panel {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(980px, 100%);
  margin-inline: auto;
  min-width: 0;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 4px;
  background: var(--ccn-paper-warm);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
  color: var(--ccn-ink);
}

.coyote-contact-engine {
  position: relative;
  width: 100%;
  margin: 0;
}

.coyote-contact-engine__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.coyote-contact-engine__field {
  min-width: 0;
}

.coyote-contact-engine__field--wide {
  grid-column: 1 / -1;
}

.coyote-contact-engine__products {
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.coyote-contact-engine__products legend {
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  color: var(--ccn-dark);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.65;
}

.coyote-contact-engine__products legend small {
  float: right;
  color: var(--ccn-subtle);
  font-size: 11px;
  font-weight: 700;
}

.coyote-contact-engine__product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.coyote-contact-engine__product-grid label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--ccn-line);
  border-radius: 2px;
  background: #fff;
  color: var(--ccn-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.coyote-contact-engine__product-grid label:has(input:checked) {
  border-color: var(--ccn-gold-ink);
  background: #fff8df;
  box-shadow: inset 4px 0 0 var(--ccn-gold);
}

.coyote-contact-engine__product-grid input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  accent-color: var(--ccn-gold-ink);
}

.coyote-contact-engine__product-grid input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(232, 173, 22, 0.38);
  outline-offset: 3px;
}

.coyote-contact-engine__product-other {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--ccn-line);
  background: #fffdf7;
}

.coyote-contact-engine__product-other[hidden] {
  display: none;
}

.coyote-contact-engine__product-other > label {
  display: block;
  margin-bottom: 7px;
  color: var(--ccn-dark);
  font-size: 13px;
  font-weight: 850;
}

.coyote-contact-engine__attachments input[type="file"] {
  display: block;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 7px;
  border: 1px solid var(--coyote-contact-field-border, #9b9285);
  border-radius: 3px;
  background: #fff;
  color: var(--ccn-dark);
  font-size: 14px;
  line-height: 1.5;
}

.coyote-contact-engine__attachments input[type="file"]::file-selector-button {
  min-height: 36px;
  margin-right: 12px;
  padding: 7px 12px;
  border: 1px solid var(--ccn-dark);
  border-radius: 2px;
  background: var(--ccn-dark);
  color: var(--ccn-on-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.coyote-contact-engine__attachments input[type="file"]:focus-visible {
  border-color: var(--ccn-gold-ink);
  outline: 3px solid rgba(232, 173, 22, 0.28);
  outline-offset: 1px;
}

.coyote-contact-engine__staged-files {
  margin-bottom: 12px;
  padding: 13px 15px;
  border-left: 4px solid var(--ccn-gold);
  background: #fff8df;
}

.coyote-contact-engine__staged-files p,
.coyote-contact-engine__staged-files ul {
  margin: 0;
}

.coyote-contact-engine__staged-files ul {
  margin-top: 7px;
  padding-left: 20px;
}

.coyote-contact-engine__field > label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--ccn-dark);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.65;
}

.coyote-contact-engine__field > label span {
  color: #8f1717;
  font-size: 11px;
  font-weight: 900;
}

.coyote-contact-engine__field > label small {
  color: var(--ccn-subtle);
  font-size: 11px;
  font-weight: 700;
}

.coyote-contact-v2__form-panel .coyote-contact-engine :where(
  input[type="text"],
  input[type="email"],
  input[type="url"],
  textarea,
  select
) {
  width: 100% !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 12px 14px !important;
  border: 1px solid var(--coyote-contact-field-border, #9b9285) !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  color: var(--ccn-dark) !important;
  font: inherit !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.coyote-contact-v2__form-panel .coyote-contact-engine textarea {
  min-height: 180px !important;
  resize: vertical;
}

.coyote-contact-v2__form-panel .coyote-contact-engine :where(
  input[type="text"],
  input[type="email"],
  input[type="url"],
  textarea,
  select
):focus {
  border-color: var(--ccn-gold-ink) !important;
  outline: 0 !important;
  box-shadow: 0 0 0 3px rgba(232, 173, 22, 0.28) !important;
}

.coyote-contact-v2__form-panel .coyote-contact-engine :where(input, textarea)::placeholder {
  color: #70685d !important;
  opacity: 1;
}

.coyote-contact-v2__form-panel .coyote-contact-engine__field.is-invalid input,
.coyote-contact-v2__form-panel .coyote-contact-engine__field.is-invalid textarea,
.coyote-contact-v2__form-panel .coyote-contact-engine__field.is-invalid select,
.coyote-contact-v2__form-panel .coyote-contact-engine__field input[aria-invalid="true"],
.coyote-contact-v2__form-panel .coyote-contact-engine__field textarea[aria-invalid="true"],
.coyote-contact-v2__form-panel .coyote-contact-engine__field select[aria-invalid="true"] {
  --coyote-contact-field-border: #a52222;
  box-shadow: 0 0 0 2px rgba(165, 34, 34, 0.18) !important;
}

.coyote-contact-engine__field-note,
.coyote-contact-engine__field-error {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.65;
}

.coyote-contact-engine__field-note {
  color: var(--ccn-subtle);
  font-weight: 650;
}

.coyote-contact-engine__field-error {
  min-height: 1px;
  color: #8f1717;
  font-weight: 800;
}

.coyote-contact-engine__field-error:empty {
  display: none;
}

.coyote-contact-engine__consent {
  margin-top: 28px;
  padding: 15px 16px;
  border: 1px solid var(--ccn-line-strong);
  background: var(--ccn-paper);
}

.coyote-contact-engine__consent.is-invalid {
  border-color: #a52222;
}

.coyote-contact-engine__consent label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 44px;
  padding: 10px 0;
  color: var(--ccn-dark);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.75;
  cursor: pointer;
}

.coyote-contact-engine__consent input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  margin: 2px 0 0 !important;
  accent-color: var(--ccn-dark);
}

.coyote-contact-engine__consent a {
  color: var(--ccn-gold-ink) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.coyote-contact-engine__submit-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--ccn-line-strong);
}

.coyote-contact-engine__submit-row p {
  max-width: 420px;
  margin: 0;
  color: var(--ccn-muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.7;
}

.coyote-contact-engine__submit,
.coyote-contact-server-review__actions button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 190px !important;
  min-height: 52px !important;
  padding: 0 28px !important;
  border: 1px solid var(--ccn-dark) !important;
  border-radius: 4px !important;
  background: var(--ccn-gold) !important;
  box-shadow: none !important;
  color: var(--ccn-dark) !important;
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
  cursor: pointer;
  opacity: 1 !important;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.coyote-contact-engine__submit:hover,
.coyote-contact-server-review__actions button:hover {
  background: var(--ccn-dark) !important;
  color: var(--ccn-on-dark) !important;
  transform: translateY(-2px);
}

.coyote-contact-engine__submit[disabled],
.coyote-contact-review__send[disabled] {
  cursor: wait !important;
  opacity: 0.65 !important;
  transform: none !important;
}

.coyote-contact-engine__status,
.coyote-contact-review__status {
  min-height: 1.7em;
  margin: 12px 0 0;
  color: var(--ccn-gold-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.coyote-contact-engine__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.coyote-contact-engine__error-summary {
  margin: 0 0 26px;
  padding: 18px 20px;
  border: 1px solid #a52222;
  border-left-width: 6px;
  background: #fff;
  color: #7d1515;
}

.coyote-contact-engine__error-summary h3 {
  margin: 0;
  color: inherit;
  font-size: 18px;
  line-height: 1.5;
}

.coyote-contact-engine__error-summary ul {
  margin: 10px 0 0 1.2em;
  padding: 0;
}

.coyote-contact-engine__error-summary a {
  color: inherit !important;
  text-decoration: underline !important;
}

body.coyote-contact-dialog-open {
  overflow: hidden;
}

.coyote-contact-review {
  width: min(820px, calc(100% - 32px));
  max-width: 820px;
  max-height: min(88vh, 860px);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(244, 207, 103, 0.4);
  border-radius: 4px;
  background: var(--ccn-paper-warm);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
  color: var(--ccn-ink);
}

.coyote-contact-review::backdrop {
  background: rgba(18, 16, 13, 0.78);
  backdrop-filter: blur(3px);
}

.coyote-contact-review__frame {
  max-height: inherit;
  overflow-y: auto;
}

.coyote-contact-review__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  padding: 24px 26px;
  border-bottom: 7px solid var(--ccn-gold);
  background: var(--ccn-dark);
  color: var(--ccn-on-dark);
}

.coyote-contact-review__header p {
  margin: 0 0 7px;
  color: var(--ccn-gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.coyote-contact-review__header h3 {
  margin: 0;
  color: var(--ccn-on-dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
}

.coyote-contact-review__header button {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(244, 207, 103, 0.5);
  border-radius: 2px;
  background: transparent;
  color: var(--ccn-on-dark);
  font-size: 26px;
  cursor: pointer;
}

.coyote-contact-review__description {
  margin: 0;
  padding: 22px 26px 0;
  color: var(--ccn-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
}

.coyote-contact-review__list,
.coyote-contact-server-review dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 26px 0;
  border-top: 1px solid var(--ccn-line-strong);
  border-left: 1px solid var(--ccn-line-strong);
}

.coyote-contact-review__list > div,
.coyote-contact-server-review dl > div {
  min-width: 0;
  padding: 14px 16px;
  border-right: 1px solid var(--ccn-line-strong);
  border-bottom: 1px solid var(--ccn-line-strong);
  background: var(--ccn-paper);
}

.coyote-contact-review__wide,
.coyote-contact-server-review__wide {
  grid-column: 1 / -1;
}

.coyote-contact-review dt,
.coyote-contact-server-review dt {
  color: var(--ccn-gold-ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.coyote-contact-review dd,
.coyote-contact-server-review dd {
  margin: 8px 0 0;
  color: var(--ccn-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.coyote-contact-review__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px 26px;
}

.coyote-contact-review__footer button,
.coyote-contact-server-review__actions :where(a, button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--ccn-dark);
  border-radius: 3px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.coyote-contact-review__back,
.coyote-contact-server-review__actions a {
  background: transparent;
  color: var(--ccn-dark) !important;
  text-decoration: none !important;
}

.coyote-contact-review__send {
  background: var(--ccn-gold);
  color: var(--ccn-dark);
}

.coyote-contact-review__status {
  margin: -12px 26px 20px;
}

.coyote-contact-server-review,
.coyote-contact-receipt {
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--ccn-line-strong);
  background: var(--ccn-paper);
}

.coyote-contact-server-review__kicker,
.coyote-contact-receipt__kicker {
  margin: 0 0 12px;
  color: var(--ccn-gold-ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.coyote-contact-server-review h3,
.coyote-contact-receipt h3 {
  margin: 0;
  color: var(--ccn-dark);
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.45;
}

.coyote-contact-server-review > p:not(.coyote-contact-server-review__kicker),
.coyote-contact-receipt > p:not(.coyote-contact-receipt__kicker) {
  margin: 14px 0 0;
  color: var(--ccn-muted);
  line-height: 1.8;
}

.coyote-contact-server-review dl {
  margin-inline: 0;
}

.coyote-contact-server-review__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.coyote-contact-receipt__number {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--ccn-line-strong);
  background: var(--ccn-paper-warm);
}

.coyote-contact-receipt__number span {
  color: var(--ccn-gold-ink);
  font-size: 11px;
  font-weight: 900;
}

.coyote-contact-receipt__number strong {
  color: var(--ccn-dark);
  font-size: clamp(18px, 4vw, 25px);
  overflow-wrap: anywhere;
}

.coyote-contact-receipt nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid var(--ccn-line-strong);
  border-left: 1px solid var(--ccn-line-strong);
}

.coyote-contact-receipt nav a {
  display: grid !important;
  place-items: center;
  min-height: 52px;
  padding: 10px;
  border-right: 1px solid var(--ccn-line-strong) !important;
  border-bottom: 1px solid var(--ccn-line-strong) !important;
  background: var(--ccn-dark) !important;
  color: var(--ccn-on-dark) !important;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none !important;
}

.coyote-contact-v2__form-fallback {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--ccn-line-strong);
  background: var(--ccn-paper);
}

.coyote-contact-v2__form-fallback h3 {
  margin: 0;
  color: var(--ccn-dark);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
}

.coyote-contact-v2__form-fallback p {
  margin: 14px 0 0;
  color: var(--ccn-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
}

.coyote-contact-v2__form-fallback a {
  display: inline-flex !important;
  align-items: center;
  min-height: 44px;
  margin-top: 20px;
  border: 0 !important;
  border-bottom: 1px solid var(--ccn-dark) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ccn-dark) !important;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none !important;
}

.coyote-contact-v2__safe {
  padding: clamp(72px, 7vw, 98px) 0;
  background: var(--ccn-paper-warm);
}

.coyote-contact-v2__safe-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(42px, 7vw, 88px);
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--ccn-line-dark);
  border-radius: 4px;
  background: var(--ccn-dark);
  box-shadow: 0 24px 58px rgba(35, 28, 18, 0.17);
}

.coyote-contact-v2__safe-heading,
.coyote-contact-v2__secret-list {
  min-width: 0;
}

.coyote-contact-v2__safe-heading {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: 0 clamp(44px, 7vw, 92px);
  align-items: end;
}

.coyote-contact-v2__safe-heading .coyote-contact-v2__kicker {
  border-color: var(--ccn-gold-light);
  color: var(--ccn-gold-light);
}

.coyote-contact-v2__safe-heading h2 {
  grid-column: 1 / -1;
  color: var(--ccn-on-dark);
  font-size: clamp(28px, 2.6vw, 36px);
  text-wrap: pretty;
}

.coyote-contact-v2__safe-heading > p:not(.coyote-contact-v2__kicker) {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-top: 22px;
  color: var(--ccn-on-dark-muted);
  text-wrap: pretty;
}

.coyote-contact-v2__secret-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ccn-line-dark);
  border-left: 1px solid var(--ccn-line-dark);
  list-style: none;
}

.coyote-contact-v2__secret-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 15px 17px;
  border-right: 1px solid var(--ccn-line-dark);
  border-bottom: 1px solid var(--ccn-line-dark);
  color: var(--ccn-on-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.coyote-contact-v2__secret-list li span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ccn-gold-light);
  color: var(--ccn-gold-light);
  font-size: 14px;
  font-weight: 900;
}

.coyote-contact-v2__security {
  padding: clamp(58px, 6vw, 78px) 0;
  border-top: 1px solid var(--ccn-line);
  border-bottom: 1px solid var(--ccn-line);
  background: var(--ccn-ivory);
}

.coyote-contact-v2__security-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--ccn-line-strong);
  border-radius: 4px;
  background: var(--ccn-paper);
}

.coyote-contact-v2__security-panel h2 {
  font-size: clamp(27px, 3vw, 39px);
}

.coyote-contact-v2__security-panel p:not(.coyote-contact-v2__kicker) {
  margin-top: 14px;
}

.coyote-contact-v2__security-panel .coyote-contact-v2__button {
  flex: 0 0 auto;
}

.coyote-contact-v2__next {
  padding: clamp(70px, 7vw, 98px) 0;
  background: var(--ccn-paper-warm);
}

.coyote-contact-v2__next-panel {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--ccn-line-strong);
  border-radius: 4px;
  background: var(--ccn-dark);
  box-shadow: 0 24px 58px rgba(35, 28, 18, 0.17);
}

.coyote-contact-v2__next .coyote-contact-v2__kicker {
  border-color: var(--ccn-gold-light);
  color: var(--ccn-gold-light);
}

.coyote-contact-v2__next-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.6fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: end;
}

.coyote-contact-v2__next-head .coyote-contact-v2__kicker {
  grid-column: 1 / -1;
  width: fit-content;
  margin-bottom: -2px;
}

.coyote-contact-v2__next-head h2 {
  color: var(--ccn-on-dark);
}

.coyote-contact-v2__next-head > p:not(.coyote-contact-v2__kicker) {
  color: var(--ccn-on-dark-muted);
}

.coyote-contact-v2__next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid var(--ccn-line-dark);
  border-left: 1px solid var(--ccn-line-dark);
}

.coyote-contact-v2__next-grid a {
  position: relative;
  display: grid !important;
  align-content: start;
  min-height: 190px;
  padding: 24px !important;
  border: 0 !important;
  border-right: 1px solid var(--ccn-line-dark) !important;
  border-bottom: 1px solid var(--ccn-line-dark) !important;
  border-radius: 0 !important;
  background: #181510 !important;
  box-shadow: none !important;
  color: var(--ccn-on-dark) !important;
  text-decoration: none !important;
  transition: background-color 180ms ease, color 180ms ease;
}

.coyote-contact-v2__next-grid a > span {
  color: var(--ccn-gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.coyote-contact-v2__next-grid a > strong {
  margin-top: 18px;
  color: inherit;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.coyote-contact-v2__next-grid a > small {
  margin-top: 9px;
  color: var(--ccn-on-dark-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.65;
}

.coyote-contact-v2__next-grid a > b {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--ccn-gold-light);
  font-size: 20px;
}

.coyote-contact-v2__next-grid a:hover,
.coyote-contact-v2__next-grid a:focus-visible {
  background: var(--ccn-gold) !important;
  color: var(--ccn-dark) !important;
}

.coyote-contact-v2__next-grid a:hover > span,
.coyote-contact-v2__next-grid a:hover > small,
.coyote-contact-v2__next-grid a:hover > b,
.coyote-contact-v2__next-grid a:focus-visible > span,
.coyote-contact-v2__next-grid a:focus-visible > small,
.coyote-contact-v2__next-grid a:focus-visible > b {
  color: var(--ccn-dark);
}

@media (max-width: 1080px) {
  .coyote-contact-v2__hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
    gap: 42px;
  }

  .coyote-contact-v2__route-map li div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .coyote-contact-v2__section-head--row,
  .coyote-contact-v2__next-head {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.58fr);
    gap: 36px;
  }

  .coyote-contact-v2__route-card,
  .coyote-contact-v2__route-card:nth-child(4),
  .coyote-contact-v2__route-card:nth-child(5) {
    grid-column: span 3;
  }

  .coyote-contact-v2__route-card:last-child {
    grid-column: 1 / -1;
  }

  .coyote-contact-v2__prepare-copy,
  .coyote-contact-v2__form-copy,
  .coyote-contact-v2__safe-heading {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
    gap: 0 42px;
  }
}

@media (max-width: 820px) {
  .coyote-contact-v2__hero-grid,
  .coyote-contact-v2__section-head--row,
  .coyote-contact-v2__prepare-layout,
  .coyote-contact-v2__form-layout,
  .coyote-contact-v2__safe-panel,
  .coyote-contact-v2__security-panel,
  .coyote-contact-v2__next-head {
    grid-template-columns: 1fr;
  }

  .coyote-contact-v2__section-head h2 {
    font-size: clamp(34px, 5.3cqi, 46px);
  }

  .coyote-contact-v2__hero-grid {
    gap: 46px;
  }

  .coyote-contact-v2__route-map {
    width: min(560px, 100%);
  }

  .coyote-contact-v2__section-head--row,
  .coyote-contact-v2__next-head {
    gap: 18px;
  }

  .coyote-contact-v2__section-head--row > p,
  .coyote-contact-v2__next-head > p {
    max-width: 700px;
  }

  .coyote-contact-v2__prepare-copy,
  .coyote-contact-v2__form-copy {
    grid-template-columns: 1fr;
  }

  .coyote-contact-v2__safe-heading {
    grid-template-columns: 1fr;
  }

  .coyote-contact-v2__prepare-copy > p:not(.coyote-contact-v2__kicker),
  .coyote-contact-v2__prepare-flow,
  .coyote-contact-v2__form-copy > p:not(.coyote-contact-v2__kicker),
  .coyote-contact-v2__form-order,
  .coyote-contact-v2__safe-heading > p:not(.coyote-contact-v2__kicker) {
    grid-column: 1;
  }

  .coyote-contact-v2__form-order {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coyote-contact-v2__security-panel {
    gap: 24px;
  }

  .coyote-contact-v2__security-panel .coyote-contact-v2__button {
    justify-self: start;
  }

  .coyote-contact-v2__next-head .coyote-contact-v2__kicker {
    grid-column: auto;
    margin-bottom: 0;
  }

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

  .coyote-contact-v2__next-grid a {
    min-height: 154px;
  }
}

@media (min-width: 1081px) {
  .coyote-contact-v2__prepare-copy h2,
  .coyote-contact-v2__form-copy h2 {
    white-space: nowrap;
  }

  .coyote-contact-v2__safe-heading h2 {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .coyote-contact-v2__shell {
    width: min(100% - 28px, 1240px);
  }

  .coyote-contact-v2__hero {
    padding: 64px 0 58px;
  }

  .coyote-contact-v2__hero::before {
    right: 14px;
  }

  .coyote-contact-v2__hero::after {
    right: 14px;
    bottom: 16px;
    width: 42px;
    height: 6px;
  }

  .coyote-contact-v2__title {
    font-size: clamp(32px, 10vw, 48px);
    font-size: clamp(32px, 11cqi, 48px);
    letter-spacing: -0.06em;
    line-height: 1.08;
  }

  .coyote-contact-v2__title span:first-child {
    font-size: 0.8em;
  }

  .coyote-contact-v2__lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.82;
  }

  .coyote-contact-v2__hero-actions,
  .coyote-contact-v2__hero-actions .coyote-contact-v2__button {
    width: 100%;
  }

  .coyote-contact-v2__hero-actions .coyote-contact-v2__button {
    min-height: 52px;
  }

  .coyote-contact-v2__route-map {
    padding: 16px;
  }

  .coyote-contact-v2__route-map::before {
    inset: 6px;
  }

  .coyote-contact-v2__route-map-head {
    display: grid;
    gap: 5px;
  }

  .coyote-contact-v2__route-map li {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .coyote-contact-v2__route-map li div {
    padding: 10px 13px;
  }

  .coyote-contact-v2__routes,
  .coyote-contact-v2__prepare,
  .coyote-contact-v2__form-section,
  .coyote-contact-v2__safe,
  .coyote-contact-v2__next {
    padding: 64px 0;
  }

  .coyote-contact-v2__section-head h2,
  .coyote-contact-v2__prepare-copy h2,
  .coyote-contact-v2__form-copy h2,
  .coyote-contact-v2__safe-heading h2,
  .coyote-contact-v2__next-head h2 {
    font-size: 32px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .coyote-contact-v2__section-head h2 {
    white-space: normal;
  }

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

  .coyote-contact-v2__route-card,
  .coyote-contact-v2__route-card:nth-child(4),
  .coyote-contact-v2__route-card:nth-child(5),
  .coyote-contact-v2__route-card:last-child {
    grid-column: auto;
    padding: 24px 20px;
  }

  .coyote-contact-v2__route-card h3 {
    font-size: 21px;
  }

  .coyote-contact-v2__checklist,
  .coyote-contact-v2__secret-list {
    grid-template-columns: 1fr;
  }

  .coyote-contact-v2__checklist li:last-child {
    grid-column: auto;
  }

  .coyote-contact-v2__prepare-flow {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .coyote-contact-v2__prepare-flow b {
    transform: rotate(90deg);
    justify-self: center;
  }

  .coyote-contact-v2__form-order {
    grid-template-columns: 1fr;
  }

  .coyote-contact-v2__form-panel {
    padding: 22px 16px;
  }

  .coyote-contact-engine__grid,
  .coyote-contact-review__list,
  .coyote-contact-server-review dl {
    grid-template-columns: 1fr;
  }

  .coyote-contact-engine__product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coyote-contact-engine__field--wide,
  .coyote-contact-review__wide,
  .coyote-contact-server-review__wide {
    grid-column: auto;
  }

  .coyote-contact-engine__submit-row,
  .coyote-contact-review__footer,
  .coyote-contact-server-review__actions,
  .coyote-contact-receipt__number {
    align-items: stretch;
    flex-direction: column;
  }

  .coyote-contact-engine__submit,
  .coyote-contact-server-review__actions :where(a, button) {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 54px !important;
  }

  .coyote-contact-review {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
  }

  .coyote-contact-review__header,
  .coyote-contact-review__footer {
    padding: 20px 18px;
  }

  .coyote-contact-review__header h3 {
    font-size: 23px;
  }

  .coyote-contact-review__description {
    padding: 18px 18px 0;
  }

  .coyote-contact-review__list {
    margin: 18px 18px 0;
  }

  .coyote-contact-review__status {
    margin: -8px 18px 18px;
  }

  .coyote-contact-receipt nav {
    grid-template-columns: 1fr;
  }

  .coyote-contact-v2__safe-panel,
  .coyote-contact-v2__next-panel {
    width: 100%;
    padding: 28px 20px;
  }

  .coyote-contact-v2__security {
    padding: 52px 0;
  }

  .coyote-contact-v2__security-panel {
    padding: 25px 20px;
  }

  .coyote-contact-v2__security-panel h2 {
    font-size: 27px;
    line-height: 1.35;
  }

  .coyote-contact-v2__security-panel .coyote-contact-v2__button {
    width: 100%;
  }
}

@media (max-width: 340px) {
  .coyote-contact-v2__shell {
    width: min(100% - 22px, 1240px);
  }

  .coyote-contact-v2__title {
    font-size: clamp(27px, 9vw, 40px);
    font-size: clamp(27px, 10.5cqi, 40px);
  }

  .coyote-contact-v2__route-map,
  .coyote-contact-v2__safe-panel,
  .coyote-contact-v2__next-panel {
    padding-inline: 15px;
  }

  .coyote-contact-v2__form-panel {
    padding-inline: 12px;
  }

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

.coyote-contact-review__list [data-review-output="attachments"],
.coyote-contact-server-review__attachments {
  white-space: pre-line;
}

.coyote-contact-server-review__attachments {
  margin: 0;
  padding-left: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .coyote-contact-v2 *,
  .coyote-contact-v2 *::before,
  .coyote-contact-v2 *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
