/* ============================================================
   MNK AGENCY — Feuille de style principale
   Partagée par index.html et mentions-legales.html
   ============================================================ */

/* ─── Variables ─── */
:root {
  --ink:        #0e0d0b;
  --ink-soft:   #4a4840;
  --cream:      #f7f4ee;
  --warm:       #ede9e0;
  --gold:       #b8935a;
  --gold-light: #d4b07a;
  --gold-pale:  #f0e6d3;
  --white:      #ffffff;
  --accent:     #1a1714;
}

/* ─── Reset & base ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ─── Curseur personnalisé ─── */
#cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .08s ease, width .3s, height .3s, opacity .3s;
  opacity: 0.6;
}

/* ─── Navigation ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(247, 244, 238, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 147, 90, 0.15);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--ink-soft); text-decoration: none;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--ink); color: var(--cream) !important;
  padding: 0.6rem 1.4rem !important; border-radius: 2px;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

/* ─── Footer ─── */
footer {
  background: var(--accent); color: var(--cream);
  padding: 3rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-size: 0.78rem; color: rgba(247, 244, 238, 0.35);
  letter-spacing: 0.04em;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.78rem; color: rgba(247, 244, 238, 0.45);
  text-decoration: none; letter-spacing: 0.04em;
  transition: color .2s;
}
.footer-links a:hover,
.footer-links a.active { color: var(--gold); }

/* ─── Animations de révélation au scroll ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }


/* ============================================================
   INDEX — Hero
   ============================================================ */

#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 10rem 4rem 5rem;
  position: relative; overflow: hidden;
}
.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 28vw; font-weight: 700; color: rgba(184, 147, 90, 0.06);
  white-space: nowrap; pointer-events: none;
  letter-spacing: -0.05em; line-height: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2rem;
}
.hero-tag::before {
  content: ''; display: block;
  width: 2rem; height: 1px; background: var(--gold);
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05; font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin-bottom: 2rem;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.1rem; font-weight: 300; line-height: 1.7;
  color: var(--ink-soft); max-width: 500px;
  margin-bottom: 3rem;
}
.hero-actions { display: flex; align-items: center; gap: 2rem; }
.btn-primary {
  background: var(--ink); color: var(--cream);
  padding: 1rem 2.5rem; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background .25s, transform .15s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-secondary {
  font-size: 0.85rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  letter-spacing: 0.04em; border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s;
}
.btn-secondary:hover { color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); opacity: 0.6;
}
.scroll-line {
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%, 100% { opacity: .6; } 50% { opacity: 1; } }

.hero-stats {
  position: absolute; right: 4rem; bottom: 6rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.stat { text-align: right; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
  display: block; line-height: 1;
}
.stat-label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ink-soft);
}

/* ─── Sections communes ─── */
section { padding: 7rem 4rem; }

.section-tag {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::after { content: ''; flex: 1; max-width: 3rem; height: 1px; background: var(--gold); }

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-h2 em { font-style: italic; color: var(--gold); }

/* ─── About ─── */
#about {
  background: var(--ink); color: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
#about .section-tag { color: var(--gold-light); }
#about .section-tag::after { background: var(--gold-light); }
#about .section-h2 { color: var(--cream); }
#about .section-h2 em { color: var(--gold-light); }
.about-body {
  font-size: 1rem; line-height: 1.8; color: rgba(247, 244, 238, 0.65);
  margin-top: 1.5rem;
}
.about-right {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5px; background: rgba(255, 255, 255, 0.08);
}
.about-cell {
  background: var(--ink);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background .25s;
}
.about-cell:hover { background: #1a1714; }
.about-cell-icon { font-size: 1.4rem; margin-bottom: 0.75rem; }
.about-cell-title {
  font-size: 0.9rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.4rem;
}
.about-cell-desc {
  font-size: 0.8rem; line-height: 1.6;
  color: rgba(247, 244, 238, 0.45);
}

/* ─── Services ─── */
#services { background: var(--warm); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end;
  margin-bottom: 5rem;
}
.services-intro {
  font-size: 1rem; line-height: 1.8; color: var(--ink-soft);
  margin-top: 1.5rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(14, 13, 11, 0.08);
}
.service-card {
  background: var(--warm);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background .3s;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .4s ease;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { width: 100%; }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700;
  color: rgba(184, 147, 90, 0.15); line-height: 1;
  margin-bottom: 1.25rem;
}
.service-title { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.75rem; }
.service-desc { font-size: 0.85rem; line-height: 1.7; color: var(--ink-soft); }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.25rem; }
.tag {
  font-size: 0.7rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.25rem 0.65rem;
  border: 1px solid rgba(184, 147, 90, 0.3);
  color: var(--gold); border-radius: 2px;
}

