@import url("/assets/css/fonts.css");

/* ============================================================
   Crawford Industries — site stylesheet
   Tokens → base → layout → header → components → pages → footer
   ============================================================ */

:root {
  --void: #0C0C0A;
  --pit: #131311;
  --raise: #171714;
  --hairline: #262621;
  --ash: #5C5C50;
  --stone: #8E8E84;
  --mute: #B0B0A6;
  --cream: #F4F4EE;
  --gold: #C8A43A;

  --gut: clamp(22px, 5vw, 80px);
  --ease: cubic-bezier(.2, .7, .3, 1);

  color-scheme: dark;
}

/* ---------- base ---------- */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  background: var(--void);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--void);
  color: var(--cream);
  min-height: 100%;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
svg { display: block; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--void); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
:focus:not(:focus-visible) { outline: none; }

h1, h2, h3 {
  font-family: 'Teko', 'Arial Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: .92;
}

p { color: var(--mute); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 var(--gut); }
.wrap--narrow { max-width: 1180px; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--void);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 14px 20px;
}
.skip:focus { left: var(--gut); top: 12px; }

.label {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--void);
  border-bottom: 1px solid var(--hairline);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 104px;
}

.bar-left { display: flex; align-items: center; min-width: 0; }

.mark { width: 168px; flex: none; }
.mark img { width: 100%; }

.unit {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--stone);
  border-left: 1px solid var(--hairline);
  margin-left: 20px;
  padding-left: 20px;
  white-space: nowrap;
}

.nav-cta {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 16px;
  white-space: nowrap;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--void); }

@media (max-width: 760px) {
  .bar { height: 88px; }
  .mark { width: 124px; }
  .unit { display: none; }
}

/* ---------- shared buttons ---------- */

.btn {
  display: inline-block;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--void);
  background: var(--gold);
  padding: 16px 26px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: opacity .18s var(--ease);
}
.btn:hover { opacity: .87; }

.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--void); opacity: 1; }

.fine {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ash);
  margin-top: 16px;
}

/* ---------- hero (shared canvas treatment) ---------- */

.hero {
  position: relative;
  background: var(--void);
  overflow: hidden;
}

.hero-gl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}

/* The home hero centres its wrap as a flex item unless told to fill the row,
   which would push the headline out of line with every section below it. */
.hero .wrap { position: relative; z-index: 1; width: 100%; }

/* ---------- home hero ---------- */

.hero--home {
  min-height: 82vh;
  min-height: 82svh;
  display: flex;
  align-items: center;
  padding: 90px 0 70px;
}

.hero--home::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(102deg,
    rgba(12, 12, 10, .90) 0%,
    rgba(12, 12, 10, .72) 38%,
    rgba(12, 12, 10, .18) 68%,
    rgba(12, 12, 10, 0) 88%);
}

.hero--home h1 {
  font-weight: 700;
  line-height: .86;
  letter-spacing: .012em;
  font-size: clamp(64px, 13vw, 196px);
  margin-bottom: 36px;
  text-shadow: 0 4px 44px rgba(12, 12, 10, .9);
}

.gold { color: var(--gold); }

.hero--home p {
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.75;
  color: var(--mute);
  max-width: 46ch;
}
.hero--home p b { color: var(--cream); font-weight: 500; }

/* ---------- advisory hero ---------- */

.hero--advisory { padding: clamp(64px, 8vw, 124px) 0 clamp(52px, 6vw, 84px); }

.hero--advisory h1 {
  font-size: clamp(46px, 7.4vw, 108px);
  margin: 22px 0 28px;
  max-width: 16ch;
}

.hero--advisory .lede {
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.7;
  max-width: 56ch;
  color: var(--mute);
}
.hero--advisory .lede b { color: var(--cream); font-weight: 500; }
.hero--advisory .btn { margin-top: 32px; }

/* ---------- sections ---------- */

section { padding: clamp(70px, 9vw, 140px) 0; background: var(--void); }

