/* =========================================================
   Marchetti Workplace Law — Chicago Employee-Side Employment Demo
   Standalone. No Tailwind. No shared dependencies.
   Namespace prefix: mw-
   Design: editorial broadsheet — off-white, near-black, editorial red
   ========================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Palette */
  --mw-paper:       #f4f1ec;
  --mw-paper-2:     #ede9e1;
  --mw-paper-3:     #e5e0d6;
  --mw-charcoal:    #181715;
  --mw-charcoal-2:  #242220;
  --mw-charcoal-3:  #2e2c29;
  --mw-charcoal-4:  #403e3a;
  --mw-red:         #c0281c;
  --mw-red-dk:      #9e1e14;
  --mw-red-dim:     rgba(192, 40, 28, 0.12);

  /* Text */
  --mw-ink:         #181715;
  --mw-ink-2:       #3a3835;
  --mw-ink-3:       #6a6660;
  --mw-ink-4:       #9a9590;
  --mw-ink-light:   #f4f1ec;
  --mw-ink-light-2: #ccc8c0;

  /* Rules */
  --mw-rule:        #d0ccc4;
  --mw-rule-heavy:  #a09890;
  --mw-rule-red:    rgba(192, 40, 28, 0.3);
  --mw-rule-light:  rgba(244, 241, 236, 0.15);
  --mw-rule-light-heavy: rgba(244, 241, 236, 0.30);

  /* Typography */
  --mw-ff-display: "Archivo", "Archivo Expanded", "Impact", system-ui, sans-serif;
  --mw-ff-body:    "IBM Plex Sans", system-ui, sans-serif;

  /* Layout */
  --mw-max:    1240px;
  --mw-pad-x:  clamp(20px, 4.5vw, 72px);
  --mw-sec-y:  clamp(80px, 9vw, 120px);

  /* Radii — minimal, newspaper feel */
  --mw-r-sm:   2px;
  --mw-r-md:   4px;

  /* Motion */
  --mw-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--mw-ff-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--mw-paper);
  color: var(--mw-ink-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
address { font-style: normal; }
ol, ul { list-style: none; margin: 0; padding: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
legend { padding: 0; }

::selection { background: var(--mw-red); color: var(--mw-paper); }

/* ---------- 3. Skip Link ---------- */
.mw-skip {
  position: absolute;
  left: -9999px;
  top: 4px;
  background: var(--mw-red);
  color: var(--mw-paper);
  padding: 10px 20px;
  font-family: var(--mw-ff-body);
  font-weight: 600;
  z-index: 300;
}
.mw-skip:focus { left: 16px; }

/* ---------- 4. Typography ---------- */
.mw-display {
  font-family: var(--mw-ff-display);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--mw-ink);
  margin: 0;
}
.mw-display--section {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.92;
}
.mw-display--light { color: var(--mw-paper); }

.mw-kicker {
  font-family: var(--mw-ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mw-ink-3);
  margin: 0 0 20px;
  display: block;
}

.mw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mw-ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--mw-red);
  margin: 0 0 18px;
}
.mw-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--mw-red);
  flex-shrink: 0;
}
.mw-eyebrow--light { color: var(--mw-paper); }
.mw-eyebrow--light::before { background: var(--mw-paper); }

.mw-section-head { margin-bottom: 52px; }
.mw-section-head .mw-display--section { margin: 10px 0 18px; }
.mw-section-head__body {
  font-size: 16px;
  color: var(--mw-ink-3);
  max-width: 56ch;
  margin: 0;
  line-height: 1.7;
}
.mw-section-head--center { text-align: center; }
.mw-section-head--center .mw-eyebrow { display: inline-flex; }
.mw-section-head--center .mw-section-head__body { margin: 0 auto; }

/* ---------- 5. Buttons ---------- */
.mw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  font-family: var(--mw-ff-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  border-radius: var(--mw-r-sm);
  transition:
    background 0.2s var(--mw-ease),
    color 0.2s var(--mw-ease),
    border-color 0.2s var(--mw-ease),
    box-shadow 0.2s var(--mw-ease);
}
.mw-btn:focus-visible {
  outline: 3px solid var(--mw-red);
  outline-offset: 3px;
}
.mw-btn--lg  { height: 56px; padding: 0 32px; font-size: 14px; }
.mw-btn--full { width: 100%; }

.mw-btn--primary {
  background: var(--mw-red);
  color: var(--mw-paper);
  border-color: var(--mw-red);
}
.mw-btn--primary:hover {
  background: var(--mw-red-dk);
  border-color: var(--mw-red-dk);
  box-shadow: 0 8px 24px -6px rgba(192, 40, 28, 0.45);
}

