/* ============================================================================
   CANA PRO SERVICES — version 2
   Direction : "PLAN DE RÉSEAU" — papier millimétré, filets de dessin technique,
   angles vifs, cotes et cartouches. Clair, froid, méthodique.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --paper:     #f6f8fb;
  --paper-2:   #edf2f8;
  --white:     #ffffff;

  --ink:       #0b1f3a;
  --ink-2:     #14355e;
  --graphite:  #5a6a7d;

  --blue:      #2d6cc0;
  --blue-pale: #dce9f8;
  --green:     #3f9522;
  --green-2:   #5cc032;

  --rule:      #b9cde4;
  --rule-2:    #dfe8f3;
  --rule-3:    #eef3f9;

  --display: 'Anybody', 'Arial Black', Impact, sans-serif;
  --body:    'Hanken Grotesk', 'Segoe UI', sans-serif;

  --maxw:   1180px;
  --gutter: clamp(18px, 3.6vw, 52px);
  --ease:   cubic-bezier(.22, .68, .2, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: clamp(15px, .4vw + 14px, 16.5px);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--rule-3) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule-3) 1px, transparent 1px),
    linear-gradient(var(--rule-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule-2) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px, 120px 120px, 120px 120px;
  background-position: -1px -1px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
::selection { background: var(--ink); color: var(--paper); }

/* ---------- 3. Typographie ---------- */
.d1, .d2, .d3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.012em;
  text-wrap: balance;
}
.d1 { font-variation-settings: 'wdth' 116, 'wght' 800; font-size: clamp(38px, 5.9vw, 82px); line-height: .92; }
.d2 { font-variation-settings: 'wdth' 112, 'wght' 800; font-size: clamp(28px, 3.7vw, 50px); line-height: .96; }
.d3 { font-variation-settings: 'wdth' 106, 'wght' 700; font-size: clamp(18px, 1vw + 15px, 24px); line-height: 1.06; }

.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--blue);
}
.num {
  font-family: var(--display);
  font-variation-settings: 'wdth' 100, 'wght' 500;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--graphite);
  font-variant-numeric: tabular-nums;
}
.lead { font-size: clamp(16px, .5vw + 14.5px, 19px); line-height: 1.55; color: var(--graphite); max-width: 62ch; }
.gr { color: var(--green); }
.bl { color: var(--blue); }

/* ---------- 4. Structure ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.band { padding-block: clamp(52px, 6.4vw, 104px); position: relative; }
.band--tint { background: rgba(255, 255, 255, .72); border-block: 1px solid var(--rule-2); }
.band--ink { background: var(--ink); color: #e8eef7; }
section[id] { scroll-margin-top: 84px; }

/* En-tête de section : filet + numéro, façon repère de plan */
.head { display: grid; gap: 14px; margin-bottom: clamp(28px, 3.4vw, 50px); }
.head__rule {
  display: flex; align-items: center; gap: 14px;
  border-top: 2px solid var(--ink);
  padding-top: 10px;
}
.head__rule .tag { color: var(--ink); }
.head__rule .num { margin-left: auto; }
.band--ink .head__rule { border-color: rgba(232, 238, 247, .5); }
.band--ink .head__rule .tag { color: var(--green-2); }
.band--ink .lead { color: #a9bcd4; }

/* ---------- 5. Boutons — rectangulaires, angles vifs ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--display);
  font-variation-settings: 'wdth' 104, 'wght' 700;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .28s var(--ease);
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .34s var(--ease);
}
.btn:hover { color: var(--paper); }
.btn:hover::before { transform: translateY(0); }
.btn svg { flex: none; }

.btn--solid { background: var(--green); border-color: var(--green); color: #fff; }
.btn--solid::before { background: var(--ink); }
.btn--solid:hover { color: #fff; border-color: var(--ink); }
.btn--blue { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--blue::before { background: var(--green); }
.btn--blue:hover { color: #fff; border-color: var(--green); }
.btn--lg { padding: 17px 28px; font-size: 15.5px; }
.btn--block { width: 100%; justify-content: center; }
.band--ink .btn { border-color: #e8eef7; color: #e8eef7; }
.band--ink .btn::before { background: #e8eef7; }
.band--ink .btn:hover { color: var(--ink); }

/* ---------- 6. Bandeau + en-tête ---------- */
.rail {
  background: var(--ink);
  color: #cfe0f5;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.rail__in { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 34px; }
.rail__in > div { display: flex; align-items: center; gap: 22px; }
.rail b { color: #fff; }
.rail__item, .rail__mail { display: inline-flex; align-items: center; gap: 8px; }
.rail__item { gap: 9px; }
.blip {
  width: 7px; height: 7px; background: var(--green-2); flex: none;
  animation: blip 1.9s steps(1) infinite;
}
@keyframes blip { 0%, 60% { opacity: 1; } 61%, 100% { opacity: .25; } }

.masthead {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246, 248, 251, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 1px 0 var(--white);
}
.masthead__in { display: flex; align-items: center; gap: 22px; min-height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img { height: 38px; width: auto; }
.brand__txt { display: grid; gap: 2px; border-left: 1px solid var(--rule); padding-left: 11px; }
.brand__name {
  font-family: var(--display);
  font-variation-settings: 'wdth' 104, 'wght' 700;
  font-size: 14px; line-height: 1; text-transform: uppercase; letter-spacing: .01em;
}
.brand__sub { font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--blue); font-weight: 600; }

.menu { display: flex; align-items: center; gap: clamp(12px, 1.5vw, 26px); }
.menu a {
  font-size: 14px; font-weight: 600; padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .25s var(--ease);
}
.menu a:hover { border-color: var(--green); }
.masthead .btn { padding: 11px 18px; font-size: 13.5px; }
.burger {
  display: none; width: 44px; height: 44px; border: 2px solid var(--ink); background: transparent;
  cursor: pointer; align-items: center; justify-content: center; padding: 0;
}
.burger i { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: background .2s; }
.burger i::before, .burger i::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
  transition: transform .3s var(--ease);
}
.burger i::before { top: -6px; }
.burger i::after { top: 6px; }
.burger[aria-expanded="true"] i { background: transparent; }
.burger[aria-expanded="true"] i::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] i::after { transform: translateY(-6px) rotate(-45deg); }
.sheet { display: none; border-top: 1px solid var(--rule); background: var(--white); padding: 6px var(--gutter) 22px; }
.sheet.open { display: block; }
.sheet a {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--rule-2);
  font-family: var(--display); font-variation-settings: 'wdth' 106, 'wght' 700;
  font-size: 19px; text-transform: uppercase;
}
.sheet .btn { margin-top: 18px; }