.head { margin-bottom: clamp(34px, 4vw, 58px); }

h2 {
  font-size: clamp(42px, 6vw, 88px);
  line-height: .9;
}

.head p { font-size: 15px; line-height: 1.8; color: var(--mute); max-width: 50ch; }

/* ---------- ventures grid ---------- */

.ventures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.v {
  position: relative;
  background: var(--void);
  padding: clamp(26px, 2.4vw, 36px);
  min-height: 236px;
  display: flex;
  flex-direction: column;
  transition:
    opacity .7s var(--ease),
    transform .7s var(--ease),
    background .2s var(--ease),
    box-shadow .3s var(--ease);
}

.v:not(.v--link) { cursor: default; }

.v-field {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.v-name {
  font-family: 'Teko', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.5vw, 36px);
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: .03em;
  min-height: 2.08em;
  margin: 34px 0 14px;
  display: flex;
  align-items: flex-end;
}

.v p { font-size: 14px; line-height: 1.7; color: var(--stone); }

.v-go {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: auto;
  padding-top: 22px;
  min-height: 31px;
  transition: color .2s var(--ease);
}

.v:hover, .v:focus-visible, .v.is-press {
  background: var(--raise);
  outline: 1px solid var(--gold);
  outline-offset: -1px;
  z-index: 2;
}
.v--link:hover .v-go, .v--link.is-press .v-go, .v--link:focus-visible .v-go { color: var(--gold); }

