/* ==========================================================================
   Avant-Garde Design — Client Design Profile
   Palette and type lifted from avant-gardedesign.com; layout language
   (section bars, orange tabs, underlined inputs) lifted from the PDF form.
   ========================================================================== */

:root {
  --orange: #ff6b35;
  --orange-bright: #ff8c40;
  --orange-dim: rgba(255, 107, 53, 0.14);
  --orange-glow: rgba(255, 107, 53, 0.32);

  /* Lifted off pure black and warmed a touch: less crushed under a long read,
     and every text tone below clears WCAG AA against it. */
  --bg: #0d1119;
  --bg-raised: #141924;
  --bg-bar: #1a202c;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.065);

  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);

  --text: #f5f6f8;
  --text-soft: #ced2da;
  --muted: #9aa1ac;
  --muted-dim: #7b8290;

  --danger: #ff5b5b;
  --success: #35d07f;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 10px;
  --radius-lg: 14px;
  --shell: 860px;

  /* Height of the tab strip — the heading below docks exactly against it. */
  --rail-h: 28px;

  --ease: cubic-bezier(0.22, 0.68, 0.36, 1);
}

* { box-sizing: border-box; }

/* 17px root: everything sized in rem lifts proportionally, so the whole form
   reads a step larger without re-tuning each component. */
html { font-size: 106.25%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

/* Ambient brand glow behind the page — subtle, never distracting. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(255, 107, 53, 0.10), transparent 70%),
    radial-gradient(700px 420px at 100% 100%, rgba(255, 107, 53, 0.045), transparent 70%);
}

.shell {
  position: relative;
  z-index: 1;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 24px 96px;
}

/* ---------------------------------------------------------------- Masthead */

.masthead {
  padding: 44px 0 26px;
  text-align: center;
}

.masthead__logo {
  height: 44px;
  width: auto;
  margin-bottom: 26px;
  opacity: 0.97;
}

.masthead__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1.15;
}

/* A compact centred accent, not a full-width rule — a second edge-to-edge
   orange line would fight the progress rail a few pixels below it. */
.masthead__rule {
  width: 84px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  margin: 18px auto 20px;
  border-radius: 2px;
}

.masthead__intro {
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 60ch;
  margin: 0 auto;
}

/* ------------------------------------------------------------ Project chip */

.project-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.project-chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(53, 208, 127, 0.16);
}

.project-chip--warn { border-color: rgba(255, 107, 53, 0.4); color: var(--orange-bright); }
.project-chip--warn .project-chip__dot { background: var(--orange); box-shadow: 0 0 0 3px var(--orange-dim); }

/* ------------------------------------------------- Stepper (tabs + heading) */

/* The tab strip and the numbered section heading are one docked module: the
   strip pins to the top of the viewport, the heading pins directly beneath it,
   and the tab indicators ride the seam between them. */
.progress {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--rail-h);
  background: var(--bg-bar);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-left: 3px solid var(--orange);
  border-radius: 3px var(--radius) 0 0;
}

.progress__rail {
  height: 100%;
  padding: 0 18px;
}

.progress__steps {
  display: flex;
  align-items: stretch;
  gap: 6px;
  height: 100%;
}

/* Full-height tab, so the whole strip is clickable; the indicator is the bar. */
.step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  padding: 0;
  border: 0;
  border-radius: 4px 4px 0 0;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s var(--ease);
}

.step:disabled { cursor: default; }

/* Hovering a reachable tab lights its whole column, so the target is the
   width of the tab rather than the width of the indicator. */
.step:hover:not(:disabled) { background: var(--surface-hover); }

.step__bar {
  width: 100%;
  height: 3px;
  /* Sits on the seam and grows upward from it, the way a tab indicator does. */
  margin-bottom: -1.5px;
  transform-origin: bottom;
  border-radius: 999px;
  background: var(--line-strong);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

/* Pops up well past the current step's height — unmissable under the cursor. */
.step:hover:not(:disabled) .step__bar {
  background: var(--text-soft);
  transform: scaleY(3.2);
}

.step--done .step__bar { background: rgba(255, 107, 53, 0.5); }

.step--done:hover:not(:disabled) .step__bar {
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  box-shadow: 0 0 14px -2px var(--orange-glow);
}

.step[aria-current='step'] .step__bar {
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  transform: scaleY(1.9);
  box-shadow: 0 0 14px -2px var(--orange-glow);
}

/* Beats the generic hover, so the current tab pops without losing its orange. */
.step[aria-current='step']:hover .step__bar {
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  transform: scaleY(3.2);
}

/* Keyboard focus gets the same pop as the cursor. */
.step:focus-visible .step__bar { transform: scaleY(3.2); }

.step:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ------------------------------------------------------------------ Panels */

.panel { display: none; }
.panel--active { display: block; animation: rise 0.42s var(--ease) both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------- Section UI */

.section { margin: 40px 0 0; }
/* Flush with the tab strip — together they are one element. */
.section:first-child { margin-top: 0; }

/* Black bar with an orange tab — the signature element of the printed form,
   here doubling as the tab strip's panel: it pins directly under the strip
   and the next section's bar pushes it out of the way on the way past. */
.section__bar {
  position: sticky;
  top: var(--rail-h);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 13px;
  background:
    linear-gradient(90deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0) 48%),
    var(--bg-bar);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 0 0 var(--radius) 3px;
  padding: 12px 18px;
  margin-bottom: 22px;
  box-shadow: 0 16px 26px -26px #000;
}

.section__num {
  flex: 0 0 auto;
  /* Keeps the number and its hairline together when the title wraps. */
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--orange);
}

