/* ==========================================================================
   Wenkraft Labs — site styles
   Palette sampled from the approved design mockup.
   ========================================================================== */

:root {
  --paper:        #f8f4ec;
  --paper-deep:   #f5f1e8;
  --ink:          #0f1f2b;   /* headings */
  --ink-soft:     #2a3440;   /* body copy */
  --muted:        #5b5a55;   /* eyebrows, small caps */
  --navy:         #172a37;
  --navy-hover:   #0e1d27;
  --gold:         #a88a5a;
  --gold-text:    #8a6c3c;   /* gold that passes contrast on paper */
  --gold-rule:    #c9b48f;
  --hairline:     #ddd3c3;
  --on-navy:      #f4eee3;
  --on-navy-soft: #c9b48f;

  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1440px;
  --gutter: clamp(20px, 4.2vw, 64px);
  --header-h: clamp(64px, 6.4vw, 92px);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.0625rem, .98rem + .3vw, 1.25rem);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

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

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--navy); color: var(--on-navy); padding: 10px 16px; text-decoration: none;
}
.skip:focus { top: 12px; }

/* ---------- Shared type ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: clamp(.75rem, .7rem + .12vw, .8125rem);
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::after {
  content: ""; flex: 0 0 auto; width: clamp(28px, 4.5vw, 70px); height: 1px; background: var(--gold);
}
@media (max-width: 600px) { .eyebrow { letter-spacing: .22em; } }

/* Roman numerals — the site's recurring motif. */
.numeral {
  font-family: var(--serif); font-weight: 400; letter-spacing: .06em;
  color: var(--gold-text); font-variant-numeric: lining-nums;
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .7em;
  min-height: 48px; padding: .72em 1.45em;
  font: 400 1.0625em/1.2 var(--serif);
  text-decoration: none; border-radius: 2px;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.btn--solid { background: var(--navy); color: var(--on-navy); }
.btn--solid:hover { background: var(--navy-hover); }
.btn--sm { min-height: 44px; font-size: 1rem; padding: .6em 1.2em; }

.link {
  display: inline-flex; align-items: center; gap: .6em;
  padding-bottom: .3em;
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(var(--gold), var(--gold)) left bottom / 100% 1px no-repeat;
  transition: background-size .35s var(--ease), color .2s;
}
.link:hover { color: var(--navy-hover); background-size: 100% 2px; }

.arrow { display: inline-block; transition: transform .3s var(--ease); }
a:hover .arrow { transform: translateX(4px); }
a:hover .arrow--up { transform: translate(2px, -2px); }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand__mark { width: clamp(30px, 2.6vw, 38px); height: auto; aspect-ratio: 1; flex: none; }
.brand__name { font-size: clamp(1.35rem, 1.1rem + .9vw, 1.9rem); letter-spacing: -.01em; line-height: 1; }
.brand--light { color: var(--on-navy); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 20;
  height: var(--header-h);
  border-bottom: 1px solid rgba(168, 138, 90, .35);
  transition: height .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  height: 64px;
  background: var(--paper);
  border-bottom-color: var(--hairline);
  box-shadow: 0 12px 28px -24px rgba(15, 31, 43, .45);
}
.site-header.is-scrolled .brand__mark { width: 30px; }
.site-header.is-scrolled .brand__name { font-size: 1.4rem; }

/* Anchor jumps land below the fixed header. */
[id] { scroll-margin-top: 72px; }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 40px); }
.site-nav ul { display: flex; gap: clamp(18px, 2.2vw, 34px); }
.site-nav ul a {
  font-family: var(--sans); font-size: .875rem; letter-spacing: .04em;
  text-decoration: none; color: var(--ink);
  padding: 6px 0;
  background: linear-gradient(var(--gold), var(--gold)) left bottom / 0 1px no-repeat;
  transition: background-size .3s var(--ease);
}
.site-nav ul a:hover { background-size: 100% 1px; }

/* Desktop: links sit on the paper next to the logo; the CTA sits over the art, as in the design. */
@media (min-width: 900px) {
  .site-header__inner { justify-content: flex-start; }
  .site-nav { flex: 1; justify-content: space-between; margin-left: clamp(28px, 3.6vw, 56px); }

  .site-header .btn {
    background: var(--paper); color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--gold-rule), 0 6px 18px -10px rgba(15, 31, 43, .5);
  }
  .site-header .btn:hover { background: #fff; }
  .site-header.is-scrolled .btn { background: var(--navy); color: var(--on-navy); box-shadow: none; }
  .site-header.is-scrolled .btn:hover { background: var(--navy-hover); }
}