/* ---------- 7. Hero ---------- */
.hero { position: relative; padding-top: clamp(34px, 4.4vw, 62px); }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  gap: clamp(24px, 3.4vw, 56px); align-items: end;
}
.hero h1 { margin-top: 16px; }
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span {
  display: block; transform: translateY(103%);
  animation: up .9s var(--ease) forwards;
}
.hero h1 .ln:nth-child(2) > span { animation-delay: .09s; }
@keyframes up { to { transform: translateY(0); } }
.hero h1 em {
  font-style: normal;
  color: var(--white);
  background: var(--green);
  padding: 0 .16em;
  margin-left: -.16em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero__sub { margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* Fiche d'appel, calée à droite */
.card-call {
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--blue-pale);
}
.card-call__top {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 14px; background: var(--ink); color: #fff;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
}
.card-call__body { padding: 18px 16px 16px; }
.card-call__tel {
  font-family: var(--display);
  font-variation-settings: 'wdth' 108, 'wght' 800;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1; letter-spacing: -.01em;
  display: block;
  transition: color .25s var(--ease);
}
.card-call__tel:hover { color: var(--green); }
.card-call dl { margin-top: 16px; border-top: 1px solid var(--rule-2); }
.card-call dl > div {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid var(--rule-2);
  font-size: 13px;
}
.card-call dt { color: var(--graphite); letter-spacing: .05em; text-transform: uppercase; font-size: 10.5px; font-weight: 700; padding-top: 2px; }
.card-call dd { margin: 0; font-weight: 700; text-align: right; }

/* ---------- 8. Coupe technique ---------- */
.cut {
  margin-top: clamp(28px, 3.6vw, 54px);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, transparent 0 34%, rgba(220, 233, 248, .5) 34% 100%);
  overflow: hidden;
}
.cut svg { width: 100%; height: auto; display: block; }
.cut__legend {
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  padding: 12px 0 0;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--graphite);
}
.cut__legend span { display: inline-flex; align-items: center; gap: 8px; }
.cut__legend i { width: 14px; height: 3px; flex: none; }