@media (max-width: 980px) { .ventures { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .ventures { grid-template-columns: 1fr; } }

/* ---------- closing band ---------- */

.close { border-top: 1px solid var(--hairline); padding: clamp(64px, 7.5vw, 118px) 0; }
.close-inner { max-width: 46ch; }
.close h2 { font-size: clamp(36px, 4.6vw, 62px); margin-bottom: 20px; }
.close p { font-size: 15px; line-height: 1.8; color: var(--mute); }
.close .btn { margin-top: 28px; }

/* ---------- advisory: trio ---------- */

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trio > div { background: var(--void); padding: 30px clamp(20px, 2.4vw, 34px) 34px; }
.trio h2 { font-size: clamp(26px, 2.8vw, 38px); color: var(--gold); margin-bottom: 12px; }
.trio p { font-size: 13.5px; line-height: 1.7; color: var(--stone); }
@media (max-width: 760px) { .trio { grid-template-columns: 1fr; } }

/* ---------- advisory: section head + steps ---------- */

.sec-h {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 70px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 54px);
}
.sec-h h2 { font-size: clamp(36px, 5vw, 72px); }
.sec-h p { max-width: 50ch; }
@media (max-width: 820px) { .sec-h { grid-template-columns: 1fr; gap: 18px; } }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.st {
  background: var(--void);
  padding: clamp(24px, 2.4vw, 34px);
  min-height: 210px;
  display: flex;
  flex-direction: column;
}
.st .n {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--gold);
}
.st h3 { font-size: clamp(22px, 2.2vw, 30px); margin: 30px 0 12px; }
.st p { font-size: 13.5px; line-height: 1.7; color: var(--stone); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- advisory: split ---------- */

.section--tight { padding-top: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.split > div { background: var(--void); padding: clamp(28px, 3vw, 44px); }
.split h2 { font-size: clamp(30px, 3.4vw, 46px); margin-top: 14px; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

.fitlist { list-style: none; margin-top: 22px; }
.fitlist li {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--mute);
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.fitlist li:last-child { border-bottom: none; }
.fitlist li::before {
  content: '/';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: 'DM Mono', ui-monospace, monospace;
}

.price {
  font-family: 'Teko', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  margin: 18px 0 16px;
}

.split .note { margin-top: 18px; color: var(--stone); font-size: 14px; }

/* ---------- diagnostic form ---------- */

.form-band { border-top: 1px solid var(--hairline); background: var(--void); }
.fwrap { max-width: 820px; margin: 0 auto; padding: 0 var(--gut); }

.fhead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 34px;
}
.fhead .t {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.fhead .c {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--ash);
  white-space: nowrap;
}

.prog { height: 2px; background: var(--hairline); margin-bottom: 38px; }
.prog i { display: block; height: 2px; background: var(--gold); width: 14%; transition: width .35s var(--ease); }

.step { display: none; }
.step.is-on { display: block; animation: fade .3s ease-out; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.step h3 { font-size: clamp(28px, 3.4vw, 46px); margin-bottom: 12px; }
.step > p { margin-bottom: 30px; max-width: 52ch; font-size: 14px; }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 26px; }
.grid2 .span2 { grid-column: 1 / -1; }
@media (max-width: 640px) { .grid2 { grid-template-columns: 1fr; } }

.f { display: flex; flex-direction: column; gap: 8px; }
.f + .f { margin-top: 22px; }

.f label {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
}
.f label .req { color: var(--gold); }

.f input, .f select, .f textarea {
  background: var(--pit);
  border: 1px solid var(--hairline);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  padding: 13px 14px;
  width: 100%;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .16s var(--ease);
}

.f select {
  background-image: linear-gradient(45deg, transparent 50%, var(--stone) 50%),
                    linear-gradient(135deg, var(--stone) 50%, transparent 50%);
  background-position: right 18px center, right 12px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
  cursor: pointer;
}
.f select option { background: var(--pit); color: var(--cream); }

.f textarea { min-height: 132px; resize: vertical; line-height: 1.7; }

.f input:focus, .f select:focus, .f textarea:focus { outline: none; border-color: var(--gold); }
.f input::placeholder, .f textarea::placeholder { color: var(--ash); }

.f .hint {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--ash);
}

/* validation */
.f.is-invalid input, .f.is-invalid select, .f.is-invalid textarea { border-color: #B84040; }
.err {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: #C06060;
  display: none;
}
.f.is-invalid .err, .choices-wrap.is-invalid .err { display: block; }
.choices-wrap.is-invalid .choices { border-color: #B84040; }
.choices-wrap .err { margin-top: 10px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

fieldset { border: 0; }

.choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
@media (max-width: 640px) { .choices { grid-template-columns: 1fr; } }

.choice {
  background: var(--void);
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background .16s var(--ease);
}
.choice:hover { background: var(--raise); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice .box {
  width: 12px; height: 12px;
  border: 1px solid var(--ash);
  flex: none;
  margin-top: 6px;
  transition: border-color .16s var(--ease), background .16s var(--ease);
}
.choice input:checked ~ .box { border-color: var(--gold); background: var(--gold); }
.choice input:focus-visible ~ .box { outline: 2px solid var(--gold); outline-offset: 3px; }
.choice .cl { font-size: 14.5px; line-height: 1.45; color: var(--mute); }
.choice .cl small { display: block; font-size: 12px; color: var(--stone); margin-top: 5px; line-height: 1.5; }
.choice:has(input:checked) { background: var(--raise); }

.nav-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.back {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  transition: color .16s var(--ease);
}
.back:hover { color: var(--cream); }
.back.is-off { visibility: hidden; }

.next {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  border: none;
  cursor: pointer;
  padding: 15px 26px;
  transition: opacity .18s var(--ease);
}
.next:hover { opacity: .87; }
.next:disabled { opacity: .5; cursor: wait; }

.legal {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 10px;
  line-height: 1.8;
  color: var(--ash);
  letter-spacing: .04em;
}

.review { border: 1px solid var(--hairline); margin-bottom: 26px; }
.review dl { display: grid; grid-template-columns: minmax(140px, 34%) 1fr; }
.review dt, .review dd {
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
  font-size: 13.5px;
  line-height: 1.6;
}
.review dt {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
  border-right: 1px solid var(--hairline);
}
.review dd { color: var(--mute); word-break: break-word; }
.review dl > :nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 560px) {
  .review dl { grid-template-columns: 1fr; }
  .review dt { border-right: none; border-bottom: none; padding-bottom: 0; }
}

.formerr {
  border: 1px solid #B84040;
  background: rgba(184, 64, 64, .08);
  color: #C06060;
  font-size: 13.5px;
  line-height: 1.7;
  padding: 16px 18px;
  margin-bottom: 26px;
}
.formerr a { color: var(--gold); text-decoration: underline; }

.done .big {
  font-family: 'Teko', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 120px);
  line-height: .9;
  color: var(--gold);
  margin-bottom: 20px;
}
.done p { max-width: 52ch; }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--hairline);
  padding: clamp(48px, 6vw, 76px) 0 30px;
  background: var(--void);
}

.foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(34px, 5vw, 90px);
  align-items: start;
}