.mw-btn--outline {
  background: transparent;
  color: var(--mw-ink);
  border-color: var(--mw-ink);
}
.mw-btn--outline:hover {
  background: var(--mw-ink);
  color: var(--mw-paper);
}

.mw-btn--ghost {
  background: transparent;
  color: var(--mw-paper);
  border-color: var(--mw-rule-light-heavy);
}
.mw-btn--ghost:hover {
  border-color: var(--mw-paper);
}

.mw-btn--red {
  background: var(--mw-red);
  color: var(--mw-paper);
  border-color: var(--mw-red);
}
.mw-btn--red:hover {
  background: var(--mw-red-dk);
  border-color: var(--mw-red-dk);
}

/* ---------- 6. Navigation ---------- */
.mw-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--mw-charcoal);
  border-bottom: 3px solid var(--mw-red);
}
.mw-nav__inner {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 0 var(--mw-pad-x);
  height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* Brand */
.mw-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mw-ff-display);
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--mw-paper);
  white-space: nowrap;
}
.mw-brand em {
  font-style: normal;
  color: var(--mw-red);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 2px;
}
.mw-brand__rule {
  display: block;
  width: 3px;
  height: 34px;
  background: var(--mw-red);
  flex-shrink: 0;
}

/* Nav links */
.mw-nav__links {
  justify-self: center;
  display: flex;
  gap: 2px;
}
.mw-nav__links a {
  font-family: var(--mw-ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mw-ink-light-2);
  padding: 8px 12px;
  border-radius: var(--mw-r-sm);
  transition: color 0.2s, background 0.2s;
}
.mw-nav__links a:hover {
  color: var(--mw-paper);
  background: var(--mw-charcoal-3);
}
.mw-nav__links a:focus-visible {
  outline: 2px solid var(--mw-red);
  outline-offset: 2px;
}

/* Nav right */
.mw-nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mw-nav__phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--mw-paper);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mw-nav__phone:hover { color: var(--mw-red); }

/* Hamburger */
.mw-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--mw-charcoal-3);
  border: 1px solid var(--mw-rule-light);
  border-radius: var(--mw-r-sm);
  padding: 0;
}
.mw-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--mw-paper);
  border-radius: 1px;
  transition: transform 0.25s var(--mw-ease), opacity 0.25s;
}
.mw-nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mw-nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mw-nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mw-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 16px var(--mw-pad-x) 28px;
  border-top: 1px solid var(--mw-rule-light);
  background: var(--mw-charcoal-2);
}
.mw-drawer.is-open { display: flex; }
.mw-drawer nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.mw-drawer nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--mw-rule-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--mw-ink-light-2);
  transition: color 0.2s;
}
.mw-drawer nav a:hover { color: var(--mw-paper); }
.mw-drawer__cta { align-self: flex-start; margin-top: 4px; }
.mw-drawer__note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--mw-ink-4);
  line-height: 1.5;
  max-width: 42ch;
}

@media (max-width: 1020px) {
  .mw-nav__links { display: none; }
  .mw-nav__phone { display: none; }
  .mw-nav__inner .mw-btn { display: none; }
  .mw-nav__toggle { display: flex; }
  .mw-nav__inner { grid-template-columns: auto 1fr; }
}

/* ---------- 7. Hero ---------- */
.mw-hero {
  background: var(--mw-paper);
  border-bottom: 3px solid var(--mw-charcoal);
  padding: clamp(60px, 8vw, 100px) 0 0;
  overflow: hidden;
}
.mw-hero__inner {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 0 var(--mw-pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.mw-hero__content { padding-bottom: clamp(60px, 7vw, 90px); }
.mw-hero .mw-display { margin-bottom: 0; }
.mw-hero__rule {
  height: 4px;
  background: var(--mw-red);
  width: 80px;
  margin: 24px 0;
}
.mw-hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--mw-ink-2);
  margin: 0 0 20px;
  max-width: 52ch;
}
.mw-hero__confidential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mw-ink-3);
  background: var(--mw-paper-2);
  border: 1px solid var(--mw-rule);
  border-left: 3px solid var(--mw-red);
  padding: 10px 14px;
  margin-bottom: 32px;
  line-height: 1.4;
}
.mw-hero__confidential svg { flex-shrink: 0; color: var(--mw-red); }
.mw-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mw-hero__media {
  position: relative;
  align-self: end;
  border-top: 4px solid var(--mw-charcoal);
}
.mw-hero__media img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.mw-hero__media-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--mw-charcoal);
  color: var(--mw-ink-light-2);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
}
.mw-hero__media-line {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--mw-red);
}
.mw-hero__bottom-rule {
  height: 6px;
  background: var(--mw-charcoal);
  margin-top: 0;
}