/* Mid-size screens: the nav reaches over the photo, so fade a strip of paper in behind it. */
@media (min-width: 900px) and (max-width: 1279px) {
  .site-header:not(.is-scrolled) {
    background: linear-gradient(90deg, rgba(248, 244, 236, .94) 0, rgba(248, 244, 236, .94) 52%, rgba(248, 244, 236, 0) 78%);
  }
}

.nav-toggle { display: none; }

@media (max-width: 899px) {
  /* On phones the header sits over plain paper, so keep it solid at all times. */
  .site-header { background: var(--paper); }

  .nav-toggle {
    display: inline-grid; place-items: center;
    width: 48px; height: 48px; margin-right: -10px;
    background: none; border: 0; cursor: pointer; color: var(--ink);
  }
  .nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
    display: block; width: 22px; height: 1.5px; background: currentColor; border-radius: 1px;
    transition: transform .3s var(--ease), background-color .2s;
  }
  .nav-toggle__bars { position: relative; }
  .nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
  .nav-toggle__bars::before { top: -7px; }
  .nav-toggle__bars::after  { top: 7px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 20px;
    padding: 12px var(--gutter) 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 18px 30px -24px rgba(15, 31, 43, .35);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a {
    display: block; padding: 14px 0; font-family: var(--serif); font-size: 1.35rem; letter-spacing: 0;
    border-bottom: 1px solid var(--hairline); background: none;
  }
  .site-nav .btn { justify-content: center; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(560px, 58vw, 860px);
  display: flex; align-items: center;
  padding-top: var(--header-h);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  isolation: isolate;
}

.hero__art {
  position: absolute; z-index: -1;
  top: 0; right: 0; bottom: 0;
  width: 62%;
}
.hero__art img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 100% 30%;
  /* Feather into the paper so the seam never shows, at any width. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 30%);
          mask-image: linear-gradient(90deg, transparent 0, #000 30%);
}

.hero__inner { position: relative; }
.hero__copy { max-width: 50%; padding-block: clamp(40px, 5vw, 72px); }

.hero__title {
  margin-top: clamp(22px, 2.6vw, 36px);
  font-size: clamp(2.4rem, .8rem + 2.9vw, 3.7rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.028em;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
}

.hero__title .line { display: block; white-space: nowrap; }

.hero__lede { margin-top: clamp(18px, 2vw, 28px); max-width: 34ch; font-size: 1.12em; line-height: 1.45; }

.hero__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px clamp(22px, 2.6vw, 34px);
  margin-top: clamp(26px, 2.8vw, 40px);
}

.hero__motto {
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: clamp(18px, 2vw, 26px);
  max-width: 400px;
  border-top: 1px solid var(--gold-rule);
  font-style: italic;
  color: var(--gold-text);
}

@media (max-width: 899px) {
  .hero { display: block; min-height: 0; padding-top: 0; }
  .hero__copy { max-width: 36rem; padding-block: 44px 8px; }
  .hero__lede { max-width: 34ch; }
  .hero__art {
    position: relative; z-index: 0; width: 100%;
    height: clamp(260px, 72vw, 480px);
    margin-top: var(--header-h);
  }
  .hero__art img {
    object-position: 74% 28%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10%);
            mask-image: linear-gradient(180deg, transparent 0, #000 10%);
  }
  .hero__motto { margin-top: 36px; }
}

@media (max-width: 600px) {
  .hero__copy { padding-block: 32px 4px; }
  .hero__title {
    margin-top: 18px;
    font-size: clamp(2.1rem, 9.4vw, 2.6rem);
    line-height: 1.08;
    text-wrap: balance;
  }
  .hero__title .line { display: inline; white-space: normal; }
  .hero__lede { margin-top: 16px; font-size: 1.05em; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 18px; margin-top: 26px; }
  .hero__actions .btn { justify-content: center; }
  .hero__actions .link { align-self: flex-start; }
  .hero__motto { margin-top: 30px; padding-top: 16px; }
}

/* ==========================================================================
   Two paths
   ========================================================================== */
.paths { background: var(--paper-deep); }
.paths__grid { display: grid; grid-template-columns: 1fr 1fr; }

.path {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 12px;
  padding-block: clamp(44px, 4.6vw, 64px) 0;
}
.path + .path { padding-left: clamp(28px, 3.4vw, 48px); border-left: 1px solid var(--hairline); }
.path:first-child { padding-right: clamp(20px, 2vw, 28px); }

.path__copy { align-self: start; padding-bottom: clamp(36px, 4vw, 56px); }
.path__title {
  margin-top: clamp(18px, 2vw, 26px);
  font-size: clamp(2rem, 1rem + 2.2vw, 3.3rem);
  font-weight: 400; line-height: 1.08; letter-spacing: -.02em;
  color: var(--ink); max-width: 15ch; text-wrap: balance;
}
@media (min-width: 900px) { .path__title .line { display: block; white-space: nowrap; } }
.path__text { margin-top: 18px; max-width: 34ch; font-size: .92em; line-height: 1.55; }
.path .link { margin-top: clamp(22px, 2.4vw, 32px); }

.path__bust { width: auto; height: clamp(220px, 26vw, 380px); margin-right: -8px; }

/* Busts are feathered at the edges so their backdrop dissolves into the page. */
.bust {
  -webkit-mask-image:
    linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent),
    linear-gradient(180deg, transparent, #000 12%, #000 78%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent),
    linear-gradient(180deg, transparent, #000 12%, #000 78%, transparent);
  mask-composite: intersect;
  /* The art sits on near-white; "darken" drops that backdrop onto the section colour. */
  mix-blend-mode: darken;
  transition: transform .6s var(--ease);
}
.path:hover .bust, .hall:hover .bust { transform: translateY(-4px); }

@media (max-width: 899px) {
  .paths__grid { grid-template-columns: 1fr; }
  .path + .path { padding-left: 0; border-left: 0; border-top: 1px solid var(--hairline); }
  .path:first-child { padding-right: 0; }
  .path__bust { height: clamp(200px, 38vw, 290px); margin-right: -6px; }
}
@media (max-width: 600px) {
  .path { grid-template-columns: 1fr; gap: 0; padding-block: 36px 44px; text-align: center; }
  .path__bust { order: -1; justify-self: center; height: 230px; margin: 0 0 8px; }
  .path__copy { padding-bottom: 0; }
  .path .eyebrow { justify-content: center; }
  .path .eyebrow::before { content: ""; flex: 0 0 auto; width: 28px; height: 1px; background: var(--gold); }
  .path__title { margin-inline: auto; margin-top: 14px; }
  .path__text { margin-inline: auto; margin-top: 14px; }
  .path .link { margin-top: 20px; }
}

/* ==========================================================================
   Academy
   ========================================================================== */
.academy { background: var(--paper); padding-block: clamp(56px, 6vw, 92px) clamp(52px, 5vw, 80px); }

.academy__head { text-align: center; }
.academy__title {
  display: flex; align-items: center; gap: clamp(20px, 3.4vw, 48px);
  font-size: clamp(2.3rem, 1.3rem + 3vw, 4rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -.02em; color: var(--ink);
}
.academy__title::before, .academy__title::after {
  content: ""; flex: 1 1 0; height: 1px; background: var(--gold-rule);
}
.academy__sub { margin-top: 10px; }
@media (max-width: 480px) {
  .academy__title { justify-content: center; }
  .academy__title::before, .academy__title::after { display: none; }
}

.halls {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(28px, 3.4vw, 48px);
}
.hall {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 clamp(16px, 3vw, 44px);
}
.hall + .hall { border-left: 1px solid var(--hairline); }

.hall__bust { width: auto; height: clamp(200px, 19vw, 280px); }
.hall__title {
  margin-top: 6px;
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2.05rem);
  font-weight: 400; line-height: 1.15; color: var(--ink);
}
.hall__kind {
  margin-top: 12px;
  font-family: var(--sans); font-size: .75rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.hall__kind .numeral { margin-right: .7em; font-size: 1.15em; letter-spacing: .1em; }
.hall__kind::after { content: ""; display: block; width: 28px; height: 1px; margin: 14px auto 0; background: var(--gold); }
.hall__text { margin-top: 16px; max-width: 24ch; font-size: .92em; line-height: 1.5; }
.hall .link { margin-top: auto; }
.hall__text { margin-bottom: 22px; }

@media (max-width: 760px) {
  .halls { grid-template-columns: 1fr; margin-top: 12px; }
  .hall { padding: 28px 0 36px; }
  .hall + .hall { border-left: 0; border-top: 1px solid var(--hairline); }
  .hall__bust { height: 200px; }
  .hall__text { margin-bottom: 18px; }
}

/* ==========================================================================
   How it works
   ========================================================================== */
.steps {
  background: var(--paper-deep);
  border-top: 1px solid var(--hairline);
  padding-block: clamp(60px, 6vw, 100px);
}
.steps__head { max-width: 44rem; }
.steps__title {
  margin-top: clamp(16px, 1.8vw, 24px);
  font-size: clamp(2.3rem, 1.3rem + 3vw, 4rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -.02em; color: var(--ink);
}
.steps__sub { margin-top: 14px; max-width: 40ch; }

.steps__list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(36px, 4vw, 60px);
  border-top: 1px solid var(--gold-rule);
}
.step { padding: clamp(28px, 3vw, 44px) clamp(20px, 3vw, 44px) 0 0; }
.step + .step { padding-left: clamp(20px, 3vw, 44px); border-left: 1px solid var(--hairline); }

.step__num {
  display: block;
  font-size: clamp(3.2rem, 2rem + 3.2vw, 5.4rem);
  line-height: .9; letter-spacing: .04em;
  color: var(--gold);
  font-variation-settings: "opsz" 72;
}
.step__meta {
  margin-top: clamp(18px, 2vw, 26px);
  font-family: var(--sans); font-size: .75rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--muted);
}
.step__title {
  margin-top: 10px;
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2.05rem);
  font-weight: 400; line-height: 1.15; color: var(--ink);
}
.step__text { margin-top: 12px; max-width: 34ch; font-size: .92em; line-height: 1.55; }

.steps__cta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px;
  margin-top: clamp(40px, 4.4vw, 64px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--hairline);
}
.steps__note { font-family: var(--sans); font-size: .8125rem; color: var(--muted); }