/* ---------- 9. Prestations en liste-plan ---------- */
.list { border-top: 2px solid var(--ink); }
.row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(0, 1.15fr) 44px;
  gap: clamp(14px, 2vw, 30px);
  align-items: start;
  padding: clamp(20px, 2.2vw, 30px) 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background .3s var(--ease);
}
.row::before {
  content: ''; position: absolute; top: 0; bottom: 0;
  left: calc(var(--gutter) * -1); right: calc(var(--gutter) * -1);
  background: var(--white); opacity: 0; transition: opacity .3s var(--ease); z-index: -1;
}
.row:hover::before { opacity: .9; }
.row__n {
  font-family: var(--display);
  font-variation-settings: 'wdth' 118, 'wght' 800;
  font-size: clamp(30px, 3vw, 44px);
  line-height: .8;
  color: var(--rule);
  transition: color .3s var(--ease);
  font-variant-numeric: tabular-nums;
}
.row:hover .row__n { color: var(--green); }
.row__title { display: flex; flex-direction: column; gap: 10px; }
.row__ico {
  width: 38px; height: 38px; border: 2px solid var(--ink); padding: 6px;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.row:hover .row__ico { background: var(--ink); color: var(--green-2); }
.row p { color: var(--graphite); font-size: 15px; }
.row__meta { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.row__meta span {
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  color: var(--blue); border: 1px solid var(--rule); padding: 4px 8px; background: var(--white);
}
.row__go {
  align-self: center; width: 34px; height: 34px; border: 1px solid var(--rule);
  display: grid; place-items: center; color: var(--blue);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s;
}
.row:hover .row__go { background: var(--green); border-color: var(--green); color: #fff; transform: translateX(4px); }

/* ---------- 10. Causes ---------- */
.causes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.cause { background: var(--white); padding: clamp(18px, 2vw, 26px); }
.cause__ico { width: 34px; height: 34px; color: var(--blue); }
.cause h3 { margin-top: 16px; }
.cause p { margin-top: 8px; font-size: 14.5px; color: var(--graphite); }

/* ---------- 11. Cartouche technique ---------- */
.cartouche {
  border: 2px solid var(--ink);
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 1fr));
}
.cartouche > div { border-left: 1px solid var(--rule); padding: clamp(20px, 2.2vw, 30px); }
.cartouche > div:first-child { border-left: 0; background: var(--paper-2); }
.cartouche h3 { margin-bottom: 12px; }
.cartouche ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.cartouche li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: 14.5px; align-items: start; }
.cartouche li svg { width: 18px; height: 18px; color: var(--green); margin-top: 3px; }
.cartouche__stamp {
  margin-top: 18px; display: inline-block; border: 2px solid var(--green); color: var(--green);
  padding: 7px 12px; font-family: var(--display); font-variation-settings: 'wdth' 104, 'wght' 700;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; transform: rotate(-2deg);
}

