/* =========================================================
   TOM DE FREITAS — Développeur web à Pontcharra
   Direction : atelier numérique ancré dans le territoire —
   ardoise (toits alpins) + ocre (mélèzes d'automne), pas un
   thème SaaS violet-sur-blanc générique.
   ========================================================= */

/* =========================================================
   POLICES AUTO-HÉBERGÉES (plus de requête vers Google Fonts)
   Bricolage Grotesque et Sora sont des polices variables : un
   seul fichier woff2 par sous-ensemble couvre toutes les graisses.
   Graisses réellement utilisées : Bricolage 600/700 · Sora 400/500/600/700.
   ========================================================= */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("fonts/bricolage-grotesque-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("fonts/bricolage-grotesque-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/sora-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/sora-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #1e2530;
  --ink-2: #262f3d;
  --ink-line: rgba(255, 255, 255, 0.12);
  --paper: #eef0ee;
  --paper-raised: #ffffff;
  --paper-line: rgba(30, 37, 48, 0.12);
  --text-on-dark: #f3f1ea;
  --text-on-dark-muted: rgba(243, 241, 234, 0.66);
  --text-on-light: #1e2530;
  --text-on-light-muted: rgba(30, 37, 48, 0.72);
  --accent: #e2a33d;
  --accent-deep: #8a5214;
  --accent-dim: rgba(226, 163, 61, 0.16);

  --font-display: "Bricolage Grotesque", "Helvetica Neue", sans-serif;
  --font-body: "Sora", -apple-system, sans-serif;

  --radius: 10px;
  --radius-lg: 14px;
  --wrap: 1120px;
  --header-h: 64px;
  --gap-lg: clamp(4.5rem, 9vw, 8rem);
  --gap-md: clamp(2.5rem, 5vw, 4rem);
  --gap-sm: clamp(1.5rem, 3vw, 2.2rem);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-on-light);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.6rem; }
a { color: inherit; }
img { max-width: 100%; height: auto; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Contour de focus lisible sur les fonds sombres */
.section-dark a:focus-visible, .section-dark button:focus-visible,
.site-header a:focus-visible, .site-header button:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--accent);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--ink); padding: 0.7em 1.2em; z-index: 300;
  font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; max-width: 62ch; }

section { padding: var(--gap-lg) 0; }
.section-dark { background: var(--ink); color: var(--text-on-dark); }
.section-dark .muted { color: var(--text-on-dark-muted); }
.section-light { background: var(--paper); color: var(--text-on-light); }
.section-light .muted { color: var(--text-on-light-muted); }
.section-raised { background: var(--paper-raised); }
.section-raised .muted { color: var(--text-on-light-muted); }

.section-intro { max-width: 60ch; margin-top: 0.9rem; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-size: 0.85rem; font-weight: 600; color: var(--accent-deep);
  margin-bottom: 0.9rem;
}
.section-dark .kicker { color: var(--accent); }
.kicker::before { content: ""; width: 18px; height: 2px; background: currentColor; display: inline-block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 0.85em 1.5em; border-radius: 999px;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--accent); color: #241804; }
.btn-primary:hover { transform: translateY(-2px); background: #ecb659; }
.btn-outline-dark { border-color: rgba(30,37,48,0.28); color: var(--text-on-light); background: transparent; }
.btn-outline-dark:hover { border-color: var(--ink); background: rgba(30,37,48,0.05); }
.btn-outline-light { border-color: rgba(243,241,234,0.35); color: var(--text-on-dark); background: transparent; }
.btn-outline-light:hover { border-color: var(--text-on-dark); background: rgba(243,241,234,0.08); }

/* Apparition très discrète au scroll (progressive enhancement :
   sans JS, aucune classe n'est ajoutée et le contenu reste visible). */
[data-reveal].reveal-init {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].reveal-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal].reveal-init { opacity: 1; transform: none; transition: none; }
}
@media print {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(30, 37, 48, 0.92);
  backdrop-filter: blur(10px);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1.05rem 1.6rem; }
