/* ==========================================================================
   MF SERVICES — Feuille de styles principale
   Palette : vert forêt (#1E4B3A) / or (#C8933A) — reprise du logo
   Typo : Playfair Display (titres) + Inter (texte courant)
   ========================================================================== */

:root {
  --green: #1E4B3A;
  --green-dark: #12241C;
  --green-mid: #2A4A3A;
  --green-soft: #3C5C4C;
  --gold: #C8933A;
  --gold-light: #E4B368;
  --ink: #1B2A22;
  --muted: #5B6B62;
  --paper: #FFFFFF;
  --tint: #EDF2EE;
  --tint-strong: #E1EAE3;
  --border: #DCE5DE;
  --border-dark: rgba(255, 255, 255, 0.16);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 45px -25px rgba(18, 36, 28, 0.45);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; }

/* ---------- Accessibilité ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--green);
  color: #fff;
  padding: 0.85em 1.4em;
  border-radius: 0 0 8px 0;
  z-index: 1000;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  top: 0;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.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;
}

/* ---------- Layout utilitaires ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 4.5rem 0;
}
.section--tint { background: var(--tint); }
.section--dark { background: var(--green); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.section--dark .eyebrow { color: var(--gold-light); }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section--dark .section-head p { color: #D8E3DB; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  font-size: 0.98rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--green-dark); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-dark:hover { background: var(--green); color: #fff; }

/* ---------- En-tête / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--green);
}
.brand img { width: 42px; height: 42px; border-radius: 50%; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}
.nav-list a {
  display: block;
  padding: 0.6em 0.95em;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-list a:hover { background: var(--tint); color: var(--green); }
.nav-list a[aria-current="page"] {
  color: var(--green);
  background: var(--tint-strong);
}
.nav-cta {
  margin-left: 0.4rem;
  background: var(--green);
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.62em 1.3em !important;
}
.nav-cta:hover { background: var(--green-mid) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--green);
  border-radius: 8px;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--green); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: fixed;
    inset: 66px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 0.75rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    gap: 0.15rem;
  }
  .nav-list.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-list a { padding: 0.85em 0.5em; font-size: 1.05rem; }
  .nav-cta { margin-left: 0; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(120% 160% at 15% -10%, var(--green-mid) 0%, var(--green) 42%, var(--green-dark) 100%);
  color: #fff;
  padding: 5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -25%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.75rem;
  align-items: center;
}
.hero-mark {
  width: 128px; height: 128px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 25px 50px -20px rgba(0,0,0,0.55);
  flex-shrink: 0;
}
.hero-mark img { width: 74%; }
.hero-mark--badge {
  background: transparent;
  box-shadow: none;
  border-radius: 22px;
  overflow: hidden;
}
.hero-mark--badge img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 50px -20px rgba(0,0,0,0.55);
}
.hero-eyebrow {
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  max-width: 20ch;
  margin-bottom: 0.65em;
}
.hero .tagline {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 1em;
}
.hero p.lede {
  color: #E4EAE5;
  max-width: 56ch;
  font-size: 1.08rem;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.6rem; }

@media (max-width: 720px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-mark { width: 92px; height: 92px; }
}

/* ---------- Page header (pages internes) ---------- */
.page-hero {
  background: var(--green);
  color: #fff;
  padding: 3.6rem 0 3.2rem;
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin-bottom: 1.1rem;
}
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.5rem); max-width: 34ch; }
.page-hero p { color: #D8E3DB; max-width: 62ch; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.85rem;
  color: #B9C9BE;
  margin-bottom: 1rem;
}
.breadcrumb a { color: #D8E3DB; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Cartes secteurs / valeurs ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.4rem; }
.tag {
  background: var(--tint);
  color: var(--green);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4em 0.95em;
  font-size: 0.88rem;
  font-weight: 600;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-grid .lead { font-size: 1.12rem; color: var(--ink); }
.sector-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
}
.sector-box h3 { font-size: 1.05rem; margin-bottom: 0.9rem; }

.values-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .values-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values-strip { grid-template-columns: 1fr; } }
.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.2rem;
  text-align: left;
}
.value-card .num {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.value-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 0.35rem; }
.value-card p { color: #C9D6CC; font-size: 0.92rem; margin: 0; }

/* ---------- Cartes catégories de services (accueil) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  background: var(--tint);
  border-radius: var(--radius);
  padding: 2rem 1.7rem 1.7rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border: 1px solid var(--border);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cat-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; }
.cat-card h3 { font-size: 1.18rem; margin-bottom: 0.1rem; }
.cat-card p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.cat-link {
  margin-top: auto;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #D8E3DB; max-width: 52ch; margin: 0 auto 1.6rem; }
.cta-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Pages Services ---------- */
.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: -0.5rem 0 3rem;
}
.service-nav a {
  text-decoration: none;
  background: var(--tint);
  color: var(--green);
  border: 1px solid var(--border);
  padding: 0.55em 1.1em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.service-nav a:hover { background: var(--tint-strong); }

.service-block {
  padding: 3.2rem 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 96px;
}
.service-block:first-of-type { border-top: none; }
.service-block-head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
}
.service-block-head .cat-icon { width: 52px; height: 52px; }
.service-block-head .cat-icon svg { width: 24px; height: 24px; }
.service-block-head h2 { margin: 0; font-size: 1.55rem; }

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
@media (max-width: 760px) { .cluster-grid { grid-template-columns: 1fr; } }
.cluster {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.5rem;
}
.cluster h3 {
  font-size: 0.98rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.cluster ul { list-style: none; }
.cluster li {
  position: relative;
  padding-left: 1.3em;
  margin-bottom: 0.55em;
  font-size: 0.97rem;
  color: var(--ink);
}
.cluster li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.single-note {
  background: var(--tint);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.3rem 1.6rem;
  font-size: 1.02rem;
  max-width: 70ch;
}

/* ---------- Tarifs ---------- */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
@media (max-width: 1040px) { .pack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pack-grid { grid-template-columns: 1fr; } }

.pack-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pack-card-head {
  background: var(--green);
  color: #fff;
  padding: 1.6rem 1.4rem 1.4rem;
  text-align: center;
}
.pack-card.is-vip .pack-card-head { background: var(--gold); color: var(--green-dark); }
.pack-card-head .pack-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.8rem;
}
.pack-card.is-vip .pack-card-head .pack-icon { background: rgba(18,36,28,0.18); }
.pack-card-head .pack-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; }
.pack-card.is-vip .pack-card-head .pack-icon svg { stroke: var(--green-dark); }
.pack-card-head h3 { color: inherit; font-size: 1.15rem; margin: 0; }