@media (max-width: 860px) {
  .mw-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .mw-hero__media { display: none; }
  .mw-hero__content { padding-bottom: 60px; }
}

/* ---------- 8. Credibility Strip ---------- */
.mw-creds {
  background: var(--mw-charcoal);
  border-bottom: 3px solid var(--mw-red);
  padding: 0;
}
.mw-creds__inner {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 0 var(--mw-pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mw-cred {
  display: grid;
  gap: 4px;
  padding: 28px 0;
  border-right: 1px solid var(--mw-rule-light);
  padding-right: 32px;
  align-content: start;
}
.mw-cred:first-child { padding-left: 0; }
.mw-cred:last-child { border-right: 0; }
.mw-cred + .mw-cred { padding-left: 32px; }
.mw-cred strong {
  font-family: var(--mw-ff-display);
  font-weight: 900;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--mw-paper);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.mw-cred span {
  font-size: 12px;
  font-weight: 500;
  color: var(--mw-ink-4);
  line-height: 1.4;
}

@media (max-width: 760px) {
  .mw-creds__inner { grid-template-columns: 1fr 1fr; }
  .mw-cred:nth-child(2) { border-right: 0; }
  .mw-cred:nth-child(3) { padding-left: 0; border-right: 1px solid var(--mw-rule-light); }
  .mw-cred:nth-child(4) { border-right: 0; }
}
@media (max-width: 480px) {
  .mw-creds__inner { grid-template-columns: 1fr; }
  .mw-cred { border-right: 0; border-bottom: 1px solid var(--mw-rule-light); padding-left: 0; padding-right: 0; }
  .mw-cred + .mw-cred { padding-left: 0; }
  .mw-cred:last-child { border-bottom: 0; }
}

/* ---------- 9. What We Handle ---------- */
.mw-handles {
  background: var(--mw-paper);
  padding: var(--mw-sec-y) 0;
  border-bottom: 1px solid var(--mw-rule);
}
.mw-handles__inner {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 0 var(--mw-pad-x);
}
.mw-handles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 4px solid var(--mw-charcoal);
}
@media (max-width: 760px) { .mw-handles__grid { grid-template-columns: 1fr; } }

.mw-handle-card {
  padding: 32px 28px;
  border-bottom: 1px solid var(--mw-rule);
  border-right: 1px solid var(--mw-rule);
  position: relative;
  transition: background 0.2s var(--mw-ease);
}
.mw-handle-card:hover { background: var(--mw-paper-2); }
.mw-handle-card:nth-child(even) { border-right: 0; }
@media (max-width: 760px) {
  .mw-handle-card { border-right: 0; }
}

.mw-handle-card__num {
  font-family: var(--mw-ff-display);
  font-weight: 900;
  font-size: 56px;
  color: var(--mw-rule);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.mw-handle-card h3 {
  font-family: var(--mw-ff-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--mw-ink);
  margin: 0 0 12px;
  line-height: 1.1;
  border-bottom: 2px solid var(--mw-red);
  padding-bottom: 10px;
}
.mw-handle-card p {
  font-size: 14.5px;
  color: var(--mw-ink-3);
  margin: 0;
  line-height: 1.7;
}

/* ---------- 10. Self-Screen ---------- */
.mw-screen {
  background: var(--mw-charcoal);
  padding: var(--mw-sec-y) 0;
  border-top: 6px solid var(--mw-red);
  border-bottom: 6px solid var(--mw-red);
}
.mw-screen__inner {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 0 var(--mw-pad-x);
}
.mw-screen__header {
  margin-bottom: 48px;
}
.mw-screen__header .mw-display--section { margin: 10px 0 16px; }
.mw-screen__intro {
  font-size: 16px;
  color: var(--mw-ink-light-2);
  max-width: 60ch;
  margin: 0;
  line-height: 1.7;
}

/* Widget */
.mw-screen__widget {
  background: var(--mw-charcoal-2);
  border: 1px solid var(--mw-rule-light);
  border-top: 4px solid var(--mw-red);
  padding: clamp(28px, 4vw, 48px);
  max-width: 760px;
}

/* Progress */
.mw-screen__progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.mw-screen__progress-bar {
  flex: 1;
  height: 3px;
  background: var(--mw-charcoal-3);
  border-radius: 2px;
  overflow: hidden;
}
.mw-screen__progress-fill {
  height: 100%;
  background: var(--mw-red);
  border-radius: 2px;
  transition: width 0.4s var(--mw-ease);
  width: 20%;
}
.mw-screen__progress-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--mw-ink-4);
  white-space: nowrap;
}