.brand {
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem;
  text-decoration: none; color: var(--text-on-dark);
  display: flex; align-items: center; gap: 0.6em;
}
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.main-nav ul { list-style: none; display: flex; gap: 2rem; margin: 0; padding: 0; }
.main-nav a { text-decoration: none; font-size: 0.92rem; color: var(--text-on-dark-muted); transition: color 0.15s ease; }
.main-nav a:hover { color: var(--text-on-dark); }
.header-cta { display: flex; align-items: center; gap: 1.4rem; }
.header-phone { text-decoration: none; font-size: 0.92rem; font-weight: 600; color: var(--text-on-dark-muted); white-space: nowrap; }
.header-phone:hover { color: var(--text-on-dark); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--ink-line); border-radius: 8px;
  color: var(--text-on-dark); width: 42px; height: 38px; cursor: pointer; font-size: 1.1rem;
}
@media (max-width: 1040px) {
  .header-phone { display: none; }
}
@media (max-width: 860px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    height: calc(100dvh - var(--header-h)); background: var(--ink);
    padding: 1.8rem; display: none; overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 1.4rem; }
  .main-nav a { font-size: 1.1rem; }
  .header-cta .btn-primary { display: none; }
  .nav-toggle { display: block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: var(--gap-lg); }
.hero .wrap {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); color: var(--text-on-dark); max-width: 15ch; margin-top: 0.2rem; }
.hero h1 .accent {
  color: var(--accent);
  background-image: linear-gradient(var(--accent-dim), var(--accent-dim));
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 100% 0.16em;
}
.hero .lede { font-size: 1.16rem; color: var(--text-on-dark-muted); max-width: 46ch; margin-top: 1.3rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.1rem; }
.hero-proof { list-style: none; padding: 0; margin: 2.6rem 0 0; display: flex; flex-wrap: wrap; gap: 1.5rem 2.4rem; }
.hero-proof li { font-size: 0.9rem; color: var(--text-on-dark-muted); max-width: 24ch; }
.hero-proof strong {
  display: block; color: var(--text-on-dark); font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 600; margin-bottom: 0.15em;
}

.hero-figure { margin: 0; width: 100%; max-width: 420px; justify-self: end; }
.hero-figure img {
  width: 100%; display: block; border-radius: var(--radius-lg);
  border: 1px solid var(--ink-line);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.55);
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero h1 { max-width: 18ch; }
  .hero-figure { justify-self: start; max-width: 420px; margin-top: 0.5rem; }
}

/* =========================================================
   POUR QUI
   ========================================================= */
.audience-list {
  list-style: none; padding: 0; margin: 1.6rem 0 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 0.7rem;
}
.audience-list li {
  font-size: 0.9rem; font-weight: 500;
  border: 1px solid var(--paper-line); border-radius: 999px;
  padding: 0.5em 1.05em; background: var(--paper-raised);
}

/* =========================================================
   APERÇU DES SERVICES
   ========================================================= */
.quick-services {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: 2.2rem;
  background: var(--paper-line); border: 1px solid var(--paper-line); border-radius: var(--radius); overflow: hidden;
}
.quick-services div { background: var(--paper-raised); padding: 1.6rem 1.4rem; }
.quick-services h3 { font-size: 1rem; margin-bottom: 0.3em; }
.quick-services p { font-size: 0.87rem; margin: 0; max-width: none; color: var(--text-on-light-muted); }
@media (max-width: 820px) { .quick-services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .quick-services { grid-template-columns: 1fr; } }

/* =========================================================
   SERVICES DÉTAILLÉS
   ========================================================= */
.service-list { border-top: 1px solid var(--paper-line); margin-top: 2.5rem; }
.service-row {
  display: grid; grid-template-columns: 2.4rem 12rem 1fr; gap: 2rem;
  padding: 2.4rem 0; border-bottom: 1px solid var(--paper-line);
  align-items: start;
}
.service-row .num { font-family: var(--font-display); font-size: 1rem; color: var(--accent-deep); font-weight: 600; padding-top: 0.15rem; }
.service-name h3 { margin-bottom: 0; }
.service-row .muted { max-width: 60ch; }
.service-row .muted p { margin: 0; }
@media (max-width: 820px) {
  .service-row { grid-template-columns: 2rem 1fr; }
  .service-row .muted { grid-column: 2; }
}

/* =========================================================
   RÉALISATIONS
   ========================================================= */
