/* ==========================================================================
   Mes petits Services — Design system
   Style : Sophistiqué / Raffiné — charcoal, or, crème + texture grain fin
   Mobile-first, animations sobres et rapides
   ========================================================================== */

:root {
  --ink: #16161a;
  --ink-soft: #26262c;
  --ink-line: #34343c;
  --gold: #bf9b5f;
  --gold-light: #d9bb85;
  --gold-deep: #96763f;
  --cream: #faf7f1;
  --cream-2: #f3ede3;
  --paper: #ffffff;
  --text: #23232a;
  --text-mid: #5c5c66;
  --text-soft: #8b8b95;
  --line: #e3ddd2;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(20, 20, 25, .06);
  --shadow-md: 0 10px 30px rgba(20, 20, 25, .10);
  --shadow-lg: 0 24px 60px rgba(20, 20, 25, .16);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --nav-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 .6em;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.1rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4.4vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.5rem); }

p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 880px; }

/* ---------- Texture grain fin (premium subtil) ---------- */
.grain::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* ---------- Utilitaires ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.lead { font-size: 1.06rem; color: var(--text-mid); }

.section { padding: 78px 0; }
.section-tight { padding: 54px 0; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .lead { color: #b9b5ad; }
.section-alt { background: var(--cream-2); }

.section-head { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.section-head p { margin-bottom: 0; }

.rule {
  width: 62px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 22px;
}
.section-dark .rule { background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }

.txt-center { text-align: center; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  white-space: nowrap;
}
.btn-filled { background: var(--ink); color: var(--cream); }
.btn-filled:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { border-color: var(--ink-line); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-outline-light { border-color: rgba(250, 247, 241, .35); color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--ink); }
.btn svg { flex: 0 0 auto; }

/* ==========================================================================
   HEADER + NAV (classique, fond plein)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-line);
}
.nav-wrap {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold);
  flex: 0 0 auto;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--cream);
  letter-spacing: .02em;
}
.brand-sub {
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a {
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #cfcbc3;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--cream); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta { display: none; }

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--ink-line);
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--cream);
  transition: transform .25s ease, opacity .2s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--ink-line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 22px 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
  }
  .nav-menu.open { max-height: 520px; }
  .nav-menu a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: .82rem;
  }
  .nav-menu a::after { display: none; }
}

/* ==========================================================================
   HERO (image plein écran)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--ink) url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1800&q=80") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,18,22,.82) 0%, rgba(18,18,22,.62) 45%, rgba(18,18,22,.88) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 100px 0; max-width: 760px; }
.hero h1 { color: var(--cream); margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { color: #ded9d0; font-size: 1.08rem; max-width: 560px; }
.hero .eyebrow { color: var(--gold-light); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.hero-facts {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(250, 247, 241, .16);
  background: rgba(16, 16, 20, .55);
  backdrop-filter: blur(4px);
}
.hero-facts-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}
.fact { padding: 22px 0; text-align: center; }
.fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold-light);
  line-height: 1.2;
}
.fact span {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #a9a49c;
}
@media (min-width: 768px) {
  .hero-facts-inner { grid-template-columns: repeat(3, 1fr); }
  .fact + .fact { border-left: 1px solid rgba(250, 247, 241, .14); }
}

/* ---------- Bannière page interne ---------- */
.page-head {
  position: relative;
  background: var(--ink) url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80") center/cover no-repeat;
  padding: 96px 0 74px;
  text-align: center;
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(18, 18, 22, .84);
}
.page-head-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.page-head h1 { color: var(--cream); margin-bottom: .25em; }
.page-head p { color: #c4bfb7; margin-bottom: 0; }
.page-head .eyebrow { color: var(--gold-light); }

/* ==========================================================================
   CARTES SERVICES — hover 3D
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease;
  will-change: transform;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(191,155,95,.10), rgba(191,155,95,0) 55%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.svc-card:hover {
  transform: perspective(900px) rotateX(4deg) rotateY(-4deg) translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(191, 155, 95, .55);
}
.svc-card:hover::before { opacity: 1; }

.svc-icon {
  width: 54px; height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 20px;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.svc-card:hover .svc-icon {
  border-color: var(--gold);
  background: var(--cream-2);
  color: var(--ink);
}
.svc-card h3 { margin-bottom: .45em; }
.svc-card p { font-size: .94rem; color: var(--text-mid); margin-bottom: 1.2em; }
.svc-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.svc-price {
  font-family: var(--serif);
  font-size: 1.28rem;
  color: var(--ink);
  white-space: nowrap;
}
.svc-dur {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: right;
}
.svc-card.dark {
  background: var(--ink-soft);
  border-color: var(--ink-line);
}
.svc-card.dark h3 { color: var(--cream); }
.svc-card.dark p { color: #b4afa7; }
.svc-card.dark .svc-meta { border-top-color: var(--ink-line); }
.svc-card.dark .svc-price { color: var(--gold-light); }
.svc-card.dark .svc-icon { border-color: var(--ink-line); color: var(--gold-light); }
.svc-card.dark:hover { border-color: rgba(217,187,133,.6); }

/* ---------- Cartes image (galerie, prestations) ---------- */
.tile-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .tile-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tile-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1), opacity .4s ease;
}
.tile:hover img { transform: scale(1.07); opacity: .82; }
.tile-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 20px 18px;
  background: linear-gradient(0deg, rgba(15,15,18,.9), rgba(15,15,18,0));
  color: var(--cream);
  transform: translateY(6px);
  transition: transform .35s ease;
}
.tile:hover .tile-cap { transform: translateY(0); }
.tile-cap strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; display: block; }
.tile-cap span { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10, 10, 12, .94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .28s ease;
  padding: 24px;
}
.lightbox.active { opacity: 1; }
.lightbox img { max-width: 92%; max-height: 88%; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 18px; right: 24px;
  color: var(--cream); font-size: 34px; line-height: 1;
  background: none; border: none;
}