/* Hairline between the number and the title — same trick as the rail's gaps. */
.section__num::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 11px;
  margin-left: 13px;
  vertical-align: -1px;
  background: var(--line-strong);
}

.section__title {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}

.section__suffix {
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.section__intro {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin: -6px 0 26px;
  max-width: 68ch;
}

/* Callout used for the inspiration-photos note. */
.note {
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 15px 18px;
  margin-top: 28px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.note__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  margin-right: 6px;
}

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

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

/* Year / Make / Model — the year needs far less room than the other two. */
.grid--thirds {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.14fr) minmax(0, 1.14fr);
}

/* Rows of differing widths are separate grids; keep the gap between them
   identical to the row gap inside one, so the section reads as a single table. */
.grid + .grid { margin-top: 22px; }
.grid + .field { margin-top: 26px; }

.field { margin-bottom: 26px; }
.field--half,
.field--third { margin-bottom: 0; }
.field--full { grid-column: 1 / -1; }

.field__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.field__label .req { color: var(--orange); margin-left: 3px; }

.field__hint {
  display: block;
  font-size: 0.83rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
  color: var(--muted-dim);
  margin-top: 3px;
}

/* One-line answers and long-form answers are the same object at two heights,
   so a client can see at a glance that both are theirs to type in. */
.input,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  padding: 12px 16px;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.textarea {
  line-height: 1.7;
  padding: 14px 16px;
  resize: vertical;
  min-height: 108px;
}

.input::placeholder,
.textarea::placeholder { color: var(--muted-dim); }

.input:hover,
.textarea:hover { border-color: var(--line-strong); }

.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 107, 53, 0.045);
  box-shadow: 0 0 0 3px var(--orange-dim);
}

/* Date inputs render a UA calendar icon that is invisible on dark surfaces. */
.input[type='date']::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.45;
  cursor: pointer;
}
.input[type='date']::-webkit-calendar-picker-indicator:hover { opacity: 0.85; }

.field--error .input,
.field--error .textarea { border-color: var(--danger); }

.field__error {
  display: none;
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 7px;
}

.field--error .field__error { display: block; }

.field__counter {
  float: right;
  font-size: 0.72rem;
  color: var(--muted-dim);
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}

.field__counter--warn { color: var(--orange-bright); }

/* ------------------------------------------------------------ Choice cards */

.cards { display: grid; gap: 13px; }

.card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 19px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid rgba(255, 107, 53, 0.35);
  border-radius: var(--radius-lg);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease),
    transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.card:hover {
  background: var(--surface-hover);
  border-left-color: var(--orange);
  transform: translateX(3px);
}

.card input { position: absolute; opacity: 0; pointer-events: none; }

.card__mark {
  width: 21px;
  height: 21px;
  margin-top: 3px;
  border: 1.5px solid var(--line-strong);
  border-radius: 5px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.card__mark svg { width: 12px; height: 12px; opacity: 0; transform: scale(0.5); transition: all 0.22s var(--ease); }

.card__title {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  margin: 0 0 3px;
}

.card__subtitle {
  font-family: var(--font-display);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--orange);
  margin: 0 0 7px;
}

.card__description {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.62;
}

.card:has(input:checked) {
  border-color: var(--orange);
  border-left-color: var(--orange);
  background: rgba(255, 107, 53, 0.075);
  box-shadow: 0 0 0 1px var(--orange-dim), 0 10px 30px -14px var(--orange-glow);
}

.card:has(input:checked) .card__mark { border-color: var(--orange); background: var(--orange); }
.card:has(input:checked) .card__mark svg { opacity: 1; transform: none; }

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

/* ------------------------------------------------------ Option chips (row) */

.options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}

.chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.chip:hover { background: var(--surface-hover); border-color: var(--line-strong); transform: translateY(-1px); }

.chip input { position: absolute; opacity: 0; pointer-events: none; }

.chip__mark {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
  display: grid;
  place-items: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.chip--radio .chip__mark { border-radius: 50%; }

.chip__mark svg { width: 11px; height: 11px; opacity: 0; transform: scale(0.5); transition: all 0.2s var(--ease); }

.chip__text { font-size: 0.95rem; line-height: 1.4; }

.chip__badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--orange-dim);
  color: var(--orange-bright);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: 1px;
}

.chip__hint { display: block; font-size: 0.76rem; color: var(--muted); }