@media (max-width: 760px) {
  .steps__list { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 30px 0; border-left: 0; }
  .step + .step { border-top: 1px solid var(--hairline); }
  .step__text { max-width: none; }
}
@media (max-width: 600px) {
  .step__num { font-size: 2.8rem; }
  .steps__cta { flex-direction: column; align-items: stretch; text-align: center; }
  .steps__cta .btn { justify-content: center; }
}

/* ==========================================================================
   Closing banner + colophon
   ========================================================================== */
.site-footer { background: var(--navy); color: var(--on-navy); }

.closing { position: relative; overflow: hidden; isolation: isolate; }
.closing__art { position: absolute; z-index: -1; top: 0; right: 0; bottom: 0; width: 56%; }
.closing__art img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20%);
          mask-image: linear-gradient(90deg, transparent 0, #000 20%);
}

.closing__inner {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .6fr) minmax(0, 1fr);
  align-items: center; gap: 32px;
  min-height: clamp(220px, 18vw, 280px);
  padding-block: clamp(36px, 3.6vw, 52px);
}
.closing__title {
  font-size: clamp(1.9rem, 1.1rem + 2vw, 3rem);
  line-height: 1.12; letter-spacing: -.015em;
}
.closing__title::after { content: ""; display: block; width: 44px; height: 1px; margin: clamp(18px, 1.8vw, 26px) 0; background: var(--gold); }