/* ==========================================================================
   SPLIT (texte + image)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 62px; }
  .split.reverse .split-media { order: 2; }
}
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.check-list { margin: 20px 0 26px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: .96rem;
  color: var(--text-mid);
}
.check-list svg { flex: 0 0 auto; margin-top: 3px; color: var(--gold-deep); }

/* ==========================================================================
   TARIFS
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.price-card:hover { box-shadow: var(--shadow-md); border-color: rgba(191,155,95,.5); transform: translateY(-4px); }
.price-card.featured {
  background: var(--ink);
  border-color: var(--gold-deep);
}
.price-card.featured h3, .price-card.featured .price-amount { color: var(--cream); }
.price-card.featured p, .price-card.featured li { color: #b7b2aa; }
.price-card.featured .price-badge { background: var(--gold); color: var(--ink); }
.price-badge {
  align-self: flex-start;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--cream-2);
  color: var(--gold-deep);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  font-weight: 600;
}
.price-amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}
.price-amount small { font-size: .9rem; color: var(--text-soft); font-family: var(--sans); }
.price-card > p { font-size: .92rem; color: var(--text-mid); }
.price-card ul { margin: 18px 0 24px; flex: 1; }
.price-card ul li {
  font-size: .9rem;
  color: var(--text-mid);
  padding: 7px 0 7px 22px;
  position: relative;
}
.price-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 15px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Tableau tarifs détaillé ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 520px;
}
.price-table th, .price-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.price-table th {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--cream); }
.price-table td:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
.price-table .cat-row td {
  background: var(--cream-2);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

/* ==========================================================================
   ÉTAPES / PROCESS
   ========================================================================== */
.steps { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 22px; } }
.step { position: relative; padding-top: 8px; }
.step-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  opacity: .85;
}
.step h3 { font-size: 1.12rem; margin-bottom: .35em; }
.step p { font-size: .9rem; color: var(--text-mid); margin-bottom: 0; }
.section-dark .step p { color: #a8a39b; }

/* ==========================================================================
   COORDONNÉES / CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 46px; } }

.info-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; }
.info-item { display: flex; gap: 16px; padding: 15px 0; }
.info-item + .info-item { border-top: 1px solid var(--line); }
.info-icon {
  width: 42px; height: 42px; flex: 0 0 auto;
  border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
}
.info-item h4 {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 4px;
}
.info-item p { margin: 0; font-size: .96rem; color: var(--text); }
.info-item a { border-bottom: 1px solid rgba(191,155,95,.5); }
.info-item a:hover { color: var(--gold-deep); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 340px;
  height: 100%;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Bandeau légal ---------- */
.legal-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}
@media (min-width: 768px) { .legal-strip { grid-template-columns: repeat(3, 1fr); } }
.legal-cell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.legal-cell h4 {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 5px;
}
.legal-cell p { margin: 0; font-size: .94rem; }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-body { max-width: 860px; margin: 0 auto; }
.legal-body h2 { font-size: 1.5rem; margin-top: 2em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.1rem; margin-top: 1.6em; }
.legal-body p, .legal-body li { color: var(--text-mid); font-size: .96rem; }
.legal-body ul { margin: 0 0 1.2em; }
.legal-body ul li { padding-left: 20px; position: relative; }
.legal-body ul li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.legal-note {
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--text-mid);
  margin: 26px 0;
}
.legal-updated { font-size: .82rem; color: var(--text-soft); margin-bottom: 2em; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: #a9a49c; padding: 62px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding-bottom: 44px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; } }

.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; max-width: 330px; }
.footer h4 {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links li { padding: 5px 0; }
.footer-links a { font-size: .9rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--cream); }
.footer-contact li { padding: 5px 0; font-size: .9rem; }

.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: #7d7871;
}
.footer-bottom a:hover { color: var(--cream); }

/* ==========================================================================
   BANNIÈRE COOKIES
   ========================================================================== */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1500;
  background: var(--ink);
  border-top: 1px solid var(--gold-deep);
  padding: 16px 22px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 -10px 30px rgba(0,0,0,.25);
}
.cookie-bar.show { display: flex; }
.cookie-bar p { margin: 0; font-size: .84rem; color: #c4bfb7; max-width: 620px; }
.cookie-bar .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-bar .btn { padding: 10px 22px; font-size: .7rem; }

/* ==========================================================================
   ANIMATIONS (sobres, rapides)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes revealFallback { to { opacity: 1; transform: translateY(0); } }
.reveal { animation: revealFallback .7s ease .35s forwards; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* ---------- Accessibilité ---------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--cream); padding: 12px 18px; z-index: 3000;
}
.skip-link:focus { left: 12px; top: 12px; }