.foot-mark { width: 236px; max-width: 100%; }

.couplet {
  font-family: 'Teko', 'Arial Narrow', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 27px);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: .04em;
  color: var(--stone);
  margin-top: 26px;
}
.couplet b { color: var(--cream); font-weight: 700; }

.foot-note { margin-top: 24px; font-size: 14px; max-width: 40ch; color: var(--stone); }

.foot-cols {
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(120px, auto);
  gap: 0 clamp(34px, 4.4vw, 70px);
}

.foot-col h2 {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 14px;
}

.foot-col a {
  display: block;
  font-size: 13px;
  color: var(--stone);
  padding: 6px 0;
  transition: color .15s var(--ease);
}
.foot-col a:hover { color: var(--cream); }

/* Ventures with no destination yet: dim, but still readable. */
.foot-item {
  display: block;
  font-size: 13px;
  color: var(--ash);
  padding: 6px 0;
  cursor: default;
}
.foot-item .muted { color: var(--ash); }

.legal--gap { margin-top: 24px; }

.vlist { column-count: 2; column-gap: clamp(26px, 3.4vw, 58px); }
.vlist a { break-inside: avoid; }

.foot-base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: clamp(46px, 5vw, 74px);
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ash);
}

@media (max-width: 820px) {
  .foot { grid-template-columns: 1fr; gap: 44px; }
  .foot-cols { grid-template-columns: 1fr; gap: 38px 0; }
  .vlist { column-count: 1; }
  .foot-col h2 { margin-bottom: 12px; }
  .foot-col a, .foot-item { padding: 9px 0; font-size: 14px; border-bottom: 1px solid var(--hairline); }
  .foot-col a:last-child, .vlist > :last-child { border-bottom: none; }
}

/* ---------- 404 ---------- */

.notfound {
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: clamp(70px, 10vw, 150px) 0;
}
/* The wrap is a flex item here, so it needs to be told to fill the row. */
.notfound .wrap { width: 100%; }
.notfound .code {
  font-family: 'Teko', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: clamp(90px, 18vw, 240px);
  line-height: .84;
  color: var(--gold);
  margin-bottom: 18px;
}
.notfound h1 { font-size: clamp(34px, 5vw, 64px); margin-bottom: 18px; }
.notfound p { max-width: 46ch; }
.notfound .btn { margin-top: 30px; }

/* ---------- motion ---------- */

.io {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.io.is-in { opacity: 1; transform: none; }

.v { opacity: 0; transform: translateY(20px); }
.v.is-in { opacity: 1; transform: none; transition-duration: .7s, .3s, .2s, .3s; }
.v.is-in:hover, .v.is-in:focus-visible, .v.is-in.is-press {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, .6);
}

.rise { opacity: 0; animation: rise .9s var(--ease) forwards; }
.rise--d1 { animation-delay: .1s; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* No JS: never leave content hidden. */
.no-js .io, .no-js .v { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise, .io, .v, .v.is-in:hover, .step.is-on {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }
  .prog i { transition: none; }
}
