/* KuyaYos — /book/ page styles
 * Extends styles.css with a tactile "service-docket" aesthetic.
 * CSP: style-src 'self'. No external fonts, no url() to foreign origins.
 *
 * Re-skinned 2026-04-25 to inherit the brand palette (orange action,
 * blue/teal brand) and Nunito Sans typography from styles.css. The
 * physical docket structure (dashed rules, paper card, perforated tab,
 * stamp) is preserved.
 */

.booking-page {
  /* Local tokens scoped to the booking page only.
   * --docket-paper is a soft cream still — a real service order isn't
   * stark white. Cooled slightly from the previous amber-cream so it
   * sits next to the new blue/orange brand without clashing.
   */
  --docket-paper: #fbf8f0;
  --docket-paper-edge: #ede5cc;
  --docket-ink: var(--ink);
  --docket-ink-soft: var(--ink-soft);
  --docket-rule: #d8cca8;
  --docket-rule-soft: #ece4cb;
  --docket-stamp: var(--action);
  --docket-stamp-ink: var(--brand-900);
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

  /* Backwards-compatible aliases so existing rule selectors keep working
   * without a wholesale rename. Each maps to the new docket token above. */
  --paper: var(--docket-paper);
  --paper-edge: var(--docket-paper-edge);
  --rule: var(--docket-rule);
  --rule-soft: var(--docket-rule-soft);
  --stamp: var(--docket-stamp);
  --stamp-ink: var(--docket-stamp-ink);
}

/* Booking section frame ------------------------------------- */

.booking {
  padding: 2rem 0 4rem;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 22px,
      rgba(30, 58, 138, 0.02) 22px 23px
    ),
    var(--bg);
}

.booking__intro {
  margin-bottom: 1.75rem;
  text-align: left;
}

.booking__intro h1 {
  font-size: clamp(1.75rem, 3.2vw + 1rem, 2.75rem);
  margin-bottom: 0.75rem;
}

.booking__intro .lede {
  font-size: 1.0625rem;
}

@media (min-width: 768px) {
  .booking {
    padding: 3rem 0 5rem;
  }
}

/* The docket ------------------------------------------------ */

.docket {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 1.5rem 1.25rem 2rem;
  position: relative;
  box-shadow: 0 2px 0 0 var(--ink);
  /* Subtle graph-paper texture — pure CSS, no gradients on hover etc. */
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0 1.75rem,
      rgba(21, 41, 99, 0.04) 1.75rem calc(1.75rem + 1px)
    );
}

@media (min-width: 640px) {
  .docket {
    padding: 2rem 2rem 2.5rem;
  }
}

/* Perforated tab at top left */
.docket::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.5rem;
  width: 3rem;
  height: 0.5rem;
  background: var(--ink);
  border-radius: 0 0 4px 4px;
}

/* Docket header --------------------------------------------- */

.docket__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed var(--rule);
}

.docket__stamp {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.5rem 0.85rem;
  border: 2px solid var(--stamp);
  border-radius: 3px;
  color: var(--stamp-ink);
  background: rgba(245, 158, 11, 0.08);
  transform: rotate(-1.5deg);
  line-height: 1;
}

.docket__stamp-line {
  font-family: var(--font-system);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}

.docket__stamp-line:first-child {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.docket__meta {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  font-size: 0.8125rem;
}

.docket__meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.docket__meta dt {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  color: var(--slate-500);
  margin: 0;
}

.docket__meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Steps track ----------------------------------------------- */

.steps-track {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  counter-reset: step;
  position: relative;
}

.steps-track__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  position: relative;
  padding-top: 0.25rem;
}

/* dashed connector line between steps */
.steps-track__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(0.25rem + 18px);
  left: 50%;
  right: -50%;
  height: 2px;
  background-image: linear-gradient(
    to right,
    var(--rule) 0 6px,
    transparent 6px 12px
  );
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}

.steps-track__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--rule);
  background: var(--paper);
  color: var(--slate-500);
  font-family: var(--mono);
  font-size: 0.8125rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.steps-track__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.steps-track__item.is-active .steps-track__num {
  background: var(--stamp);
  border-color: var(--stamp-ink);
  color: var(--stamp-ink);
  transform: scale(1.06);
}

.steps-track__item.is-active .steps-track__label {
  color: var(--ink);
}

.steps-track__item.is-done .steps-track__num {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.steps-track__item.is-done .steps-track__num::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg) translate(1px, -2px);
}

.steps-track__item.is-done .steps-track__num > * {
  visibility: hidden;
}

.steps-track__item.is-done .steps-track__label {
  color: var(--brand);
}

@media (max-width: 480px) {
  .steps-track__label {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }
  .steps-track__num {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  .steps-track__item:not(:last-child)::after {
    top: calc(0.25rem + 16px);
  }
}

/* Step panels ----------------------------------------------- */

.step-panel {
  display: none;
  animation: fadeSlide 0.25s ease both;
}

.step-panel.is-active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-panel__heading {
  font-size: 1.375rem;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.25;
}

.step-panel__num {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--stamp);
  font-weight: 700;
}

/* Fields ---------------------------------------------------- */