.values {
  justify-self: start;
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase; line-height: 2;
  color: var(--on-navy-soft);
}
.values .numeral { display: inline-block; width: 2.4em; font-size: 1.1em; letter-spacing: .08em; color: var(--gold); }
.values::after { content: ""; display: block; width: 28px; height: 1px; margin-top: 14px; background: var(--gold); }

.colophon { border-top: 1px solid rgba(201, 180, 143, .22); }
.colophon__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 28px;
  padding-block: 20px;
  font-family: var(--sans); font-size: .8125rem; color: rgba(244, 238, 227, .7);
}
.colophon ul { display: flex; flex-wrap: wrap; gap: 6px 24px; }
.colophon a { text-decoration: none; padding: 6px 0; }
.colophon a:hover { color: var(--on-navy); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--gold); }

@media (max-width: 760px) {
  .closing__art { position: relative; width: 100%; height: clamp(200px, 56vw, 300px); }
  .closing__art img {
    object-position: 78% 45%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 40%);
            mask-image: linear-gradient(180deg, transparent 0, #000 40%);
  }
  .closing__inner { grid-template-columns: 1fr; min-height: 0; }
}

/* ==========================================================================
   Floating WhatsApp button — phones only, hidden over the hero and the footer
   ========================================================================== */
.wa-fab { display: none; }

@media (max-width: 899px) {
  .wa-fab {
    position: fixed; z-index: 15;
    right: 16px; bottom: calc(16px + env(safe-area-inset-bottom));
    display: inline-flex; align-items: center; gap: 10px;
    height: 52px; padding: 0 22px 0 16px;
    border-radius: 999px;
    background: var(--navy); color: var(--on-navy);
    font: 400 1.0625rem/1 var(--serif); text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(201, 180, 143, .45), 0 12px 26px -10px rgba(15, 31, 43, .55);
    transition: transform .35s var(--ease), opacity .35s var(--ease), visibility 0s linear 0s;
  }
  .wa-fab svg { width: 24px; height: 24px; flex: none; }
  .js .wa-fab:not(.is-visible) {
    transform: translateY(calc(100% + 24px)); opacity: 0; visibility: hidden;
    transition: transform .35s var(--ease), opacity .35s var(--ease), visibility 0s linear .35s;
  }
}
@media (max-width: 600px) {
  .wa-fab { width: 56px; height: 56px; padding: 0; justify-content: center; }
  .wa-fab svg { width: 26px; height: 26px; }
  .wa-fab span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .bust, .arrow, .link, .btn, .site-nav, .site-header, .wa-fab, .nav-toggle__bars,
  .nav-toggle__bars::before, .nav-toggle__bars::after { transition: none; }
}