/* ─── Réalisations ─── */
#works { background: var(--cream); }
.works-header { margin-bottom: 4rem; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.work-card {
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(14, 13, 11, 0.08);
  border-radius: 4px;
  transition: transform .3s, box-shadow .3s;
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(14, 13, 11, 0.12); }
.work-thumb {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.work-thumb-bg { position: absolute; inset: 0; transition: transform .4s ease; }
.work-card:hover .work-thumb-bg { transform: scale(1.05); }
.work-thumb-logo {
  position: relative; z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: white; text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.work-body { padding: 1.5rem; }
.work-type {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.work-name { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.5rem; }
.work-desc { font-size: 0.83rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 1rem; }
.work-link {
  font-size: 0.78rem; font-weight: 500;
  color: var(--gold); text-decoration: none;
  letter-spacing: 0.05em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.4rem;
  transition: gap .2s;
}
.work-link:hover { gap: 0.7rem; }
.work-link::after { content: '→'; }

/* ─── Process ─── */
#process { background: var(--ink); color: var(--cream); }
#process .section-tag { color: var(--gold-light); }
#process .section-tag::after { background: var(--gold-light); }
#process .section-h2 { color: var(--cream); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700;
  color: rgba(184, 147, 90, 0.12); line-height: 1;
  margin-bottom: 1.5rem;
}
.process-step-title {
  font-size: 0.95rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.75rem;
}
.process-step-desc {
  font-size: 0.82rem; line-height: 1.7;
  color: rgba(247, 244, 238, 0.45);
}
.process-step-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: rgba(184, 147, 90, 0);
  transition: background .3s;
}
.process-step:hover .process-step-bar { background: var(--gold); }

/* ─── Contact ─── */
#contact {
  background: var(--warm);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream); border: 1px solid rgba(14, 13, 11, 0.12);
  border-radius: 2px; padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--ink); outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info-label {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.contact-info-value { font-size: 1rem; font-weight: 400; color: var(--ink); }
.contact-promise {
  background: var(--ink); color: var(--cream);
  padding: 2rem; border-radius: 2px;
  margin-top: 1rem;
}
.contact-promise-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; margin-bottom: 0.75rem;
}
.contact-promise-desc {
  font-size: 0.83rem; line-height: 1.7;
  color: rgba(247, 244, 238, 0.6);
}


/* ============================================================
   MENTIONS LÉGALES — Page header
   ============================================================ */

.legal-hero {
  background: var(--accent);
  color: var(--cream);
  padding: 10rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.legal-hero-bg {
  position: absolute; top: 50%; right: -2rem;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 700;
  color: rgba(184, 147, 90, 0.04);
  white-space: nowrap; pointer-events: none;
  letter-spacing: -0.05em; line-height: 1; user-select: none;
}
.legal-hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; position: relative;
}
.legal-hero-tag::before {
  content: ''; display: block;
  width: 2rem; height: 1px; background: var(--gold);
}
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 1.5rem;
  position: relative;
}
.legal-hero h1 em { font-style: italic; color: var(--gold-light); }
.legal-hero-meta {
  font-size: 0.75rem;
  color: rgba(247, 244, 238, 0.35);
  letter-spacing: 0.1em; text-transform: uppercase;
  position: relative;
}

/* ─── Layout deux colonnes ─── */
.legal-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 5rem;
  align-items: start;
}

/* ─── Table des matières ─── */
.legal-toc { position: sticky; top: 6.5rem; }
.legal-toc-title {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold);
  margin-bottom: 1.25rem;
}
.legal-toc-list { list-style: none; }
.legal-toc-list li { border-left: 1px solid rgba(184, 147, 90, 0.2); }
.legal-toc-list a {
  display: block; font-size: 0.79rem;
  color: var(--ink-soft); text-decoration: none;
  padding: 0.45rem 0.85rem; line-height: 1.4;
  transition: color .2s, background .2s;
}
.legal-toc-list a:hover {
  color: var(--gold);
  background: rgba(184, 147, 90, 0.05);
}

/* ─── Contenu légal ─── */
.legal-content { display: flex; flex-direction: column; gap: 4rem; }

.legal-section {
  scroll-margin-top: 7rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(14, 13, 11, 0.08);
}
.legal-section:last-child { border-bottom: none; padding-bottom: 0; }