/* Question */
.mw-screen__q { display: block; }
.mw-screen__q--hidden { display: none; }

.mw-screen__q-legend {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--mw-ff-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--mw-paper);
  line-height: 1.1;
  margin-bottom: 28px;
  width: 100%;
}
.mw-screen__q-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--mw-red);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -6px;
  font-family: var(--mw-ff-display);
  letter-spacing: -0.04em;
}

.mw-screen__options {
  display: grid;
  gap: 8px;
}
.mw-screen__option {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 14px 16px;
  background: var(--mw-charcoal-3);
  border: 1px solid transparent;
  border-radius: var(--mw-r-sm);
  transition: border-color 0.2s, background 0.2s;
}
.mw-screen__option:hover {
  background: var(--mw-charcoal-4);
  border-color: var(--mw-rule-light-heavy);
}
.mw-screen__option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--mw-ink-4);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.mw-screen__option input[type="radio"]:checked {
  border-color: var(--mw-red);
  background: var(--mw-red);
}
.mw-screen__option input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mw-paper);
}
.mw-screen__option input[type="radio"]:focus-visible {
  outline: 2px solid var(--mw-red);
  outline-offset: 2px;
}
.mw-screen__option:has(input:checked) {
  background: var(--mw-charcoal-4);
  border-color: var(--mw-red);
}
.mw-screen__option span {
  font-size: 15px;
  color: var(--mw-ink-light-2);
  line-height: 1.4;
}

/* Screen nav */
.mw-screen__nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--mw-rule-light);
}
.mw-screen__nav .mw-btn--ghost:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Result */
.mw-screen__result { margin-top: 28px; }
.mw-screen__result-inner {
  border-top: 4px solid var(--mw-red);
  padding: 28px;
  background: var(--mw-charcoal-3);
  margin-bottom: 24px;
}
.mw-screen__result-inner h3 {
  font-family: var(--mw-ff-display);
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 30px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--mw-paper);
  margin: 0 0 14px;
  line-height: 1.05;
}
.mw-screen__result-inner p {
  font-size: 15px;
  color: var(--mw-ink-light-2);
  margin: 0 0 12px;
  line-height: 1.7;
}
.mw-screen__result-inner p:last-child { margin-bottom: 0; }
.mw-screen__result-inner ul {
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}
.mw-screen__result-inner li {
  font-size: 14px;
  color: var(--mw-ink-light-2);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.mw-screen__result-inner li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--mw-red);
  font-weight: 700;
}
.mw-screen__result-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.mw-screen__result-fine {
  font-size: 12px;
  color: var(--mw-ink-4);
  line-height: 1.65;
  margin: 0;
  max-width: 72ch;
  border-left: 3px solid var(--mw-rule-light-heavy);
  padding-left: 14px;
}

/* ---------- 11. Evidence Checklist ---------- */
.mw-checklist {
  background: var(--mw-paper-2);
  border-bottom: 1px solid var(--mw-rule);
  padding: var(--mw-sec-y) 0;
}
.mw-checklist__inner {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 0 var(--mw-pad-x);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 860px) { .mw-checklist__inner { grid-template-columns: 1fr; } }

.mw-checklist__header .mw-display--section { margin: 10px 0 18px; }
.mw-checklist__intro {
  font-size: 15px;
  color: var(--mw-ink-3);
  line-height: 1.7;
  margin: 0;
  max-width: 48ch;
}

.mw-checklist__widget {
  background: var(--mw-paper);
  border: 1px solid var(--mw-rule);
  border-top: 4px solid var(--mw-charcoal);
  padding: 0;
}
.mw-checklist__count {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mw-ink-3);
  padding: 16px 24px;
  border-bottom: 1px solid var(--mw-rule);
  margin: 0;
}
.mw-checklist__list { display: grid; gap: 0; }

.mw-check-item {
  border-bottom: 1px solid var(--mw-rule);
  transition: background 0.2s;
}
.mw-check-item.is-checked { background: var(--mw-paper-2); }
.mw-check-item:last-child { border-bottom: 0; }

