/* ==========================================================================
   profil.mftj.ca — Marco Fillion, entreprise individuelle
   Feuille de style unique, sans dépendance externe.
   ========================================================================== */

:root {
  color-scheme: light;

  --bg:          #F7F8F6;
  --bg-alt:      #EFF2F0;
  --surface:     #FFFFFF;
  --ink:         #0C1B2E;
  --ink-2:       #4A5C72;
  --ink-3:       #6E8098;
  --line:        rgba(12, 27, 46, .12);
  --line-soft:   rgba(12, 27, 46, .07);

  --marine:      #0F2A4D;
  --accent:      #1B5AA8;
  --accent-ink:  #FFFFFF;
  --accent-2:    #A85410;   /* orange de l'illustration, assombri pour le contraste sur fond clair */
  --gold:        var(--accent-2);
  --green:       #1C7A52;

  --shadow-sm: 0 1px 2px rgba(12, 27, 46, .05), 0 2px 8px rgba(12, 27, 46, .05);
  --shadow-md: 0 2px 6px rgba(12, 27, 46, .06), 0 12px 32px rgba(12, 27, 46, .09);

  --radius:    14px;
  --radius-lg: 20px;
  --wrap:      1140px;

  --font: "Segoe UI Variable Text", "Segoe UI", -apple-system, BlinkMacSystemFont,
          system-ui, "Inter", "Helvetica Neue", Arial, sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;

  --bg:          #0A1522;
  --bg-alt:      #0E1C2D;
  --surface:     #12233A;
  --ink:         #E9EFF7;
  --ink-2:       #A9BBD1;
  --ink-3:       #7D91AA;
  --line:        rgba(233, 239, 247, .14);
  --line-soft:   rgba(233, 239, 247, .08);

  --marine:      #0A1522;
  --accent:      #7BAEF5;
  --accent-ink:  #06121F;
  --accent-2:    #F0A45A;   /* orange de l'illustration, éclairci pour le fond sombre */
  --gold:        var(--accent-2);
  --green:       #57C89A;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .35);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, .35), 0 16px 40px rgba(0, 0, 0, .38);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;

    --bg:          #0A1522;
    --bg-alt:      #0E1C2D;
    --surface:     #12233A;
    --ink:         #E9EFF7;
    --ink-2:       #A9BBD1;
    --ink-3:       #7D91AA;
    --line:        rgba(233, 239, 247, .14);
    --line-soft:   rgba(233, 239, 247, .08);

    --marine:      #0A1522;
    --accent:      #7BAEF5;
    --accent-ink:  #06121F;
    --accent-2:    #F0A45A;   /* orange de l'illustration, éclairci pour le fond sombre */
    --gold:        var(--accent-2);
    --green:       #57C89A;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .35);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, .35), 0 16px 40px rgba(0, 0, 0, .38);
  }
}

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }
[hidden] { display: none !important; }

h1, h2, h3 {
  margin: 0;
  line-height: 1.14;
  letter-spacing: -.021em;
  font-weight: 680;
}

p { margin: 0 0 1.05em; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--gold); }

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

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

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  background: var(--surface);
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.skip:focus { left: 12px; }

/* ---------- entête ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.head-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}
.brand img { border-radius: 10px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-weight: 700;
  letter-spacing: -.005em;
  font-size: 1.06rem;
  white-space: nowrap;
}
.brand-sub {
  font-size: .78rem;
  color: var(--ink-3);
  letter-spacing: .01em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav > a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 550;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav > a:hover { color: var(--ink); border-bottom-color: var(--gold); }

.switches { display: flex; align-items: center; gap: 10px; }

.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}
.lang button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px 11px;
  cursor: pointer;
}
.lang button[aria-pressed="true"] {
  background: var(--marine);
  color: #fff;
}
:root[data-theme="dark"] .lang button[aria-pressed="true"] { background: var(--accent); color: var(--accent-ink); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .lang button[aria-pressed="true"] { background: var(--accent); color: var(--accent-ink); }
}

.theme-toggle {
  appearance: none;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-2);
  cursor: pointer;
  padding: 0;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--ink-3); }
.theme-toggle svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.theme-toggle .i-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .i-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .i-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .i-sun { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .i-moon { display: block; }
}

.nav-toggle { display: none; }

/* ---------- héros ---------- */

.hero {
  position: relative;
  padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 7vw, 88px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% 40% 40% -20%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%);
  opacity: .55;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 20% -25% -60% 45%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--gold) 20%, transparent), transparent 70%);
  opacity: .38;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 6px 14px 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-2);
  font-size: .82rem;
  font-weight: 560;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 22%, transparent);
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  letter-spacing: -.03em;
  max-width: 17ch;
}