.field {
  margin: 0 0 1.5rem;
  min-width: 0;
}

.field__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.field__num {
  color: var(--slate-500);
  margin-right: 0.25rem;
  font-family: var(--mono);
  font-weight: 600;
}

.field__required {
  color: var(--stamp);
  margin-left: 0.15rem;
}

.field__control {
  position: relative;
  display: block;
}

.field__control--narrow {
  max-width: 20rem;
}

.field--fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 1.5rem;
}

.field--fieldset .field__label,
.field--fieldset legend {
  padding: 0;
  float: none;
}

.field__hint {
  display: block;
  font-size: 0.8125rem;
  color: var(--slate-500);
  margin-top: 0.4rem;
}

.field__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.field__count {
  font-size: 0.75rem;
  color: var(--slate-500);
  white-space: nowrap;
}

.field__error {
  display: block;
  color: #B91C1C;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.5rem 0 0;
  padding-left: 0.5rem;
  border-left: 3px solid #B91C1C;
}

.field__error[hidden] {
  display: none;
}

/* Inputs, selects, textareas -------------------------------- */

.docket input[type="text"],
.docket input[type="tel"],
.docket input[type="date"],
.docket input[type="email"],
.docket select,
.docket textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 0.75rem 0.85rem;
  min-height: 48px;
  box-shadow: inset 0 2px 0 rgba(21, 41, 99, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: var(--font-system);
}

.docket textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
  /* ruled-paper lines */
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 calc(1.55em - 1px),
    var(--rule-soft) calc(1.55em - 1px) 1.55em
  );
  background-size: 100% 1.55em;
  background-position: 0 0.9em;
  padding-top: 0.85rem;
}

.docket select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(-45deg, transparent 50%, var(--ink) 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.docket input:focus-visible,
.docket select:focus-visible,
.docket textarea:focus-visible {
  outline: 3px solid var(--stamp);
  outline-offset: 2px;
  border-color: var(--ink);
}

.docket input[aria-invalid="true"],
.docket select[aria-invalid="true"],
.docket textarea[aria-invalid="true"] {
  border-color: #B91C1C;
  box-shadow: inset 0 0 0 1px #B91C1C;
}

.docket input::placeholder,
.docket textarea::placeholder {
  color: var(--slate-500);
  opacity: 1;
}

/* Prefixed input (mobile number) ---------------------------- */

.field__control--prefixed {
  display: flex;
  align-items: stretch;
  max-width: 22rem;
  border: 2px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  background: #FFFFFF;
}

.field__control--prefixed .field__prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  background: var(--paper);
  border-right: 2px solid var(--ink);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.field__control--prefixed input {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex: 1 1 auto;
  min-width: 0;
}

.field__control--prefixed:focus-within {
  outline: 3px solid var(--stamp);
  outline-offset: 2px;
}


/* Mobile service type dropdown ------------------------------- */
.service-type-mobile {
  display: none;
  margin-bottom: 0.75rem;
}

@media (max-width: 559px) {
  .service-type-mobile {
    display: block;
  }

  .service-type-radios {
    display: none;
  }
}

/* Tile groups (radio) --------------------------------------- */

.tile-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 560px) {
  .tile-group {
    grid-template-columns: repeat(3, 1fr);
  }
  .tile-group--compact {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.tile {
  position: relative;
  display: block;
  border: 2px solid var(--ink);
  background: #FFFFFF;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.12s ease, transform 0.12s ease;
  min-height: 60px;
}

.tile input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.tile__label {
  display: block;
  padding: 0.8rem 0.9rem;
  padding-left: 1.1rem;
  position: relative;
}

.tile__title {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.25;
}

.tile__sub {
  display: block;
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 0.15rem;
}

.tile:has(input:checked) {
  background: rgba(245, 158, 11, 0.12);
}

.tile:has(input:checked) .tile__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--stamp);
}

.tile:has(input:focus-visible) {
  outline: 3px solid var(--stamp);
  outline-offset: 2px;
}

.tile--compact {
  min-height: 56px;
}

.tile--urgent {
  border-color: var(--ink);
}

.tile--urgent .tile__title::after {
  content: " ⚡";
  color: var(--stamp);
}

/* Photo uploader -------------------------------------------- */

.photo-uploader {
  display: block;
}

.photo-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.5rem 1rem;
  border: 2px dashed var(--ink);
  border-radius: 4px;
  background: #FFFFFF;
  cursor: pointer;
  text-align: center;
  transition: background 0.12s ease;
  min-height: 120px;
}

.photo-slot:hover {
  background: rgba(245, 158, 11, 0.06);
}

.photo-slot:focus-within {
  outline: 3px solid var(--stamp);
  outline-offset: 2px;
}

.photo-slot input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.photo-slot__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--ink);
  background: var(--paper);
}

.photo-slot__text {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.photo-slot__hint {
  font-size: 0.75rem;
  color: var(--slate-500);
  letter-spacing: 0.02em;
}

.photo-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 0;
  list-style: none;
}

.photo-previews:empty {
  display: none;
}