.mw-check-label {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: 14px;
  padding: 18px 24px;
  cursor: pointer;
}
.mw-check-input { display: none; }
.mw-check-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--mw-rule-heavy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 1px;
  position: relative;
}
.mw-check-input:checked ~ .mw-check-box {
  background: var(--mw-charcoal);
  border-color: var(--mw-charcoal);
}
.mw-check-input:checked ~ .mw-check-box::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--mw-paper);
  border-bottom: 2px solid var(--mw-paper);
  top: 4px;
  left: 3px;
  transform: rotate(-45deg);
}
.mw-check-input:focus-visible ~ .mw-check-box {
  outline: 2px solid var(--mw-red);
  outline-offset: 2px;
}
.mw-check-content {
  display: grid;
  gap: 4px;
}
.mw-check-content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--mw-ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mw-check-item.is-checked .mw-check-content strong {
  color: var(--mw-ink-3);
  text-decoration: line-through;
  text-decoration-color: var(--mw-red);
}
.mw-check-content span {
  font-size: 13px;
  color: var(--mw-ink-3);
  line-height: 1.55;
}
.mw-checklist__footer {
  padding: 20px 24px;
  background: var(--mw-charcoal);
  border-top: 3px solid var(--mw-red);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mw-checklist__complete-msg {
  font-size: 14px;
  font-weight: 600;
  color: var(--mw-ink-light-2);
  margin: 0;
}

/* ---------- 12. Outcomes ---------- */
.mw-outcomes {
  background: var(--mw-paper);
  padding: var(--mw-sec-y) 0;
  border-bottom: 1px solid var(--mw-rule);
}
.mw-outcomes__inner {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 0 var(--mw-pad-x);
}
.mw-outcomes .mw-section-head { margin-bottom: 16px; }
.mw-outcomes .mw-display--section { margin: 10px 0 16px; }
.mw-outcomes__disclaimer {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--mw-ink-3);
  border: 1px solid var(--mw-rule);
  border-left: 3px solid var(--mw-rule-heavy);
  padding: 10px 14px;
  line-height: 1.5;
  max-width: 68ch;
  margin: 0 0 48px;
}
.mw-outcomes__disclaimer svg { flex-shrink: 0; margin-top: 1px; color: var(--mw-ink-3); }

.mw-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--mw-charcoal);
}
@media (max-width: 900px) { .mw-outcomes__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .mw-outcomes__grid { grid-template-columns: 1fr; } }

.mw-outcome {
  padding: 28px 24px;
  border-right: 1px solid var(--mw-rule);
  border-bottom: 1px solid var(--mw-rule);
  background: var(--mw-paper);
  transition: background 0.2s;
}
.mw-outcome:hover { background: var(--mw-paper-2); }
.mw-outcome:nth-child(3n) { border-right: 0; }
.mw-outcome--featured {
  background: var(--mw-charcoal);
  border-color: var(--mw-charcoal);
}
.mw-outcome--featured:hover { background: var(--mw-charcoal-2); }
.mw-outcome__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mw-paper);
  background: var(--mw-red);
  padding: 4px 10px;
  margin-bottom: 12px;
}
.mw-outcome--featured .mw-outcome__tag {
  background: var(--mw-paper);
  color: var(--mw-charcoal);
}
.mw-outcome h3 {
  font-family: var(--mw-ff-display);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 19px);
  text-transform: uppercase;
  color: var(--mw-ink);
  margin: 0 0 10px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.mw-outcome--featured h3 { color: var(--mw-paper); }
.mw-outcome p {
  font-size: 13.5px;
  color: var(--mw-ink-3);
  margin: 0;
  line-height: 1.6;
}
.mw-outcome--featured p { color: var(--mw-ink-light-2); }

@media (max-width: 900px) {
  .mw-outcome:nth-child(3n) { border-right: 1px solid var(--mw-rule); }
  .mw-outcome:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  .mw-outcome { border-right: 0; }
  .mw-outcome:nth-child(n) { border-right: 0; }
}

/* ---------- 13. Attorneys ---------- */
.mw-attorneys {
  background: var(--mw-paper-2);
  padding: var(--mw-sec-y) 0;
  border-bottom: 1px solid var(--mw-rule);
}
.mw-attorneys__inner {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 0 var(--mw-pad-x);
}
.mw-attorneys__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .mw-attorneys__grid { grid-template-columns: 1fr; max-width: 600px; }
}

.mw-attorney {
  background: var(--mw-paper);
  border: 1px solid var(--mw-rule);
  border-top: 4px solid var(--mw-charcoal);
  overflow: hidden;
  transition: border-top-color 0.25s;
}
.mw-attorney:hover { border-top-color: var(--mw-red); }