.lede {
  margin-top: 22px;
  font-size: clamp(1.03rem, 1.4vw, 1.16rem);
  color: var(--ink-2);
  max-width: 60ch;
}

.cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: .96rem;
  font-weight: 620;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.btn-primary {
  background: var(--marine);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
:root[data-theme="dark"] .btn-primary { background: var(--accent); color: var(--accent-ink); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn-primary { background: var(--accent); color: var(--accent-ink); }
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink-3); transform: translateY(-1px); }

/* Illustration du héros : l'image de Marco, encadrée. Son fond blanc devient
   un cadre assumé, en thème clair comme en sombre. Le léger agrandissement
   rogne la marge morte autour du dessin sans toucher au fichier. */
.hero-art {
  position: relative;
  margin: 0;
}
.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.06);
  /* l'image est détourée : l'ombre suit la forme réelle, pas un rectangle */
  filter: drop-shadow(0 16px 26px rgba(12, 27, 46, .20));
}
:root[data-theme="dark"] .hero-art img {
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .55));
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero-art img {
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .55));
  }
}

/* Les trois chiffres, en bandeau sous le héros. */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: clamp(38px, 5vw, 60px);
}
.stats-strip .stat {
  background: transparent;
  padding: 20px 24px;
  border-left: 1px solid var(--line);
}
.stats-strip .stat:first-child {
  border-left: 0;
  padding-left: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-n {
  font-size: 1.62rem;
  font-weight: 720;
  letter-spacing: -.02em;
  color: var(--marine);
  font-variant-numeric: tabular-nums;
}
:root[data-theme="dark"] .stat-n { color: var(--accent); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .stat-n { color: var(--accent); }
}
.stat-l { font-size: .84rem; color: var(--ink-3); line-height: 1.4; }

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

.section { padding: clamp(56px, 7vw, 92px) 0; }
.section.alt { background: var(--bg-alt); border-block: 1px solid var(--line-soft); }

.section-head { max-width: 780px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--ink-2); margin-top: 14px; margin-bottom: 0; max-width: 62ch; }

.kicker {
  display: block;
  font-size: .76rem;
  font-weight: 720;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }

/* ---------- profil ---------- */

.prose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
/* Colonne unique depuis le retrait de la citation : borner la longueur de ligne,
   sinon le texte s'étire sur toute la largeur du conteneur et devient pénible. */
.prose { max-width: 72ch; }
.prose p { color: var(--ink-2); }
.prose p:last-child { margin-bottom: 0; }

