/* ─── BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1c2b1e;
  --paper: #f2f5f0;
  --warm: #e4ede0;
  --accent: #4a7c59;
  --accent-light: #7fb08a;
  --accent-deep: #2e5438;
  --muted: #6b7d6e;
  --rule: #c8d8c4;
  --ghost: #d9e0d3;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

/* ─── HEADER (vert avec texte clair) ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--accent-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 2rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.18); }
.header-logo { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; color: var(--paper); min-width: 0; flex: 1; }
.header-logo-svg { height: 48px; width: 48px; display: block; color: var(--paper); flex-shrink: 0; }
.header-title-wrap {
  position: relative;
  overflow: hidden;
  height: 1.4em;
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
}
.header-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.35rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.3s ease;
}
.header-title-site { transform: translateY(0); opacity: 1; }
.header-title-scroll {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(0);
  opacity: 0;
  letter-spacing: 0.04em;
  margin-top: -0.7em;
}
/* État "scrolled" : on bascule vers le titre de l'article uniquement si un titre de remplacement existe */
header.scrolled .header-title-wrap:has(.header-title-scroll) .header-title-site {
  transform: translateY(-150%);
  opacity: 0;
}
header.scrolled .header-title-scroll {
  transform: translateY(0);
  opacity: 1;
}
nav { display: flex; gap: 2rem; align-items: center; }
nav a {
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; color: rgba(242,245,240,0.7);
  font-weight: 500; transition: color 0.2s;
}
nav a:hover { color: var(--paper); }

/* ─── HERO (avec Q gris très clair en fond) ─── */
.hero {
  padding-top: 64px;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.hero-bg-q {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: auto;
  height: 75vh;
  max-height: 720px;
  color: var(--ghost);
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 5vw;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content > * { flex-shrink: 0; }

.hero-kicker {
  font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 3rem;
  display: inline-flex; align-items: center; gap: 0.75rem;
}
.hero-kicker::before, .hero-kicker::after {
  content: ''; display: block; width: 2rem; height: 1px; background: var(--accent);
}

/* ─── BLOC TITRE ─── */
.hero-title {
  font-family: 'Big Shoulders Display', sans-serif;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-block;
  padding: 1.75rem 2.5rem 1.75rem 3rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  text-align: left;
  line-height: 1;
}
.hero-title .title-row { display: flex; align-items: center; gap: 0.5em; }
.hero-title .title-left { display: flex; flex-direction: column; gap: 0.15em; }
.hero-title .title-small,
.hero-title .prefix {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 400; letter-spacing: 0.04em; line-height: 0.9;
}
.hero-title .quidam-word {
  display: inline-flex;
  align-items: flex-start;
  font-size: clamp(3.5rem, 11vw, 8rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hero-title .q-glyph {
  display: inline-block;
  height: 0.99em;
  width: auto;
  color: var(--ink);
  align-self: flex-start;
  margin-right: 0.04em;
  margin-bottom: -0.17em;
  transform: translateY(0.06em);
  overflow: visible;
}

.hero-tag {
  margin-top: 2.5rem;
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--muted);
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
}
.hero-tag::before, .hero-tag::after { content: '·'; margin: 0 0.75rem; color: var(--accent); }

.hero-cta { margin-top: 3rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── BOUTONS ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: all 0.25s;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.btn-accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-ghost { border-color: var(--rule); color: var(--muted); }
.btn-ghost:hover { background: var(--warm); color: var(--ink); border-color: var(--muted); }
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.4; cursor: not-allowed;
}
.btn:disabled:hover, .btn[aria-disabled="true"]:hover {
  background: var(--accent); color: var(--paper); border-color: var(--accent);
}

/* ─── SECTIONS COMMUNES ─── */
section { padding: 6rem 5vw; }
.section-kicker {
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-kicker::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--accent); }
.section-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.section-rule { width: 3rem; height: 1px; background: var(--rule); margin: 2rem 0; }

/* ─── ARTICLES ─── */
#articles { background: var(--warm); }
.articles-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2px; }
.article-card {
  background: var(--paper); padding: 2rem;
  position: relative; overflow: hidden;
  transition: all 0.3s; cursor: pointer;
  text-decoration: none; color: inherit; display: block;
}
.article-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--accent); transition: width 0.3s;
}
.article-card:hover { background: #fbfdf9; transform: translateY(-2px); }
.article-card:hover::after { width: 100%; }
.card-cat {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem; font-weight: 500;
}
.card-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.55rem; font-weight: 400;
  line-height: 1.15; margin-bottom: 0.75rem;
  letter-spacing: 0.01em; text-transform: uppercase;
}
.card-excerpt { font-size: 0.95rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.card-meta {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rule); border-top: 1px solid var(--rule); padding-top: 1rem;
}
.card-placeholder {
  display: flex; align-items: center; justify-content: center;
  min-height: 220px; border: 1px dashed var(--rule);
  color: var(--rule); font-size: 0.8rem; letter-spacing: 0.15em;
  text-transform: uppercase; text-align: center; padding: 2rem;
}
.card-placeholder span { opacity: 0.5; }