.mw-attorney__photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--mw-paper-3);
}
.mw-attorney__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--mw-ease);
}
.mw-attorney:hover .mw-attorney__photo img { transform: scale(1.04); }

.mw-attorney__body { padding: 24px; }
.mw-attorney__name {
  font-family: var(--mw-ff-display);
  font-weight: 900;
  font-size: clamp(20px, 2vw, 24px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--mw-ink);
  margin: 0 0 4px;
  line-height: 1.05;
}
.mw-attorney__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mw-red);
  display: block;
  margin-bottom: 18px;
}
.mw-attorney__creds {
  border-top: 1px solid var(--mw-rule);
  border-bottom: 1px solid var(--mw-rule);
  padding: 14px 0;
  margin-bottom: 16px;
  display: grid;
  gap: 5px;
}
.mw-attorney__creds li {
  font-size: 12px;
  color: var(--mw-ink-3);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.mw-attorney__creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background: var(--mw-red);
}
.mw-attorney__bio {
  font-size: 13.5px;
  color: var(--mw-ink-3);
  margin: 0;
  line-height: 1.65;
}

/* ---------- 14. Fees ---------- */
.mw-fees {
  background: var(--mw-paper);
  padding: var(--mw-sec-y) 0;
  border-bottom: 1px solid var(--mw-rule);
}
.mw-fees__inner {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 0 var(--mw-pad-x);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 860px) { .mw-fees__inner { grid-template-columns: 1fr; } }

.mw-fees__text .mw-display--section { margin: 10px 0 12px; }
.mw-fees__intro {
  font-size: 16px;
  color: var(--mw-ink-3);
  margin: 0 0 36px;
  line-height: 1.6;
  max-width: 52ch;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--mw-charcoal);
}

.mw-fee-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--mw-rule);
}
.mw-fee-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.mw-fee-block__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.mw-fee-block__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mw-paper);
  background: var(--mw-charcoal);
  padding: 5px 10px;
}
.mw-fee-block h3 {
  font-family: var(--mw-ff-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--mw-ink);
  margin: 0;
}
.mw-fee-block > p {
  font-size: 15px;
  color: var(--mw-ink-2);
  line-height: 1.7;
  margin: 0 0 18px;
}
.mw-fee-list {
  display: grid;
  gap: 8px;
}
.mw-fee-list li {
  font-size: 14px;
  color: var(--mw-ink-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.mw-fee-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 2px;
  background: var(--mw-red);
}

.mw-fees__media {
  position: relative;
}
.mw-fees__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-top: 4px solid var(--mw-charcoal);
}
.mw-fees__media-note {
  background: var(--mw-charcoal);
  padding: 20px 22px;
  border-top: 3px solid var(--mw-red);
}
.mw-fees__media-note p {
  font-size: 13px;
  color: var(--mw-ink-light-2);
  margin: 0;
  line-height: 1.6;
}

/* ---------- 15. Testimonials ---------- */
.mw-testimonials {
  background: var(--mw-paper-2);
  padding: var(--mw-sec-y) 0;
  border-bottom: 1px solid var(--mw-rule);
}
.mw-testimonials__inner {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 0 var(--mw-pad-x);
}
.mw-testimonials .mw-section-head--center { max-width: 60ch; margin: 0 auto 16px; }
.mw-testimonials .mw-display--section { margin: 10px 0 14px; }
.mw-testimonials__disclaimer {
  font-size: 12px;
  color: var(--mw-ink-3);
  text-align: center;
  margin: 0 auto 48px;
  max-width: 64ch;
  display: block;
  line-height: 1.55;
}

.mw-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  border: 2px solid var(--mw-charcoal);
}
@media (max-width: 900px) { .mw-testimonials__grid { grid-template-columns: 1fr; } }

.mw-testimonial {
  margin: 0;
  background: var(--mw-paper);
  padding: 36px 28px 28px;
  border-right: 1px solid var(--mw-rule);
  display: grid;
  gap: 24px;
  align-content: space-between;
}
.mw-testimonial:last-child { border-right: 0; }
.mw-testimonial--featured {
  background: var(--mw-charcoal);
  border-color: var(--mw-charcoal);
}

.mw-testimonial blockquote {
  margin: 0;
  padding-top: 38px;
  position: relative;
}
.mw-testimonial blockquote::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 0;
  font-family: var(--mw-ff-display);
  font-size: 80px;
  color: var(--mw-red);
  line-height: 1;
  font-weight: 900;
}
.mw-testimonial--featured blockquote::before { color: rgba(192, 40, 28, 0.5); }
.mw-testimonial blockquote p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--mw-ink-2);
  line-height: 1.65;
  margin: 0;
}
.mw-testimonial--featured blockquote p { color: var(--mw-ink-light-2); }