.chip:has(input:checked) {
  border-color: var(--orange);
  background: rgba(255, 107, 53, 0.09);
}

.chip:has(input:checked) .chip__mark { border-color: var(--orange); background: var(--orange); }
.chip:has(input:checked) .chip__mark svg { opacity: 1; transform: none; }
.chip:has(input:focus-visible) { outline: 2px solid var(--orange); outline-offset: 3px; }

/* --------------------------------------------------------------- Nav / CTA */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}

.btn:disabled { opacity: 0.42; cursor: not-allowed; }

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: #12151d;
  box-shadow: 0 10px 26px -12px var(--orange-glow);
}

.btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px var(--orange-glow);
}

.btn--ghost { background: transparent; border-color: var(--line-strong); color: var(--text-soft); }
.btn--ghost:hover:not(:disabled) { border-color: var(--orange); color: var(--orange); }
.btn--ghost[hidden] { display: none; }

.btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.btn__spinner {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(18, 21, 29, 0.3);
  border-top-color: #12151d;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.nav__meta { font-size: 0.74rem; color: var(--muted-dim); letter-spacing: 0.06em; }

/* ------------------------------------------------------------------ Review */

.review__group { margin-bottom: 30px; }

.review__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}

.review__edit {
  background: none;
  border: 0;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 5px;
}

.review__edit:hover { background: var(--orange-dim); }

.review__row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.review__q { font-size: 0.82rem; color: var(--muted); }

.review__a { font-size: 0.96rem; color: var(--text); white-space: pre-wrap; overflow-wrap: anywhere; }
.review__a--empty { color: var(--muted-dim); font-style: italic; }

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

.done { text-align: center; padding: 60px 0 40px; animation: rise 0.5s var(--ease) both; }

.done__mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(53, 208, 127, 0.11);
  border: 1.5px solid rgba(53, 208, 127, 0.45);
}

.done__mark svg { width: 32px; height: 32px; }

.done__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.done__body { color: var(--text-soft); max-width: 52ch; margin: 0 auto 12px; }

.done__ref {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  color: var(--muted);
}

/* ------------------------------------------------------------------ Alerts */

.alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 17px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 91, 91, 0.4);
  background: rgba(255, 91, 91, 0.09);
  color: #ffc9c9;
  font-size: 0.89rem;
  margin-top: 22px;
}

.alert[hidden] { display: none; }
.alert__icon { flex: 0 0 auto; margin-top: 2px; }

/* ------------------------------------------------------------- Save status */

.saved {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(20, 25, 36, 0.94);
  backdrop-filter: blur(10px);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}

.saved--visible { opacity: 1; transform: none; }

/* ------------------------------------------------------------------ Footer */

.site-footer {
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.76rem;
  color: var(--muted-dim);
  line-height: 1.8;
}

.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--orange); }

.site-footer__definition {
  margin-top: 10px;
  font-style: italic;
  max-width: 68ch;
  margin-inline: auto;
  color: var(--muted-dim);
}

/* Visually hidden but reachable — used for the bot honeypot and a11y labels. */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------- Responsive */

@media (max-width: 720px) {
  .shell { padding: 0 18px 80px; }
  .grid,
  .grid--thirds { grid-template-columns: 1fr; gap: 22px; }
  .field--half,
  .field--third { margin-bottom: 0; }
  .options { grid-template-columns: 1fr; }
  .review__row { grid-template-columns: 1fr; gap: 5px; }
  .nav { flex-wrap: wrap; }
  .btn { flex: 1 1 auto; padding: 14px 20px; }
  .nav__meta { flex-basis: 100%; text-align: center; order: 3; }
  .masthead { padding: 32px 0 20px; }
  .progress__rail { padding: 0 14px; }
  .progress__steps { gap: 4px; }
  .section__bar { padding: 11px 14px; gap: 11px; }
  .section__num::after { margin-left: 11px; }
  /* Tighter tracking keeps the longest headings on one line on a phone. */
  .section__title { letter-spacing: 0.13em; }
  .card { padding: 17px 18px; gap: 13px; }
  .saved { left: 50%; right: auto; transform: translate(-50%, 8px); white-space: nowrap; }
  .saved--visible { transform: translate(-50%, 0); }
}

/* Older Safari/Firefox without :has() — fall back to a class the JS toggles. */
.card.is-checked {
  border-color: var(--orange);
  border-left-color: var(--orange);
  background: rgba(255, 107, 53, 0.075);
}
.card.is-checked .card__mark { border-color: var(--orange); background: var(--orange); }
.card.is-checked .card__mark svg { opacity: 1; transform: none; }
.chip.is-checked { border-color: var(--orange); background: rgba(255, 107, 53, 0.09); }
.chip.is-checked .chip__mark { border-color: var(--orange); background: var(--orange); }
.chip.is-checked .chip__mark svg { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .card:hover, .chip:hover, .btn--primary:hover:not(:disabled) { transform: none; }
}