/* ---------- 12. Zone ---------- */
.zone-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(232, 238, 247, .28); }
.zone-cell {
  background: var(--ink); padding: 20px 18px;
  display: flex; align-items: baseline; gap: 12px;
  transition: background .3s var(--ease);
}
.zone-cell:hover { background: #16375f; }
.zone-cell b {
  font-family: var(--display); font-variation-settings: 'wdth' 116, 'wght' 800;
  font-size: 30px; line-height: 1; color: var(--green-2); font-variant-numeric: tabular-nums;
}
.zone-cell span { font-size: 14px; color: #cfe0f5; }

/* ---------- 13. Bon d'intervention ---------- */
.sheet-form {
  border: 2px solid var(--ink);
  background: var(--white);
}
.sheet-form__top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--ink); color: #fff; padding: 12px 18px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
}
.sheet-form__body { padding: clamp(20px, 2.4vw, 32px); }
.fld { display: grid; gap: 5px; margin-bottom: 18px; }
.fld label { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--graphite); }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: 9px 2px;
  border: 0; border-bottom: 1.5px solid var(--rule);
  background: transparent; font-size: 16px; font-weight: 600;
  transition: border-color .25s var(--ease);
}
.fld select { padding-left: 0; }
.fld textarea { min-height: 92px; resize: vertical; font-weight: 500; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-color: var(--green); }
.fld input::placeholder, .fld textarea::placeholder { color: #a9b6c6; font-weight: 500; }
.fld .err { display: none; font-size: 12.5px; color: #c0392b; letter-spacing: 0; text-transform: none; font-weight: 600; }
.fld.bad input, .fld.bad select, .fld.bad textarea { border-color: #c0392b; }
.fld.bad .err { display: block; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.pick { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 20px; border: 1.5px solid var(--rule); }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick label {
  flex: 1 1 auto; text-align: center; cursor: pointer; padding: 11px 12px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--graphite);
  border-left: 1.5px solid var(--rule);
  transition: background .22s var(--ease), color .22s var(--ease);
}
.pick label:first-of-type { border-left: 0; }
.pick input:checked + label { background: var(--green); color: #fff; }
.pick input:focus-visible + label { outline: 3px solid var(--ink); outline-offset: -3px; }
.mini { font-size: 12.5px; color: var(--graphite); margin-top: 14px; }
.alert { display: none; margin-top: 16px; border-left: 4px solid var(--green); background: var(--paper-2); padding: 12px 14px; font-size: 14px; }
.alert.on { display: block; }
.alert.bad { border-color: #c0392b; }

/* ---------- 14. FAQ ---------- */
.qa { border-top: 2px solid var(--ink); }
.qa details { border-bottom: 1px solid var(--rule); }
.qa summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  display: flex; align-items: center; gap: 18px;
  font-family: var(--display); font-variation-settings: 'wdth' 104, 'wght' 700;
  font-size: clamp(15px, .5vw + 13.5px, 18px); text-transform: uppercase;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: '+'; margin-left: auto; flex: none;
  font-family: var(--display); font-variation-settings: 'wdth' 100, 'wght' 500;
  font-size: 30px; line-height: .8; width: 26px; text-align: center; color: var(--ink);
  transition: color .3s var(--ease);
}
.qa details[open] summary::after { content: '\2013'; color: var(--green); }
.qa details[open] summary { color: var(--green); }
.qa__a { padding: 0 44px 20px 0; color: var(--graphite); max-width: 78ch; }

/* ---------- 15. Pied de page ---------- */
.foot { background: var(--ink); color: #a9bcd4; }
.foot__top {
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 44px);
  padding-block: clamp(40px, 4.4vw, 66px) 34px;
  border-bottom: 1px solid rgba(232, 238, 247, .18);
}
.foot img { height: 44px; width: auto; }
.foot h4 { color: #fff; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; }
.foot ul { list-style: none; padding: 0; display: grid; gap: 9px; font-size: 14px; }
.foot a:hover { color: var(--green-2); }
.foot__bar {
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between;
  padding-block: 20px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.foot p { font-size: 14px; margin-top: 16px; max-width: 36ch; }

/* ---------- 16. Barre mobile ---------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none;
  border-top: 2px solid var(--ink); background: var(--paper);
}
.dock a { flex: 1; justify-content: center; border: 0; padding: 15px 10px; font-size: 13.5px; }
.dock a + a { border-left: 2px solid var(--ink); }

/* ---------- 17. Révélations ---------- */
[data-up] { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0ms); }
[data-up].seen { opacity: 1; transform: none; }
.draw { stroke-dasharray: var(--len, 600); stroke-dashoffset: var(--len, 600); }
.cut.seen .draw { animation: draw 1.5s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- 18. Responsive ---------- */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; align-items: stretch; }
  .card-call { max-width: 420px; }
  .causes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cartouche { grid-template-columns: 1fr; }
  .cartouche > div { border-left: 0; border-top: 1px solid var(--rule); }
  .cartouche > div:first-child { border-top: 0; }
  .foot__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .row { grid-template-columns: 60px minmax(0, 1fr) minmax(0, 1fr) 36px; }
}
@media (max-width: 860px) {
  .menu, .masthead .btn--ghost-hide { display: none; }
  .burger { display: flex; }
  .zone-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rail__in > div span:nth-child(n+2) { display: none; }
}
@media (max-width: 700px) {
  .row { grid-template-columns: 46px minmax(0, 1fr); }
  .row__go { display: none; }
  .row > div:not(.row__title) { grid-column: 2; margin-top: 12px; }
  .causes { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; }
  .dock { display: flex; }
  body { padding-bottom: 62px; }
  .pick label { flex: 1 1 100%; border-left: 0; border-top: 1.5px solid var(--rule); }
  .pick label:first-of-type { border-top: 0; }
  .masthead .btn { display: none; }
  .card-call { box-shadow: 5px 5px 0 var(--blue-pale); }
}
@media (max-width: 860px) {
  .cut { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cut svg { min-width: 720px; }
  .cut__legend { font-size: 10px; gap: 6px 16px; }
}
@media (max-width: 620px) {
  .rail__mail { display: none; }
  .rail__in { justify-content: center; }
  .rail { font-size: 10px; letter-spacing: .1em; }
}
@media (max-width: 420px) {
  .brand img { height: 32px; }
  .brand__name { font-size: 12.5px; }
}

/* ---------- 19. Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  [data-up] { opacity: 1; transform: none; }
  .hero h1 .ln > span { transform: none; }
  .draw { stroke-dashoffset: 0; }
}

/* ---------- 20. Impression ---------- */
@media print {
  .rail, .masthead, .dock, .cut { display: none !important; }
  body { background: #fff; }
  .band--ink, .foot { background: #fff !important; color: #000 !important; }
}