/* ─── À PROPOS ─── */
#apropos {
  background: var(--accent-deep); color: var(--paper);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  position: relative; overflow: hidden;
}
#apropos .section-kicker { color: var(--accent-light); }
#apropos .section-kicker::before { background: var(--accent-light); }
#apropos .section-title { color: var(--paper); }
#apropos p {
  color: rgba(242,245,240,0.78);
  font-size: 1rem; line-height: 1.75; margin-bottom: 1.2rem;
}
#apropos p strong { color: var(--accent-light); font-weight: 600; }
.apropos-content { position: relative; z-index: 2; }
.apropos-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.apropos-logo-svg { width: min(280px, 75%); height: auto; color: var(--paper); opacity: 0.92; }
.apropos-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.tag {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border: 1px solid rgba(127,176,138,0.3);
  color: var(--accent-light); font-weight: 500;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--paper);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
}
.contact-info p { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.contact-social {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.5rem; padding: 0.6rem 1rem;
  border: 1px solid var(--rule);
  text-decoration: none; color: var(--accent-deep);
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500;
  transition: all 0.2s;
}
.contact-social:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.contact-social svg { width: 18px; height: 18px; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
label {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
input, textarea {
  background: var(--warm); border: 1px solid var(--rule);
  padding: 0.75rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem; font-weight: 400; color: var(--ink);
  outline: none; transition: border-color 0.2s;
  border-radius: 0; width: 100%;
}
input:focus, textarea:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 120px; }
.recaptcha-notice { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.recaptcha-notice a { color: var(--accent); }
.form-success {
  display: none; padding: 1rem 1.5rem;
  background: rgba(74,124,89,0.1); border-left: 2px solid var(--accent);
  font-size: 0.95rem; color: var(--accent);
  animation: slideIn 0.4s ease;
}
.form-error {
  display: none; padding: 1rem 1.5rem;
  background: rgba(196,68,68,0.1); border-left: 2px solid #c44;
  font-size: 0.95rem; color: #c44;
}
@keyframes slideIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ─── FOOTER ─── */
footer {
  background: var(--ink); color: rgba(242,245,240,0.45);
  padding: 2.5rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo-svg { height: 36px; width: 36px; color: var(--paper); opacity: 0.5; }
footer p { font-size: 0.8rem; letter-spacing: 0.1em; margin: 0; }
.footer-links {
  display: flex; gap: 1.5rem; align-items: center;
  font-size: 0.8rem; letter-spacing: 0.1em;
}
.footer-links a {
  color: rgba(242,245,240,0.65); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-social { display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-social svg { width: 16px; height: 16px; }

.article-body figure {
  margin: 2rem 0;
  text-align: center;
}
.article-body figure img {
  max-width: 100%; height: auto;
  max-height: 320px;
  width: auto;
  display: inline-block;
  margin: 0;
}
.article-body figure.figure-wide img {
  max-height: none;
  width: 100%;
}
.article-body figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.6rem;
  letter-spacing: 0.03em;
}

/* ─── PAGE ERREUR (404/403/500) ─── */
.error-page {
  padding-top: 64px;
  min-height: 100vh;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.error-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 5vw 5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.error-bg-q {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 75vh;
  max-height: 720px;
  color: var(--ghost);
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
}
.error-content {
  position: relative;
  z-index: 2;
}
.error-code {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--accent-deep);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  opacity: 0.85;
}
.error-page .section-kicker {
  justify-content: center;
}
.error-page .section-kicker::after {
  content: ''; display: block; width: 2rem; height: 1px; background: var(--accent);
}
.error-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500; line-height: 1.1;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.error-rule {
  width: 3rem; height: 1px;
  background: var(--rule);
  margin: 1.5rem auto 2rem;
}
.error-phrase {
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--accent-deep);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.error-tail {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.error-actions {
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── PAGE MENTIONS LÉGALES ─── */
.legal-page {
  padding-top: 64px;
  min-height: 100vh;
  background: var(--paper);
}

/* ─── PAGE ARTICLE ─── */
.article-page { padding-top: 64px; background: var(--paper); }

.article-hero {
  position: relative;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 4rem 5vw 3rem;
  color: var(--paper);
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,43,30,0.3) 0%, rgba(28,43,30,0.85) 100%);
  z-index: 1;
}
.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
.article-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(242,245,240,0.75); text-decoration: none;
  margin-bottom: 2rem; transition: color 0.2s;
  font-weight: 500;
}
.article-back:hover { color: var(--paper); }
.article-back::before { content: '←'; font-size: 1rem; }

.article-cat {
  font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent-light); font-weight: 500; margin-bottom: 1rem;
}
.article-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 500; line-height: 1.05;
  text-transform: uppercase; letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  color: var(--paper);
}
.article-meta {
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,245,240,0.7); font-weight: 500;
}

.article-body {
  max-width: 920px; margin: 0 auto;
  padding: 4rem 5vw 5rem;
}
.article-body p.lead {
  font-size: 1.25rem; line-height: 1.6;
  color: var(--accent-deep);
  font-weight: 400; font-style: italic;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}
.article-body p {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--ink); margin-bottom: 1.4rem;
}
.article-body p strong { color: var(--accent-deep); font-weight: 600; }
.article-body p em { font-style: italic; }