.case-list { display: flex; flex-direction: column; gap: var(--gap-md); margin-top: 2.5rem; }
.case-card {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.8rem, 4vw, 2.8rem); align-items: center;
}
.case-card:nth-child(even) .case-media { order: 2; }
.case-media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--paper-line);
  box-shadow: 0 30px 60px -30px rgba(30, 37, 48, 0.35);
  background: var(--paper-raised);
}
.case-media img { width: 100%; display: block; }
.case-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  color: var(--accent-deep); background: var(--accent-dim);
  padding: 0.3em 0.8em; border-radius: 999px; margin-bottom: 0.8em;
}
.case-body h3 { font-size: 1.5rem; margin-bottom: 0.4em; }
.case-role { font-size: 0.9rem; margin-bottom: 0.7em; }
.case-stack { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5em; margin: 1.2em 0 1.4em; padding: 0; }
.case-stack li { font-size: 0.78rem; border: 1px solid var(--paper-line); border-radius: 999px; padding: 0.3em 0.8em; color: var(--text-on-light-muted); }
.case-links { display: flex; gap: 1.3em; }
.case-links a { text-decoration: none; font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--accent); padding-bottom: 1px; }
@media (max-width: 820px) {
  .case-card { grid-template-columns: 1fr; }
  .case-card:nth-child(even) .case-media { order: 0; }
}

/* =========================================================
   MÉTHODE
   ========================================================= */
.process-list { counter-reset: step; margin-top: 2.5rem; }
.process-item {
  display: grid; grid-template-columns: 3.2rem 1fr; gap: 1.6rem;
  padding: 1.7rem 0; border-bottom: 1px solid var(--ink-line);
}
.process-item:last-child { border-bottom: none; }
.process-item::before {
  counter-increment: step; content: counter(step);
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--accent);
}
.process-item h3 { color: var(--text-on-dark); margin-bottom: 0.3em; font-size: 1.1rem; }
.process-item p { color: var(--text-on-dark-muted); margin: 0; max-width: 64ch; }

/* =========================================================
   TARIFS
   ========================================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.5rem; }
.price-card {
  background: var(--paper-raised); border: 1px solid var(--paper-line); border-radius: var(--radius);
  padding: 2rem 1.8rem; display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.price-card h3 { margin-bottom: 0.4em; }
.price-tag { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; margin: 0.4em 0 0.5em; }
.price-note { font-size: 0.85rem; margin: 0 0 1.1em; }
.price-card ul { list-style: none; padding: 0; margin: 0.4em 0 1.6rem; font-size: 0.92rem; color: var(--text-on-light-muted); flex: 1; }
.price-card li { padding: 0.45em 0; padding-left: 1.3em; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-deep); font-weight: 700; }
.price-card .btn { justify-self: start; }

.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 1.4rem; }
.addon {
  background: var(--paper-raised); border: 1px solid var(--paper-line);
  border-radius: var(--radius); padding: 1.8rem;
}
.addon h3 { margin-bottom: 0.5em; }
.addon-price { font-size: 0.95rem; margin-bottom: 0.9em; color: var(--text-on-light); }
.addon-price strong { font-family: var(--font-display); font-weight: 600; }
.addon ul { list-style: none; padding: 0; margin: 0 0 1em; font-size: 0.9rem; color: var(--text-on-light-muted); }
.addon li { padding: 0.35em 0; padding-left: 1.3em; position: relative; }
.addon li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-deep); font-weight: 700; }
.addon-note { font-size: 0.85rem; margin: 0; }
@media (max-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
}

/* =========================================================
   CONFIANCE / PRÉSENTATION
   ========================================================= */
.about-head {
  display: grid; grid-template-columns: 210px 1fr;
  gap: clamp(1.6rem, 4vw, 3rem); align-items: center;
  margin: 2.2rem 0 3rem;
}
.portrait-figure { margin: 0; }
.portrait-figure img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
  border-radius: var(--radius); border: 1px solid var(--paper-line);
}
.about-bio p { margin-bottom: 0.9em; max-width: 58ch; }
.about-bio p:last-child { margin-bottom: 0; }
@media (max-width: 620px) {
  .about-head { grid-template-columns: 1fr; }
  .portrait-figure { max-width: 220px; }
}

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 2.5rem; margin-top: 1rem; }
.why-item { display: flex; gap: 1.1rem; }
.why-item .ic {
  flex-shrink: 0; width: 2.6rem; height: 2.6rem; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-deep); background: var(--accent-dim);
}
.why-item .ic svg { width: 22px; height: 22px; }
.why-item h3 { font-size: 1.05rem; margin-bottom: 0.35em; }
.why-item p { margin: 0; font-size: 0.95rem; color: var(--text-on-light-muted); }
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { margin-top: 2.2rem; border-top: 1px solid var(--paper-line); }
.faq-item { border-bottom: 1px solid var(--paper-line); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 1.2rem 2.6rem 1.2rem 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--text-on-light);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 1.4rem; line-height: 1; color: var(--accent-deep);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-body { padding: 0 0 1.4rem; }
.faq-body p { margin: 0; max-width: 72ch; color: var(--text-on-light-muted); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 2.5rem; }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { font-size: 0.85rem; font-weight: 600; color: var(--text-on-dark-muted); display: block; margin-bottom: 0.4em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 0.85em 1em; border-radius: 8px; border: 1px solid var(--ink-line);
  background: rgba(243,241,234,0.05); color: var(--text-on-dark); font-family: var(--font-body); font-size: 0.98rem;
}
/* Le menu déroulant natif s'ouvre sur fond clair quel que soit le thème
   de la page — on force donc un texte sombre lisible pour les options,
   indépendamment de la couleur du champ fermé. */