.legal-section-tag {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold);
  margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.legal-section-tag::after { content: ''; flex: 0 0 2rem; height: 1px; background: var(--gold); }

.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 2rem; color: var(--ink);
}

/* Tableau d'informations */
.legal-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.legal-table tr { border-bottom: 1px solid rgba(14, 13, 11, 0.06); }
.legal-table tr:last-child { border-bottom: none; }
.legal-table td {
  padding: 0.75rem 0; font-size: 0.87rem;
  vertical-align: top; line-height: 1.6;
}
.legal-table td:first-child {
  color: var(--ink-soft); font-size: 0.72rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  width: 36%; padding-right: 1.5rem; padding-top: 0.9rem;
}
.legal-table td:last-child { color: var(--ink); }
.legal-table a { color: var(--gold); text-decoration: none; }
.legal-table a:hover { text-decoration: underline; }

/* Badge "À compléter" */
.badge-todo {
  display: inline-block;
  background: rgba(184, 147, 90, 0.1);
  border: 1px solid rgba(184, 147, 90, 0.35);
  color: var(--gold); font-size: 0.65rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.1rem 0.45rem; border-radius: 2px;
  vertical-align: middle; margin-left: 0.4rem;
}

/* Paragraphes */
.legal-p {
  font-size: 0.9rem; line-height: 1.85;
  color: var(--ink-soft); margin-bottom: 1rem;
}
.legal-p:last-child { margin-bottom: 0; }
.legal-p strong { color: var(--ink); font-weight: 500; }
.legal-p a { color: var(--gold); text-decoration: none; }
.legal-p a:hover { text-decoration: underline; }

/* Encadré gold */
.legal-box {
  background: var(--warm);
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 2px 2px 0;
}
.legal-box p { font-size: 0.87rem; line-height: 1.75; color: var(--ink-soft); }
.legal-box p + p { margin-top: 0.5rem; }
.legal-box strong { color: var(--ink); font-weight: 500; }
.legal-box a { color: var(--gold); text-decoration: none; }
.legal-box a:hover { text-decoration: underline; }

/* Sous-section */
.legal-sub { margin-top: 2.5rem; }
.legal-sub h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--ink); margin-bottom: 1rem;
}

/* Liste à puces */
.legal-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; }
.legal-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.87rem; color: var(--ink-soft); line-height: 1.65;
}
.legal-list li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 0.55rem;
}
.legal-list li strong { color: var(--ink); font-weight: 500; }

/* Grille des droits RGPD */
.rights-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(14, 13, 11, 0.07);
  border-radius: 4px; overflow: hidden; margin-top: 1.5rem;
}
.right-item { background: var(--cream); padding: 1.25rem 1.25rem 1rem; transition: background .2s; }
.right-item:hover { background: var(--warm); }
.right-item-title {
  font-size: 0.82rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.right-item-title::before { content: ''; width: 0.6rem; height: 2px; background: var(--gold); flex-shrink: 0; }
.right-item-ref { font-size: 0.68rem; color: var(--gold); letter-spacing: 0.04em; }

/* Tableau cookies */
.cookie-table { width: 100%; border-collapse: collapse; margin-top: 1.25rem; font-size: 0.83rem; }
.cookie-table th {
  text-align: left; font-size: 0.67rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(184, 147, 90, 0.25);
  font-weight: 500;
}
.cookie-table td {
  padding: 0.75rem 0.75rem; color: var(--ink-soft);
  border-bottom: 1px solid rgba(14, 13, 11, 0.05);
  line-height: 1.5; vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-badge {
  display: inline-block; font-size: 0.64rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.15rem 0.45rem; border-radius: 2px; font-weight: 500;
}
.cookie-badge.necessary {
  background: rgba(45, 107, 74, 0.1); color: #2d6b4a;
  border: 1px solid rgba(45, 107, 74, 0.25);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  /* Navigation */
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }

  /* Footer */
  footer { flex-direction: column; gap: 1rem; text-align: center; }

  /* Sections index */
  section { padding: 5rem 1.5rem; }
  #hero { padding: 8rem 1.5rem 4rem; }
  .hero-stats { display: none; }
  #about, #contact { grid-template-columns: 1fr; gap: 3rem; }
  .services-header { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }

  /* Mentions légales */
  .legal-hero { padding: 8rem 1.5rem 4rem; }
  .legal-wrap { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .legal-toc { position: static; }
  .rights-grid { grid-template-columns: 1fr; }
  .cookie-table { display: block; overflow-x: auto; }
}