.photo-preview {
  position: relative;
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: 3px;
  padding: 0.35rem 0.35rem 1.5rem;
  box-shadow: 0 1px 0 0 var(--ink);
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1px;
  display: block;
}

.photo-preview__name {
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.35rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--slate-700);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.photo-preview__remove {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--paper);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.photo-preview__remove:focus-visible {
  outline: 3px solid var(--stamp);
  outline-offset: 2px;
}

/* Business block (conditional) ------------------------------ */

.biz-block {
  background: rgba(21, 41, 99, 0.03);
  border: 1px dashed var(--rule);
  border-radius: 4px;
  padding: 1rem 1rem 0.25rem;
  margin: 0 0 1.5rem;
}

.biz-block__title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

/* Consent --------------------------------------------------- */

.field--consent {
  margin-top: 2rem;
}

.consent {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  padding: 1rem;
  background: rgba(245, 158, 11, 0.06);
  border: 1px dashed var(--rule);
  border-radius: 4px;
}

.consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consent__box {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background: #FFFFFF;
  margin-top: 1px;
  position: relative;
  flex-shrink: 0;
}

.consent input[type="checkbox"]:checked + .consent__box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 8px;
  height: 13px;
  border-right: 3px solid var(--stamp-ink);
  border-bottom: 3px solid var(--stamp-ink);
  transform: rotate(45deg);
}

.consent input[type="checkbox"]:focus-visible + .consent__box {
  outline: 3px solid var(--stamp);
  outline-offset: 2px;
}

.consent input[type="checkbox"]:checked + .consent__box {
  background: var(--stamp);
}

.consent__text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Step navigation ------------------------------------------- */

.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--rule);
  flex-wrap: wrap;
}

.step-nav__spacer {
  flex: 1;
}

.step-nav .btn {
  min-height: 48px;
}

/* Link-like buttons ----------------------------------------- */

.linklike {
  background: none;
  border: 0;
  padding: 0;
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  cursor: pointer;
  font: inherit;
}

.linklike:hover {
  color: var(--brand-900);
  text-decoration-thickness: 2px;
}

.linklike:focus-visible {
  outline: 3px solid var(--stamp);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Monospace numerals ---------------------------------------- */

.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* Docket foot ----------------------------------------------- */

.docket__foot {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  text-align: center;
  line-height: 1.5;
}

/* Success card ---------------------------------------------- */

.success-card {
  position: relative;
  padding: 1.5rem 1.25rem 2rem;
}

@media (min-width: 640px) {
  .success-card {
    padding: 2rem 2rem 2.5rem;
  }
}

.success-stamp {
  position: absolute;
  top: -0.5rem;
  right: -0.25rem;
  padding: 0.55rem 1.1rem;
  border: 3px solid var(--stamp);
  color: var(--stamp);
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.8);
  transform: rotate(8deg);
  border-radius: 3px;
  font-family: var(--font-system);
}

.success-card__heading {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  padding-right: 5rem;
}

.success-card__lede {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}

.success-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  background: rgba(21, 41, 99, 0.03);
  border: 1px dashed var(--rule);
  border-radius: 4px;
  margin: 0 0 1.5rem;
}

@media (min-width: 560px) {
  .success-meta {
    grid-template-columns: repeat(3, 1fr);
  }
}

.success-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.success-meta dt {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
  margin: 0;
}

.success-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  word-break: break-word;
}

.success-meta dd.mono {
  font-size: 1.05rem;
}

.dashed-rule {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    var(--rule) 0 6px,
    transparent 6px 12px
  );
  background-size: 12px 1px;
  background-repeat: repeat-x;
  margin: 1.5rem 0;
}

.success-card__subhead {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin: 0 0 1rem;
}

.next-steps {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  counter-reset: next;
  margin: 0 0 0.5rem;
  padding: 0;
}

.next-steps li {
  counter-increment: next;
  position: relative;
  padding-left: 2.25rem;
  padding-top: 0.1rem;
  min-height: 2rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.next-steps li::before {
  content: counter(next, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.next-steps strong {
  color: var(--ink);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}

.success-actions .btn {
  min-height: 48px;
}

.success-reset {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Privacy dialog -------------------------------------------- */

.privacy-dialog {
  max-width: 36rem;
  width: calc(100% - 2rem);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
}

.privacy-dialog::backdrop {
  background: rgba(15, 23, 42, 0.65);
}

.privacy-dialog article {
  padding: 1.5rem;
}

.privacy-dialog h2 {
  margin: 0 0 1rem;
}

.privacy-dialog p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.privacy-dialog form {
  margin-top: 1rem;
  text-align: right;
}

/* Noscript fallback ----------------------------------------- */

.noscript-fallback {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 2px dashed var(--ink);
  border-radius: 4px;
  background: #FFF7DB;
}

.noscript-fallback h2 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.noscript-fallback ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
}

/* Submit-error banner --------------------------------------- */

.submit-error {
  margin-top: 1rem;
}

/* Honeypot — invisible to humans, visible to naive bots ----- */

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

/* Reduced motion override ----------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .step-panel {
    animation: none;
  }
  .steps-track__item.is-active .steps-track__num {
    transform: none;
  }
}