.contact-form select option {
  color: var(--text-on-light);
  background: var(--paper-raised);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(243,241,234,0.35); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { justify-self: start; margin-top: 0.6rem; }
.form-submit[disabled] { opacity: 0.6; cursor: progress; }
.cf-turnstile { margin: 0.2rem 0; }
.form-status { font-size: 0.88rem; color: var(--accent); min-height: 1.2em; }
.form-status.is-error { color: #eba58f; }
.form-status.is-error::before { content: "\26A0\FE0E  "; }
.form-status.is-success { color: var(--accent); }
.form-consent label {
  display: flex; align-items: flex-start; gap: 0.6em;
  font-size: 0.82rem; font-weight: 400; line-height: 1.5;
  color: var(--text-on-dark-muted); margin: 0;
}
.form-consent input { width: auto; margin: 0.2em 0 0; flex-shrink: 0; }
.form-consent a { color: var(--text-on-dark); text-decoration: underline; }
.form-consent a:hover { color: var(--accent); }
.contact-side dl { margin: 0; }
.contact-side .row { padding: 1em 0; border-bottom: 1px solid var(--ink-line); display: flex; justify-content: space-between; gap: 1em; }
.contact-side dt { color: var(--text-on-dark-muted); font-size: 0.85rem; }
.contact-side dd { margin: 0; font-weight: 600; text-align: right; }
.contact-side a { text-decoration: none; }
.contact-side a:hover { color: var(--accent); }
@media (max-width: 780px) { .contact-wrap, .form-row-2 { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); padding: 2.6rem 0; border-top: 1px solid var(--ink-line); }
.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem 2rem; font-size: 0.82rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6em; }
.footer-brand .mark {
  width: 26px; height: 26px; border-radius: 7px; background: var(--accent); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.76rem; flex-shrink: 0;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; }
.site-footer a { color: var(--text-on-dark-muted); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-nap {
  width: 100%; font-style: normal; display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem;
  color: var(--text-on-dark-muted);
}
.footer-meta {
  width: 100%; margin: 0; padding-top: 1.1rem; border-top: 1px solid var(--ink-line);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; justify-content: space-between; max-width: none;
}
.footer-top { white-space: nowrap; }

/* =========================================================
   PAGES LÉGALES (mentions-legales.html, confidentialite.html)
   ========================================================= */
.legal-main { padding: clamp(3rem, 7vw, 5rem) 0; }
.legal-page { max-width: 760px; }
.legal-page h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1.2rem; }
.legal-page h2 { font-size: 1.3rem; margin: 2.4rem 0 0.8rem; }
.legal-page p, .legal-page li { color: var(--text-on-light-muted); max-width: 72ch; }
.legal-page ul { padding-left: 1.2rem; }
.legal-page li { margin: 0.35em 0; }
.legal-page a { color: var(--accent-deep); }
.legal-page .placeholder {
  background: var(--accent-dim); color: var(--accent-deep);
  padding: 0.08em 0.45em; border-radius: 4px; font-weight: 600; font-size: 0.92em;
}
.legal-page .updated { font-size: 0.85rem; }
.legal-back {
  display: inline-block; margin-top: 2.6rem; font-weight: 600;
  color: var(--ink); border-bottom: 2px solid var(--accent);
  text-decoration: none; padding-bottom: 1px;
}

/* honeypot anti-spam */
.hp-field { position: absolute; left: -9999px; }
