/* ============================================================
   Expert Services Nettoyage — base de thème
   Charge APRÈS tokens + utilities. Reset léger + layout container.
   Les sections de design viendront du bundle Claude Design.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-strong); line-height: var(--lh-tight); margin: 0 0 .5em; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }
img { max-width: 100%; height: auto; display: block; }

/* Layout */
.container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }

/* Accessibilité : skip link */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--brand); color: #fff; padding: .75rem 1rem; z-index: 1000; }
.skip-link:focus { left: 0; }

/* Focus visible */
:focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--radius-sm); }
