.request-open,
.request-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

.request-dialog {
  width: min(850px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.request-dialog:focus { outline: none; }
.request-dialog::backdrop { background: rgba(3, 9, 17, .72); }

.request-shell {
  max-height: inherit;
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #1d2b3d;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .26);
}

.request-rail {
  min-height: 500px;
  display: grid;
  grid-template-rows: 58px minmax(0, 1fr);
  color: #fff;
  background: #080c12;
}

.request-head {
  min-height: 58px;
  padding: 0 8px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.request-head strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.065em;
}

.request-head strong span {
  margin-left: 6px;
  color: #79b8ff;
  font-size: 8px;
  letter-spacing: .1em;
}

.request-head button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 25px;
  cursor: pointer;
}

.request-rail-body {
  min-height: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.request-rail-label {
  margin: 0 0 12px;
  color: #91a0b3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.request-progress {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #2a3748;
}

.request-progress li {
  min-height: 48px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #2a3748;
  color: #7f8b9a;
  font-size: 11px;
  font-weight: 760;
}

.request-progress li span {
  color: #617084;
  font-size: 8px;
  letter-spacing: .08em;
}

.request-progress li.is-current {
  color: #fff;
  box-shadow: inset 3px 0 #0067e8;
}

.request-progress li.is-current span { color: #82bcff; }
.request-progress li.is-complete { color: #aeb9c7; }

.request-package[hidden] { display: none !important; }

.request-package {
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 10px;
  border-top: 1px solid #2a3748;
}

.request-package > span {
  grid-column: 1 / -1;
  color: #8492a4;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.request-package strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.request-package b {
  color: #8fc2ff;
  font-size: 10px;
}

.request-package button {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: #8fc2ff;
  background: transparent;
  font: inherit;
  font-size: 9px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.request-rail-truth {
  margin: 18px 0 0;
  color: #8492a4;
  font-size: 9px;
  line-height: 1.55;
}

#requestForm {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  background: #fff;
}

.request-step { padding: 30px 34px 28px; }
.request-step[hidden] { display: none !important; }

.request-step h2 {
  margin: 0;
  outline: 0;
  font-size: 42px;
  line-height: .94;
  letter-spacing: -.055em;
}

.request-intro {
  margin: 9px 0 20px;
  color: #657386;
  font-size: 13px;
  line-height: 1.45;
}

.request-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}

.request-fields label {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.request-fields .field-wide,
.request-fields label:has(textarea) {
  grid-column: 1 / -1;
}

.request-fields label > span {
  color: #2a384c;
  font-size: 11px;
  font-weight: 780;
}

.request-fields label small {
  color: #7d8998;
  font-size: 9px;
  font-weight: 600;
}

.request-fields input,
.request-fields select,
.request-fields textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid #c5ced9;
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  outline: 0;
  font: inherit;
  font-size: 16px;
}

.request-fields textarea {
  min-height: 68px;
  padding-block: 10px;
  line-height: 1.4;
  resize: vertical;
}

.request-fields input:focus,
.request-fields select:focus,
.request-fields textarea:focus {
  border-color: #0067e8;
  box-shadow: 0 0 0 1px #0067e8;
}

.request-fields [aria-invalid="true"] {
  border-color: #a5241a;
  box-shadow: 0 0 0 1px #a5241a;
}

.flexible-date {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #536176;
  font-size: 11px;
  font-weight: 700;
}

.flexible-date input {
  width: 19px;
  height: 19px;
  accent-color: #0067e8;
}

.request-error {
  min-height: 16px;
  margin: 2px 0 7px;
  color: #a5241a;
  font-size: 10px;
  font-weight: 720;
}

.request-primary {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #0067e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: #0067e8;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.request-step > .request-primary { width: 100%; }

.request-primary:disabled,
.request-primary[aria-busy="true"],
#requestForm[aria-busy="true"] .request-primary {
  cursor: wait;
  opacity: .65;
}

.request-truth {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid #d4dae3;
  color: #647287;
  font-size: 10px;
  line-height: 1.5;
}

.request-actions {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
}

.request-actions > button:first-child {
  min-height: 52px;
  border: 1px solid #b9c3cf;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
}

.request-complete {
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.request-status {
  margin: 0 0 10px;
  color: #0067e8;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.request-complete > p:not(.request-status) {
  max-width: 440px;
  margin: 16px 0 22px;
  color: #657386;
  font-size: 12px;
  line-height: 1.55;
}

.request-complete .request-primary {
  min-width: 190px;
  justify-content: center;
}

.form-honeypot {
  width: 1px !important;
  height: 1px !important;
  position: absolute !important;
  left: -9999px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.booking-noscript {
  padding: 12px 16px;
  color: #fff;
  background: #071321;
  font: 700 12px/1.4 Inter, Arial, sans-serif;
  text-align: center;
}

.booking-noscript a { color: #8bc1ff; }

.request-dialog button:focus-visible,
.request-dialog a:focus-visible,
.request-dialog input:focus-visible,
.request-dialog select:focus-visible,
.request-dialog textarea:focus-visible {
  outline: 3px solid #8bc1ff;
  outline-offset: 2px;
}

@media (hover: hover) {
  .request-head button:hover { background: rgba(255, 255, 255, .08); }
  .request-primary:hover { border-color: #005ccf; background: #005ccf; }
  .request-actions > button:first-child:hover { border-color: #aab4c0; background: #f2f5f8; }
}

@media (max-width: 680px) {
  .request-dialog {
    width: calc(100% - 12px);
    max-height: calc(100dvh - 12px);
  }

  .request-shell {
    max-height: calc(100dvh - 12px);
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    border-radius: 2px;
  }

  .request-rail {
    min-height: 0;
    grid-template-rows: 52px auto;
  }

  .request-head {
    min-height: 52px;
    padding-left: 16px;
  }

  .request-head strong { font-size: 19px; }

  .request-rail-body {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .request-rail-label,
  .request-rail-truth { display: none; }

  .request-progress {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #2a3748;
  }

  .request-progress li {
    min-height: 32px;
    padding: 0 14px;
    border-bottom: 0;
  }

  .request-progress li + li { border-inline-start: 1px solid #2a3748; }

  .request-package {
    margin: 0;
    padding: 9px 16px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #2a3748;
  }

  .request-package > span { display: none; }
  .request-package strong { font-size: 13px; }
  .request-package b { font-size: 9px; }

  .request-package button {
    grid-column: 3;
    grid-row: 1;
    min-height: 44px;
  }

  .request-step { padding: 22px 18px 20px; }
  .request-step h2 { font-size: 36px; }

  .request-intro {
    margin: 7px 0 16px;
    font-size: 12px;
  }

  .request-fields { gap: 11px 10px; }
  .request-fields label > span { font-size: 10.5px; }

  .request-fields input,
  .request-fields select,
  .request-fields textarea {
    min-height: 48px;
    padding-inline: 11px;
    font-size: 16px;
  }

  .request-fields textarea { min-height: 64px; }
  .request-primary,
  .request-actions > button:first-child { min-height: 50px; }
  .request-complete { min-height: 360px; }
}

@media (max-width: 390px) {
  .request-step { padding-inline: 14px; }
  .request-fields { grid-template-columns: 1fr; }
  .request-fields .field-wide,
  .request-fields label:has(textarea) { grid-column: auto; }
}