.article-body .art-h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--ink);
  margin: 4rem 0 1.5rem;
  padding-top: 1.5rem;
  border-top: 3px solid var(--ink);
}
.article-body .art-h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 500; line-height: 1.2;
  letter-spacing: 0.015em;
  color: var(--accent-deep);
  margin: 2.8rem 0 1rem;
}
.article-body .art-h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.25rem;
  font-weight: 500; line-height: 1.3;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent);
  margin: 2rem 0 0.6rem;
}

.article-body ul, .article-body ol {
  margin: 0 0 1.4rem 1.5rem;
  font-size: 1.05rem; line-height: 1.75;
}
.article-body li { margin-bottom: 0.5rem; }
.article-body li::marker { color: var(--accent); }

.article-body blockquote {
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  font-size: 1.2rem; line-height: 1.6;
  color: var(--accent-deep);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 3px solid var(--accent);
  background: var(--warm);
  margin: 2rem 0;
}

.article-body img {
  max-width: 100%; height: auto;
  margin: 2rem 0;
  display: block;
}

/* Encart CTA en fin d'article */
.article-cta {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--accent-deep);
  color: var(--paper);
}
.article-cta .cta-kicker {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-light); font-weight: 600; margin-bottom: 0.6rem;
}
.article-cta .cta-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1rem;
}
.article-cta .section-rule { background: rgba(255,255,255,0.2); }
.article-cta p {
  color: rgba(242,245,240,0.75);
  font-size: 1rem; line-height: 1.7;
  margin-bottom: 1.5rem;
}
.article-cta .btn-accent {
  background: var(--accent); border-color: var(--accent);
}
.article-cta .btn-accent:hover {
  background: var(--paper); color: var(--accent-deep); border-color: var(--paper);
}

/* Section contact en bas d'article : même style que sur la home */
.article-contact {
  padding: 6rem 5vw;
  background: var(--warm);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
  align-items: start;
}
.article-contact .contact-info p { color: var(--muted); }

@media (max-width: 768px) {
  .article-contact { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
}
.legal-container { max-width: 760px; margin: 0 auto; padding: 5rem 5vw 6rem; }
.legal-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  margin-bottom: 2.5rem; transition: color 0.2s;
  font-weight: 500;
}
.legal-back:hover { color: var(--accent-deep); }
.legal-back::before { content: '←'; font-size: 1rem; }
.legal-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 1rem; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.02em;
}
.legal-rule { width: 3rem; height: 1px; background: var(--rule); margin-bottom: 2.5rem; }
.legal-content h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--accent-deep); margin: 2.5rem 0 0.75rem;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.legal-content p { font-size: 1rem; color: var(--ink); line-height: 1.7; margin-bottom: 1.1rem; }
.legal-content p strong { color: var(--accent-deep); font-weight: 600; }
.legal-content a {
  color: var(--accent); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--accent-deep); }
.legal-update {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.85rem !important; color: var(--muted) !important;
  font-style: italic;
}

/* ─── REVEAL ─── */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero { min-height: 88svh; }
  .hero-bg-q { height: 60vh; }
  .hero-title { font-size: 1.8rem; gap: 0.4em; padding: 1.25rem 1.5rem; }
  nav { display: none; }
  #apropos { grid-template-columns: 1fr; gap: 2.5rem; }
  .apropos-visual { order: -1; }
  #contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 4rem 1.5rem; }
  .articles-header { flex-direction: column; align-items: flex-start; }
  footer { justify-content: center; text-align: center; }
}