.quote {
  margin: 0;
  padding: 26px 26px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.quote blockquote {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.55;
  font-weight: 560;
  letter-spacing: -.01em;
}
.quote figcaption {
  margin-top: 14px;
  font-size: .84rem;
  color: var(--ink-3);
  letter-spacing: .02em;
}

/* ---------- cartes savoir-faire ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}
.card-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  margin-bottom: 16px;
}
.card-icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.card h3 { font-size: 1.06rem; margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: .93rem; margin: 0; }

/* ---------- produits ---------- */

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 760px) {
  .products { grid-template-columns: 1fr; }
}
.product {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .14s ease, box-shadow .14s ease;
}
.product::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--p-accent, var(--accent));
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.p-treebudget { --p-accent: linear-gradient(90deg, #1C7A52, #C8A14A); }
.p-segment    { --p-accent: linear-gradient(90deg, #D2542F, #E2A03F); }
.p-peer       { --p-accent: linear-gradient(90deg, #1B5AA8, #46B3D8); }
.p-dps        { --p-accent: linear-gradient(90deg, #5B3E9B, #A8842F); }

.p-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.p-top h3 { font-size: 1.3rem; letter-spacing: -.02em; }

.badge {
  flex: none;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-3);
  background: var(--bg-alt);
  white-space: nowrap;
}
.badge-live {
  color: var(--green);
  border-color: color-mix(in srgb, var(--green) 40%, transparent);
  background: color-mix(in srgb, var(--green) 12%, transparent);
}
.badge-soon {
  color: var(--gold);
  border-color: color-mix(in srgb, var(--gold) 42%, transparent);
  background: color-mix(in srgb, var(--gold) 12%, transparent);
}
.badge-licence {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.p-pitch { color: var(--ink-2); font-size: .95rem; }

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 4px 0 20px;
  padding: 0;
}
.chips li {
  font-size: .76rem;
  font-weight: 600;
  color: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 3px 9px;
  background: var(--bg);
}

.p-link {
  margin-top: auto;
  font-size: .9rem;
  font-weight: 620;
  text-decoration: none;
  color: var(--accent);
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}
.p-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.p-link-muted { color: var(--ink-3); }

/* ---------- atelier ---------- */

.tech {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.tech li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .88rem;
  font-weight: 560;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}

/* ---------- repères ---------- */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 26px;
  border-left: 2px solid var(--line);
  display: grid;
  gap: 30px;
  max-width: 74ch;
}
.timeline li { position: relative; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 7px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--gold);
}
.tl-year {
  display: block;
  font-size: .8rem;
  font-weight: 720;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.timeline p { margin: 0; color: var(--ink-2); }

/* ---------- fiche d'entreprise ---------- */

.facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.facts > div {
  background: var(--surface);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: minmax(140px, 38%) 1fr;
  gap: 14px;
  align-items: baseline;
}
.facts dt {
  font-size: .82rem;
  font-weight: 640;
  color: var(--ink-3);
  letter-spacing: .01em;
}
.facts dd {
  margin: 0;
  font-size: .94rem;
  font-weight: 560;
  color: var(--ink);
}
.facts dd span { font-weight: 440; color: var(--ink-2); }

/* ---------- contact ---------- */

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.contact-card .kicker { margin-bottom: 10px; }
.contact-card h2 { font-size: clamp(1.45rem, 2.6vw, 1.95rem); margin-bottom: 14px; }
.contact-copy p { color: var(--ink-2); margin: 0; }
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.contact-actions .btn { font-size: 1rem; }
.contact-loc { font-size: .85rem; color: var(--ink-3); margin: 0; }

/* ---------- pied ---------- */

.site-foot {
  background: var(--marine);
  color: #D7E2F0;
  padding: 40px 0 34px;
}
:root[data-theme="dark"] .site-foot { border-top: 1px solid var(--line); }
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: center;
  justify-content: space-between;
}
.foot-brand { display: flex; align-items: center; gap: 14px; }
.foot-brand img { border-radius: 9px; }
.foot-brand div { display: flex; flex-direction: column; line-height: 1.45; }
.foot-brand strong { color: #fff; font-size: .98rem; font-weight: 640; }
.foot-brand span { font-size: .82rem; color: #9FB6D2; }

.foot-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.foot-links a {
  color: #D7E2F0;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 540;
  border-bottom: 1px solid transparent;
}
.foot-links a:hover { border-bottom-color: var(--gold); color: #fff; }
/* TreeBudget et SegmentChrono n'ont pas encore de sous-domaine : le nom reste,
   en retrait, pour ne pas promettre un lien qui n'existe pas. */
.foot-links span {
  color: #90A8C6;
  font-size: .88rem;
  font-weight: 540;
}

.foot-legal {
  width: 100%;
  margin: 6px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .8rem;
  color: #90A8C6;
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero-grid,
  .prose-grid,
  .contact-card { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .contact-actions { align-items: flex-start; }
  .hero-art { max-width: 560px; }
}

@media (max-width: 820px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stats-strip .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stats-strip .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-grid;
    place-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--surface);
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.open { display: flex; }
  .nav > a { padding: 10px 8px; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .nav > a:last-of-type { border-bottom: 0; }
  .switches { justify-content: space-between; padding: 10px 8px 2px; }
  .site-head { position: relative; }
  html { scroll-padding-top: 24px; }
}

@media (max-width: 640px) {
  .brand-sub { display: none; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .facts > div { grid-template-columns: 1fr; gap: 4px; }
  .stats-strip { grid-template-columns: 1fr; }
  .stats-strip .stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .stats-strip .stat:first-child { border-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- impression (CV papier / PDF) ---------- */

@media print {
  :root { --bg: #fff; --bg-alt: #fff; --surface: #fff; --ink: #000; --ink-2: #222; --ink-3: #555; }
  .site-head, .nav, .cta, .skip, .hero::before, .hero::after { display: none !important; }
  body { font-size: 11pt; }
  .section, .hero { padding: 14pt 0; break-inside: avoid; }
  .card, .product, .quote, .facts, .contact-card, .hero-art { box-shadow: none; break-inside: avoid; }
  .hero-art { max-width: 320px; }
  .hero-art img { filter: none; }
  .site-foot { background: #fff; color: #000; border-top: 1px solid #ccc; }
  .foot-brand strong, .foot-links a, .foot-links span { color: #000; }
  a { color: #000; }
}