.mw-testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--mw-rule);
}
.mw-testimonial--featured figcaption { border-color: var(--mw-rule-light); }
.mw-testimonial__avatar {
  width: 44px;
  height: 44px;
  background: var(--mw-paper-3);
  border: 2px solid var(--mw-rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--mw-ink-3);
  flex-shrink: 0;
}
.mw-testimonial--featured .mw-testimonial__avatar {
  background: var(--mw-charcoal-3);
  border-color: var(--mw-rule-light);
  color: var(--mw-ink-4);
}
.mw-testimonial figcaption strong {
  display: block;
  font-size: 14px;
  color: var(--mw-ink);
  margin-bottom: 3px;
}
.mw-testimonial--featured figcaption strong { color: var(--mw-paper); }
.mw-testimonial figcaption span {
  font-size: 11px;
  color: var(--mw-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.mw-testimonial--featured figcaption span { color: var(--mw-ink-4); }

/* ---------- 16. FAQ ---------- */
.mw-faq {
  background: var(--mw-paper);
  padding: var(--mw-sec-y) 0;
  border-bottom: 1px solid var(--mw-rule);
}
.mw-faq__inner {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 0 var(--mw-pad-x);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 860px) { .mw-faq__inner { grid-template-columns: 1fr; } }

.mw-faq__sidebar .mw-display--section { margin: 10px 0 18px; }
.mw-faq__sub {
  font-size: 15px;
  color: var(--mw-ink-3);
  margin: 0 0 28px;
}
.mw-faq__phone {
  color: var(--mw-red);
  font-weight: 700;
  transition: opacity 0.2s;
}
.mw-faq__phone:hover { opacity: 0.75; }
.mw-faq__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-top: 4px solid var(--mw-charcoal);
  display: block;
}
@media (max-width: 860px) { .mw-faq__img { display: none; } }

.mw-faq__list {
  border-top: 4px solid var(--mw-charcoal);
}
.mw-faq__list details {
  border-bottom: 1px solid var(--mw-rule);
}
.mw-faq__list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 22px 4px;
  font-family: var(--mw-ff-display);
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 18px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--mw-ink);
  transition: color 0.2s;
  line-height: 1.2;
}
.mw-faq__list summary::-webkit-details-marker { display: none; }
.mw-faq__list summary:hover { color: var(--mw-red); }
.mw-faq__list details[open] summary { color: var(--mw-red); }
.mw-faq__list details:focus-within { outline: 2px solid var(--mw-red); outline-offset: 2px; }

/* Plus/minus icon */
.mw-faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--mw-rule-heavy);
}
.mw-faq__icon::before, .mw-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--mw-ink);
  top: 50%;
  left: 50%;
  border-radius: 0;
  transition: transform 0.25s var(--mw-ease);
}
.mw-faq__icon::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.mw-faq__icon::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
}
.mw-faq__list details[open] .mw-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.mw-faq__list details[open] .mw-faq__icon::before { background: var(--mw-red); }
.mw-faq__list details[open] .mw-faq__icon::after  { background: var(--mw-red); }

.mw-faq__answer {
  padding: 0 4px 24px;
}
.mw-faq__answer p {
  margin: 0;
  font-size: 15px;
  color: var(--mw-ink-3);
  line-height: 1.72;
  max-width: 66ch;
}

/* ---------- 17. Contact ---------- */
.mw-contact {
  background: var(--mw-charcoal);
  padding: var(--mw-sec-y) 0;
  border-top: 6px solid var(--mw-red);
}
.mw-contact__inner {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 0 var(--mw-pad-x);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 860px) { .mw-contact__inner { grid-template-columns: 1fr; } }

.mw-contact__left .mw-display--section { margin: 10px 0 16px; }
.mw-contact__lede {
  font-size: 15px;
  color: var(--mw-ink-light-2);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 52ch;
}
.mw-contact__details {
  display: grid;
  gap: 12px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--mw-rule-light);
}
.mw-contact__address {
  font-size: 14px;
  color: var(--mw-ink-4);
  line-height: 1.7;
}
.mw-contact__phone-link {
  font-family: var(--mw-ff-display);
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--mw-paper);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 0.2s;
}
.mw-contact__phone-link:hover { color: var(--mw-red); }
.mw-contact__hours {
  font-size: 12px;
  color: var(--mw-ink-4);
  line-height: 1.6;
}
.mw-contact__city {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center;
  display: block;
  border-top: 3px solid var(--mw-red);
}
@media (max-width: 860px) { .mw-contact__city { display: none; } }