.pack-card-body {
  padding: 1.4rem 1.4rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}
.pack-meta { font-size: 0.85rem; color: var(--muted); }
.pack-meta strong { display: block; color: var(--ink); font-size: 0.95rem; }
.pack-price {
  background: var(--tint);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  text-align: center;
}
.pack-price .amount { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--green); display: block; }
.pack-price .unit { font-size: 0.82rem; color: var(--muted); }
.pack-card ul.pack-list { list-style: none; margin: 0; }
.pack-card ul.pack-list li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0.45em;
  font-size: 0.92rem;
}
.pack-card ul.pack-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.pack-quote {
  margin-top: auto;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--green);
  border-top: 1px dashed var(--border);
  padding-top: 0.9rem;
}

.punctual-note {
  margin-top: 2rem;
  text-align: center;
  font-weight: 700;
  color: var(--green);
  background: var(--tint);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.audit-band {
  margin-top: 2rem;
  background: var(--green-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.1rem 2rem;
}
.audit-band-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.audit-band h3 { color: #fff; margin: 0; font-size: 1.15rem; }
.audit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (max-width: 700px) { .audit-grid { grid-template-columns: 1fr; } }
.audit-grid h4 { color: var(--gold-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem; font-family: var(--font-body); }
.audit-grid ul { list-style: none; }
.audit-grid li { padding-left: 1.2em; position: relative; margin-bottom: 0.4em; font-size: 0.93rem; color: #E4EAE5; }
.audit-grid li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-light); }

.legal-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin-top: 2.2rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
a.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-card .cat-icon { width: 48px; height: 48px; flex-shrink: 0; }
.contact-card .cat-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-card p { margin: 0; color: var(--muted); font-size: 0.95rem; word-break: break-word; }

.contact-form {
  background: var(--tint);
  border-radius: var(--radius);
  padding: 2.2rem;
  margin-top: 3rem;
}
.contact-form h2 { font-size: 1.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; margin-top: 1.4rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.92rem; }
.form-field input, .form-field textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75em 0.9em;
  font-family: inherit;
  font-size: 0.97rem;
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.9rem; }

/* ---------- Pages légales (texte long) ---------- */
.legal-page { max-width: 780px; }
.legal-page h2 { font-size: 1.3rem; margin-top: 2.2rem; }
.legal-page h3 { font-size: 1.05rem; color: var(--gold); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.03em; margin-top: 1.4rem; }
.legal-page p, .legal-page li { color: var(--ink); font-size: 1rem; }
.legal-page ul { margin: 0 0 1em; padding-left: 1.3em; }
.legal-page li { margin-bottom: 0.4em; }
.legal-page .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.legal-page .callout {
  background: var(--tint);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  margin: 1.4rem 0;
}
.legal-toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  margin-bottom: 2.4rem;
}
.legal-toc h2 { font-size: 1rem; margin-bottom: 0.7rem; }
.legal-toc ol { padding-left: 1.2em; margin: 0; }
.legal-toc li { margin-bottom: 0.3em; font-size: 0.94rem; }
.legal-toc a { color: var(--green); text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: #C9D6CC;
  padding: 3.5rem 0 1.8rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.9rem; }
.footer-brand img {
  width: 56px; height: 56px;
  border-radius: 14px;
  box-shadow: 0 12px 24px -10px rgba(0,0,0,0.6);
}
.footer-brand span { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.1rem; }
.footer-tagline { color: var(--gold-light); font-style: italic; font-family: var(--font-display); font-size: 0.98rem; }
.footer-col h3 {
  color: #fff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  margin-bottom: 0.9rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55em; }
.footer-col a { color: #C9D6CC; text-decoration: none; font-size: 0.94rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 1.6rem;
  font-size: 0.85rem;
  color: #9FB2A5;
}
.footer-bottom a { color: #9FB2A5; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Bandeau cookies ---------- */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 640px;
  margin: 0 auto;
  background: var(--green-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 25px 60px -20px rgba(0,0,0,0.55);
  z-index: 1000;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 0.9rem; color: #D8E3DB; margin-bottom: 1rem; }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: 0.6em 1.2em; font-size: 0.88rem; }
.btn-ghost { background: transparent; color: #D8E3DB; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: #fff; color: #fff; }

/* ---------- Print ---------- */
@media print {
  .site-header, .cookie-banner, .nav-toggle, .hero-actions, .cta-band { display: none !important; }
}