/* Form */
.mw-form-wrap {
  background: var(--mw-charcoal-2);
  border: 1px solid var(--mw-rule-light);
  border-top: 4px solid var(--mw-paper);
  padding: clamp(24px, 3.5vw, 40px);
}
.mw-form-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--mw-ink-4);
  line-height: 1.5;
  margin: 0 0 28px;
  background: var(--mw-charcoal-3);
  border-left: 3px solid var(--mw-red);
  padding: 12px 14px;
}
.mw-form-notice svg { flex-shrink: 0; margin-top: 1px; color: var(--mw-red); }

.mw-form { display: grid; gap: 18px; }
.mw-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .mw-form__row { grid-template-columns: 1fr; } }

.mw-form__field { display: grid; gap: 7px; }
.mw-form__field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--mw-ink-light-2);
}
.mw-form__field label span[aria-hidden="true"] { color: var(--mw-red); }
.mw-form__optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mw-ink-4);
  font-size: 11px;
}
.mw-form__field input,
.mw-form__field select,
.mw-form__field textarea {
  background: var(--mw-charcoal);
  border: 1px solid var(--mw-rule-light-heavy);
  color: var(--mw-paper);
  font-family: var(--mw-ff-body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--mw-r-sm);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.mw-form__field input::placeholder,
.mw-form__field textarea::placeholder { color: var(--mw-ink-4); }
.mw-form__field input:focus,
.mw-form__field select:focus,
.mw-form__field textarea:focus {
  border-color: var(--mw-red);
}
.mw-form__field select { cursor: pointer; }
.mw-form__field textarea { resize: vertical; min-height: 100px; }
.mw-form__fine {
  font-size: 11.5px;
  color: var(--mw-ink-4);
  margin: 0;
  line-height: 1.6;
  padding-top: 14px;
  border-top: 1px solid var(--mw-rule-light);
}

/* ---------- 18. Footer ---------- */
.mw-footer {
  background: var(--mw-charcoal);
  border-top: 4px solid var(--mw-charcoal-3);
}
.mw-footer__top {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 80px) var(--mw-pad-x) clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 5vw, 80px);
  border-bottom: 1px solid var(--mw-rule-light);
}
@media (max-width: 860px) { .mw-footer__top { grid-template-columns: 1fr; } }

.mw-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mw-ff-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--mw-paper);
  margin-bottom: 14px;
}
.mw-footer__logo em {
  font-style: normal;
  color: var(--mw-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 3px;
}
.mw-footer__logo-rule {
  display: block;
  width: 3px;
  height: 36px;
  background: var(--mw-red);
  flex-shrink: 0;
}
.mw-footer__brand p {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--mw-ink-4);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mw-footer__address {
  font-size: 13px;
  color: var(--mw-ink-4);
  line-height: 1.7;
}
.mw-footer__address a {
  color: var(--mw-ink-light-2);
  font-weight: 600;
  transition: color 0.2s;
}
.mw-footer__address a:hover { color: var(--mw-paper); }

.mw-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 600px) { .mw-footer__cols { grid-template-columns: 1fr 1fr; } }

.mw-footer__col h3 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mw-ink-4);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mw-rule-light);
}
.mw-footer__col ul { display: grid; gap: 9px; }
.mw-footer__col li {
  font-size: 13px;
  color: var(--mw-ink-4);
  line-height: 1.4;
}
.mw-footer__col a {
  color: var(--mw-ink-light-2);
  transition: color 0.2s;
}
.mw-footer__col a:hover { color: var(--mw-paper); }

.mw-footer__disclaimer {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 28px var(--mw-pad-x);
  border-bottom: 1px solid var(--mw-rule-light);
}
.mw-footer__disclaimer p {
  font-size: 12px;
  color: var(--mw-ink-4);
  line-height: 1.65;
  max-width: 90ch;
  margin: 0 0 10px;
}
.mw-footer__disclaimer p:last-child { margin-bottom: 0; }

.mw-footer__bar {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 18px var(--mw-pad-x);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--mw-ink-4);
}
.mw-footer__demo { font-style: italic; }

/* ---------- 19. Scroll-reveal ---------- */
.mw-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--mw-ease), transform 0.55s var(--mw-ease);
}
.mw-reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .mw-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 20. Global focus ---------- */
:focus-visible {
  outline: 3px solid var(--mw-red);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }
