/*
@charset "UTF-8";
	Theme Name: starter
	Theme URI: https://nature-digitale.fr
	Description: Starter Theme - Nature Digitale
	Author: Nature Digitale - Agence Web Eco Responsable
	Author URI: https://nature-digitale.fr
	Version: 1.0.0
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: nature-digitale
*/

/* ── Polices (self-hosted, variables, subset latin) ───────────
   2 polices latines pour limiter le poids : Geist (corps + titres)
   et Caveat (accent manuscrit). Un seul woff2 par police couvre
   toute la plage de graisses (light inclus). */
@font-face {
  font-family: 'Geist';                  /* Corps de texte + titres */
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/geist/Geist-Variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Caveat';                 /* Accent manuscrit */
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/caveat/Caveat-Variable.woff2') format('woff2');
}

/* ── Variables ────────────────────────────────────────────────
   Design tokens Smile Coworking. Les espacements sont des
   multiples de 5. Tailles en px, titres en clamp(). */
:root {
  /* Polices */
  --font-body: 'Geist', -apple-system, system-ui, "Segoe UI", sans-serif;
  --font-heading: var(--font-body); /* titres en Geist (Bricolage supprime) */
  --font-accent: 'Caveat', cursive;

  /* Palette Smile */
  --green: #0eb692;
  --green-deep: #0a8870;
  --green-soft: #c8eee3;
  --green-wash: #e8f6f1;
  --black: #1a1d1c;
  --black-soft: #2d3230;
  --ink-mid: #4a524f;
  --ink-light: #8a948f;
  --terra: #d4633c;
  --terra-soft: #f5dcd0;
  --cream: #faf6ee;
  --cream-warm: #f4ebd8;
  --paper: #ffffff;

  /* Alias compat (composants existants : header, footer, blog…) */
  --color-text: var(--black);
  --color-text-light: var(--ink-mid);
  --color-bg: var(--paper);
  --color-bg-alt: var(--cream-warm);
  --color-border: #e7ddca;
  --color-link: var(--green-deep);
  --color-link-hover: var(--green);

  /* Layout */
  --container-width: 1320px;
  --container-padding: 0 30px;
  --header-height: 95px;
  --section-padding: 120px 0;

  /* Espacements (multiples de 5) */
  --space-2xs: 5px;
  --space-xs: 10px;
  --space-sm: 15px;
  --space-md: 20px;
  --space-lg: 30px;
  --space-xl: 50px;
  --space-2xl: 70px;

  /* Rayons */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius: 20px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;

  /* z-index */
  --z-header: 100;
  --z-mobile-menu: 150;
  --z-overlay: 140;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-link-hover);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.site-main {
  flex: 1;
  padding-top: var(--header-height);
}

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ── Bouton de base ───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity var(--transition-fast);
  text-align: center;
}

.btn-primary:hover {
  opacity: 0.85;
  color: var(--color-bg);
}

/* ── Admin bar ────────────────────────────────────────────── */
.admin-bar .site-header {
  top: 32px;
}

.admin-bar .mobile-menu {
  padding-top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
  .admin-bar .mobile-menu {
    padding-top: 46px;
  }
}

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--color-bg);
  z-index: var(--z-header);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  max-width: 150px;
  height: auto;
}

/* Navigation */
.header-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.header-nav li {
  list-style: none;
}

.header-nav a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
  padding: 4px 0;
}

.header-nav a:hover,
.header-nav .current-menu-item > a {
  color: var(--color-link);
}

/* CTA Header */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.header-cta .arrow::before { width: 14px; height: 14px; }

/* ── Actions header (CTA + hamburger groupés à droite) ────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Hamburger (cercle vert pâle, comme la croix ; laissé derrière le panneau) ── */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-wash);
  transition: background var(--transition-fast);
}
.hamburger:hover { background: var(--green); }

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}
.hamburger:hover span { background: #fff; }

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu ──────────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--cream);
  z-index: var(--z-mobile-menu);
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  box-shadow: -10px 0 40px rgba(26, 29, 28, 0.18);
}

.mobile-menu.active {
  transform: translateX(0);
}

/* En-tête du panneau : logo + croix de fermeture */
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(14, 182, 146, 0.15);
}
.mobile-menu-logo img {
  height: 50px;
  width: auto;
  max-width: none;
  display: block;
}
.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-wash);
  color: var(--green-deep);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.mobile-menu-close:hover {
  background: var(--green);
  color: #fff;
  transform: rotate(90deg);
}
.mobile-menu-close svg { width: 20px; height: 20px; }

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 15px 20px;
  flex: 1;
  overflow-y: auto;
}
.mobile-menu li { list-style: none; }
.mobile-menu li a {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  padding: 15px 0;
  display: block;
  border-bottom: 1px solid rgba(14, 182, 146, 0.12);
  color: var(--black);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.mobile-menu li a:hover,
.mobile-menu li.current-menu-item > a {
  color: var(--green-deep);
  padding-left: 10px;
}

.mobile-menu-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px 20px 5px;
}
.mobile-menu-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.mobile-menu-socials a:hover { background: var(--green); transform: translateY(-2px); }
.mobile-menu-socials img { width: 18px; height: 18px; filter: brightness(0) invert(1); }

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 15px 20px 25px;
  text-align: center;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 15px 20px;
  font-weight: 600;
}
.mobile-cta:hover { background: var(--green-deep); color: #fff; opacity: 1; }

/* ── Responsive header ────────────────────────────────────── */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header-nav {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-bg-alt);
  padding: 48px 0 24px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo a {
  display: inline-block;
}

.footer-logo img {
  margin: 0 auto;
  max-width: 120px;
  height: auto;
  width: auto;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}

.footer-social-link img {
  width: 24px;
  height: 24px;
}

.footer-social-link:hover {
  opacity: 0.7;
}

.footer-links {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.footer-links a {
  color: var(--color-text-light);
}

.footer-links a:hover {
  color: var(--color-link);
}

.footer-sep {
  margin: 0 10px;
  opacity: 0.4;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.footer-credit {
  margin-top: 4px;
}

.footer-credit a {
  color: var(--color-link);
}

/* Footer pill eco */
.footer-pill {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.footer-pill .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  padding: 4px 12px 4px 4px;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer-pill .pill:hover {
  opacity: 0.85;
}

.footer-pill .pill .note {
  border-radius: 50px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 0.8rem;
}

.footer-pill .pill .carbon p {
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 40px 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn-primary {
  background: #fff;
  color: var(--color-text);
}

.hero .btn-primary:hover {
  opacity: 0.9;
  color: var(--color-text);
}

/* Hero Small */
.hero--small {
  min-height: 280px;
  max-height: 280px;
}

.hero--small .hero-title {
  font-size: 2.25rem;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════
   PAGE CONTENT (layout content for legal pages, etc.)
   ══════════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-padding);
}

.layout-content {
  padding: 48px 0 64px;
}

.layout-content__body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.layout-content__body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 40px 0 12px;
}

.layout-content__body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 28px 0 8px;
}

.layout-content__body p {
  margin-bottom: 16px;
}

.layout-content__body ul,
.layout-content__body ol {
  margin: 0 0 16px 24px;
}

.layout-content__body ul {
  list-style: disc;
}

.layout-content__body ol {
  list-style: decimal;
}

.layout-content__body a {
  color: var(--color-link);
  text-decoration: underline;
}

.layout-content__body a:hover {
  color: var(--color-link-hover);
}

/* ══════════════════════════════════════════════════════════════
   COMPLIANZ — politique de cookies (shortcode [cmplz-document])
   Le plugin n'apporte pas sa CSS ici : on stylise nous-mêmes le
   document (accordéons, grilles, titres) selon la charte Smile.
   ══════════════════════════════════════════════════════════════ */
.cmplz-document {
  margin-top: 4px;
}
/* Domaine leurre anti-spam de l'e-mail : masqué par la CSS Complianz
   absente. Sans ça, l'adresse de contact s'affiche fausse (ex.com). */
.cmplz-document .cmplz-fmail-domain {
  display: none;
}
/* Mention de mise à jour (intro) */
.cmplz-document > p:first-child {
  color: var(--ink-mid);
  font-size: 0.95rem;
}
/* Titres h4/h5 internes (layout-content ne stylise que h2/h3) */
.cmplz-document h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 18px 0 6px;
  color: var(--black);
}
.cmplz-document h5 {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink-light);
}

/* ── Accordéons « Cookies placés » ── */
#cmplz-cookies-overview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 8px;
}
#cmplz-cookies-overview details.cmplz-dropdown {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--paper);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
#cmplz-cookies-overview details.cmplz-dropdown[open] {
  border-color: var(--green-soft);
  box-shadow: 0 8px 24px rgba(26, 29, 28, 0.06);
}
#cmplz-cookies-overview summary.cmplz-service-header {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
}
#cmplz-cookies-overview summary.cmplz-service-header::-webkit-details-marker {
  display: none;
}
#cmplz-cookies-overview summary.cmplz-service-header > div {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
}
#cmplz-cookies-overview summary.cmplz-service-header h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}
#cmplz-cookies-overview summary.cmplz-service-header > div > p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green-deep);
  background: var(--green-wash);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}
/* Chevron */
#cmplz-cookies-overview summary.cmplz-service-header::after {
  content: '';
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 2px solid var(--ink-light);
  border-bottom: 2px solid var(--ink-light);
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
}
#cmplz-cookies-overview details.cmplz-dropdown[open] summary.cmplz-service-header::after {
  transform: rotate(-135deg);
}
/* Cases de consentement masquées : la politique est en lecture seule */
#cmplz-cookies-overview .cmplz_consent_per_service_label,
#cmplz-cookies-overview .cmplz-accept-service {
  display: none;
}
/* Corps de l'accordéon */
#cmplz-cookies-overview details.cmplz-dropdown > div {
  padding: 0 20px;
}
#cmplz-cookies-overview details.cmplz-dropdown > div:last-child {
  padding-bottom: 18px;
}
#cmplz-cookies-overview details.cmplz-dropdown p {
  font-size: 0.92rem;
  margin: 0 0 4px;
}
/* Grille Nom / Expiration / Fonction */
.cmplz-document .cookies-per-purpose {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 18px;
  align-items: baseline;
  margin: 14px 0 4px;
  padding: 16px 18px;
  background: var(--green-wash);
  border-radius: var(--radius-sm);
}
.cmplz-document .cookies-per-purpose .purpose {
  grid-column: 1 / -1;
}
.cmplz-document .cookies-per-purpose .purpose h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: var(--green-deep);
}
.cmplz-document .cookies-per-purpose .name,
.cmplz-document .cookies-per-purpose .retention,
.cmplz-document .cookies-per-purpose .function {
  font-size: 0.9rem;
  word-break: break-word;
}
/* Coordonnées (section 10) */
.cmplz-document .cmplz-contact-organisation {
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════ */
.cta-section {
  padding: var(--section-padding);
  text-align: center;
}

.cta-section .container {
  max-width: 720px;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text);
}

.cta-section__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .cta-section__title {
    font-size: 1.5rem;
  }

  .cta-section__text {
    font-size: 1rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   HELPERS
   ══════════════════════════════════════════════════════════════ */
.section-normal {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-normal--padding-normal {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pa-top-2 {
  padding-top: 40px;
}

/* ══════════════════════════════════════════════════════════════
   BLOG — SINGLE (hero, prose, sommaire, partage, auteur)
   ══════════════════════════════════════════════════════════════ */

/* ── Hero d'article (centré : catégories + titre + meta auteur) ── */
.post-hero { padding-bottom: 50px; }
.post-hero .post-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.post-hero .breadcrumb { justify-content: center; }
.post-hero-cats {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.post-hero-cat {
  display: inline-flex;
  align-items: center;
  background: var(--green-wash);
  color: var(--green-deep);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.post-hero-cat:hover { background: var(--green); color: #fff; }
.post-hero h1 { font-size: clamp(32px, 4.2vw, 54px); margin-bottom: 25px; }
.post-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-mid);
}
.post-hero-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}
.post-hero-author { font-weight: 600; color: var(--black); }
.post-hero-meta .sep { color: var(--ink-light); }
.post-hero-photo {
  max-width: 1060px;
  margin: 45px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  box-shadow: 0 25px 50px rgba(26, 29, 28, 0.16);
  position: relative;
  z-index: 2;
}
.post-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Corps de l'article (prose) ───────────────────────────── */
.post-content { padding: 30px 0 0; }
.post-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--black-soft);
}
.post-body p { margin-bottom: 20px; }
.post-body strong { color: var(--black); font-weight: 600; }
.post-body a {
  color: var(--green-deep);
  text-decoration: underline;
  text-decoration-color: var(--green-soft);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.post-body a:hover { color: var(--green); }
.post-body h2 {
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.15;
  margin: 50px 0 20px;
  color: var(--black);
}
.post-body h2::after {
  content: '';
  display: block;
  width: 45px;
  height: 5px;
  background: var(--green);
  border-radius: var(--radius-pill);
  margin-top: 12px;
}
.post-body h3 { font-size: 22px; margin: 35px 0 15px; color: var(--black); }
.post-body > ul,
.post-body > ol { margin: 0 0 25px; padding: 0; }
.post-body > ul li,
.post-body > ol li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  list-style: none;
}
.post-body > ul li::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.post-body > ol { counter-reset: nd-ol; }
.post-body > ol li { counter-increment: nd-ol; }
.post-body > ol li::before {
  content: counter(nd-ol);
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--green-wash);
  color: var(--green-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-body blockquote {
  position: relative;
  background: var(--green-wash);
  border-left: 5px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 30px 30px 30px 70px;
  margin: 35px 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--black);
}
.post-body blockquote::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  left: 24px;
  font-family: var(--font-accent);
  font-size: 56px;
  line-height: 1;
  color: var(--terra);
}
.post-body blockquote p { margin-bottom: 10px; }
.post-body blockquote p:last-child { margin-bottom: 0; }
.post-body blockquote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
}
.post-body img {
  border-radius: var(--radius);
  margin: 35px auto;
  box-shadow: 0 15px 35px rgba(26, 29, 28, 0.12);
}
.post-body figure { margin: 35px 0; }
.post-body figure img { margin: 0 auto; }
.post-body figcaption {
  font-size: 14px;
  color: var(--ink-light);
  text-align: center;
  margin-top: 12px;
}
.post-body hr {
  border: none;
  border-top: 1px solid rgba(26, 29, 28, 0.12);
  margin: 45px 0;
}
.post-body code {
  background: var(--cream-warm);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
}

/* Tableaux — reset explicite des bordures injectées par les styles
   globaux WP (th/td recevaient une bordure par défaut), puis design Smile :
   entête noire, lignes zébrées, séparateurs fins, coins arrondis. */
.post-body table {
  width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  margin: 35px 0;
  font-size: 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.post-body table th,
.post-body table td {
  border: none;
  text-align: left;
  vertical-align: middle;
}
.post-body th {
  background: var(--black);
  color: var(--cream);
  padding: 14px 18px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-body th:first-child { border-radius: calc(var(--radius-md) - 1px) 0 0 0; }
.post-body th:last-child { border-radius: 0 calc(var(--radius-md) - 1px) 0 0; }
.post-body td {
  padding: 13px 18px;
  background: var(--paper);
  border-bottom: 1px solid var(--color-border);
}
.post-body tr:nth-child(even) td { background: var(--cream); }
.post-body tr:last-child td { border-bottom: none; }
.post-body tr:last-child td:first-child { border-radius: 0 0 0 calc(var(--radius-md) - 1px); }
.post-body tr:last-child td:last-child { border-radius: 0 0 calc(var(--radius-md) - 1px) 0; }

/* ══════════════════════════════════════════════════════════════
   TABLE OF CONTENTS (markup généré par regenerate_toc_on_save)
   ══════════════════════════════════════════════════════════════ */
.table-of-contents {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 10;
}
.toc-container {
  background: var(--paper);
  border: 1px solid rgba(26, 29, 28, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.toc-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  transition: background var(--transition-fast);
}
.toc-title:hover { background: var(--green-wash); }
.toc-title .toc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--green-wash);
  border-radius: 10px;
  flex-shrink: 0;
}
.toc-title .toc-icon img { width: 16px; height: 16px; }
.toc-title p { margin: 0; }
.table-of-contents ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  margin: 0;
  list-style: none;
}
.table-of-contents ul.toc-fade-in {
  max-height: 600px;
  padding: 5px 20px 20px;
  overflow-y: auto;
}
.table-of-contents ul li { list-style: none; }
.table-of-contents ul li a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.table-of-contents ul li a:hover { color: var(--green-deep); }
.table-of-contents ul li a.toc-heading-1 {
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}
.table-of-contents ul li a.toc-heading-2 { padding-left: 18px; font-weight: 500; }
.table-of-contents ul li a.toc-heading-3 { padding-left: 36px; font-size: 13px; }

/* ══════════════════════════════════════════════════════════════
   SHARE ARTICLE
   ══════════════════════════════════════════════════════════════ */
.block-share-article {
  max-width: 760px;
  margin: 50px auto 0;
  padding: 30px;
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.block-share-article a { text-decoration: none; }
.share-article-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.share-article-wrapper .title {
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  margin: 0;
}
.share-article-wrapper .links { display: flex; gap: 10px; }
.announce-share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.announce-share-link img { width: 18px; height: 18px; }
.announce-share-link:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.announce-share-link:hover img { filter: brightness(0) invert(1); }
.block-share-article .more-articles {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--black);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s;
}
.block-share-article .more-articles:hover {
  background: var(--black);
  color: var(--cream);
}

.tooltip-share {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  animation: tooltipFade 2s ease forwards;
}

@keyframes tooltipFade {
  0%   { opacity: 0; transform: translateX(-50%) translateY(10px); }
  15%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  85%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

/* ══════════════════════════════════════════════════════════════
   AUTHOR CARD
   ══════════════════════════════════════════════════════════════ */
.block-author-article {
  max-width: 760px;
  margin: 15px auto 0;
}
.author-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.author-card .image:empty { display: none; }
.author-card .image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(26, 29, 28, 0.12);
  margin: 0;
}
.author-card .content { flex: 1; }
.author-card .nickname {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--black);
}
.author-card .nickname::after { display: none; }
.author-card .social-links { display: flex; gap: 8px; margin-bottom: 10px; }
.author-card .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.author-card .social-links a:hover { background: var(--green-soft); transform: translateY(-2px); }
.author-card .social-links img { width: 16px; height: 16px; margin: 0; box-shadow: none; border-radius: 0; }
.author-card .description {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin: 0;
}

/* ── FAQ d'article (surcharge Smile du bloc de base, schema FAQPage inclus) ── */
.post-body .block-faq-article { margin: 50px 0 0; }
/* le ul porte aussi la classe .faq : neutralise le padding de section hérité de la frontpage */
.post-body .block-faq-article .block-faqs { padding: 0; margin: 0; }
.post-body .block-faq-article .faq-category-title {
  font-size: clamp(24px, 2.6vw, 30px);
  margin: 0 0 25px;
  color: var(--black);
}
.post-body .faq-item {
  background: var(--paper);
  border: 1px solid rgba(14, 182, 146, 0.12);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.post-body .faq-item:hover { border-color: var(--green-soft); }
.post-body .faq-item.expanded { border-color: var(--green-soft); }
.post-body .faq-item .question { padding: 18px 22px; }
.post-body .faq-item .question:hover { background: var(--green-wash); }
.post-body .faq-item .question h3 { font-size: 17px; margin: 0; }
.post-body .faq-item .question::after { color: var(--green-deep); }
.post-body .faq-item .answer .text-wrapper { padding: 0 22px 18px; font-size: 15px; }
.post-body .faq-item .answer .text-wrapper p { margin-bottom: 8px; }

/* ══════════════════════════════════════════════════════════════
   FAQ ARTICLE
   ══════════════════════════════════════════════════════════════ */
.block-faq-article {
  max-width: 780px;
  margin: 40px auto;
  padding: 0;
}

.block-faq-article .faq-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text);
  border-bottom: none;
  padding-bottom: 0;
}

.block-faqs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-text-light);
}

.faq-item .question {
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-fast);
}

.faq-item .question:hover {
  background: var(--color-bg-alt);
}

.faq-item .question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.faq-item .question::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-text-light);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition-base);
}

.faq-item.expanded .question::after {
  content: "−";
}

.faq-item .answer {
  height: 0;
  overflow: hidden;
  transition: height var(--transition-base);
}

.faq-item .answer .text-wrapper {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.faq-item .answer .text-wrapper p {
  margin-bottom: 8px;
}

.faq-item .answer .text-wrapper a {
  color: var(--color-link);
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════
   CTA ARTICLE (inline CTA block)
   ══════════════════════════════════════════════════════════════ */
.cta-article-block {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 45px 40px;
  margin: 45px 0;
  text-align: center;
  box-shadow: 0 20px 40px rgba(14, 182, 146, 0.2);
}
.cta-article-block .title {
  color: #fff;
  font-size: 26px;
  margin: 0 0 10px;
}
.cta-article-block .title::after { display: none; }
.cta-article-block .texte {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}
.cta-article-block .texte p { margin-bottom: 10px; }
.cta-article-block .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: var(--black);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s, box-shadow 0.25s;
}
.cta-article-block .btn:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.5), 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* ══════════════════════════════════════════════════════════════
   POPUP ARTICLE
   ══════════════════════════════════════════════════════════════ */
.popup-article-block {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.popup-article-block.is-visible {
  opacity: 1;
  pointer-events: all;
}

.popup-content {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.popup-close:hover {
  opacity: 1;
}

.popup-close img {
  width: 20px;
  height: 20px;
}

.popup-content .title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.popup-content .text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.popup-content .btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-text);
  color: var(--color-bg);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition-fast);
}

.popup-content .btn:hover {
  opacity: 0.85;
  color: var(--color-bg);
}

/* ══════════════════════════════════════════════════════════════
   VIDEO EMBED
   ══════════════════════════════════════════════════════════════ */
.block-video {
  position: relative;
  margin: 24px 0;
}

.video-wrapper {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-wrapper .text-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.play-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.play-icon:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.play-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.poster-container img {
  width: 100%;
  height: auto;
  display: block;
}

.video-container {
  display: none;
}

.video-container.show-video {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.video-player-container {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-player-container video {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.video-player-container .close-icon {
  position: absolute;
  top: -36px;
  right: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.video-player-container .close-icon:hover {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   BLOG — ARCHIVE (hero, filtres, grille de cards, pagination)
   ══════════════════════════════════════════════════════════════ */
.blog-hero { padding-bottom: 50px; }
.blog-list { padding: 10px 0 100px; }

/* Filtres par catégorie (pills) */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s;
}
.filter-pill:hover { background: var(--black); color: var(--cream); }
.filter-pill.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 3px 0 var(--green-deep);
}

/* Grille de cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.post-card {
  background: var(--paper);
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.post-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--black);
}
.post-card-photo {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--black);
}
.post-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.post-card:hover .post-card-photo img { transform: scale(1.05); }
.post-card-photo.no-photo {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card-placeholder {
  font-family: var(--font-accent);
  font-size: 44px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transform: rotate(-4deg);
}
.post-card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--black);
  color: var(--cream);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 25px 25px 20px;
}
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-light);
  margin-bottom: 12px;
}
.post-card-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.post-card-title a { color: var(--black); }
.post-card-title a:hover { color: var(--green-deep); }
.post-card-excerpt {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.post-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(26, 29, 28, 0.1);
}
.post-card-more {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-deep);
}
.post-card-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transform: rotate(-45deg);
  transition: transform 0.3s, background 0.3s;
}
.post-card:hover .post-card-arrow {
  transform: rotate(0deg);
  background: var(--green-deep);
}

/* Card mise en avant (1er article de la page 1) */
.post-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.post-card.featured .post-card-photo {
  aspect-ratio: auto;
  height: 100%;
  min-height: 340px;
}
.post-card.featured .post-card-body {
  padding: 45px 40px;
  justify-content: center;
}
.post-card.featured .post-card-title { font-size: clamp(26px, 2.6vw, 34px); }
.post-card.featured .post-card-excerpt { font-size: 16px; flex: 0 0 auto; }

/* Pagination (the_posts_pagination) */
.navigation.pagination { margin-top: 50px; }
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.navigation.pagination .page-numbers {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 2px solid var(--black);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  transition: all 0.25s;
}
.navigation.pagination a.page-numbers:hover { background: var(--black); color: var(--cream); }
.navigation.pagination .page-numbers.current {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 3px 0 var(--green-deep);
}
.navigation.pagination .page-numbers.dots { border: none; min-width: auto; padding: 0 4px; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* État vide (archive / recherche sans résultat) */
.blog-empty {
  text-align: center;
  padding: 50px 0 20px;
  max-width: 480px;
  margin: 0 auto;
}
.blog-empty-accent {
  font-family: var(--font-accent);
  font-size: 38px;
  color: var(--terra);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 10px;
}
.blog-empty p:last-child { font-size: 17px; color: var(--ink-mid); }

/* Derniers articles (bas de single) */
.post-related {
  padding: 90px 0;
  background: var(--cream-warm);
  border-radius: 40px 40px 0 0;
  margin-top: 70px;
}
.post-related-head {
  margin-bottom: 45px;
  text-align: center;
}
.post-related-head .section-title { margin: 0 auto; }
.post-related .post-card { border-color: var(--black); }

/* ══════════════════════════════════════════════════════════════
   404 PAGE
   ══════════════════════════════════════════════════════════════ */
.page-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  text-align: center;
  padding: 40px 24px;
}

.error-404 {
  max-width: 560px;
}

.error-404__code {
  font-family: var(--font-heading);
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #0d3b3e 0%, #1a7a7a 20%, #5ec4d4 40%, #c8a8d8 65%, #e8c8b8 85%, #f5e6d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error-404__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.error-404__text {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

.error-404__btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--color-text);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.error-404__btn:hover {
  opacity: 0.85;
  color: var(--color-bg);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero--small {
    min-height: 200px;
    max-height: 200px;
  }

  .hero--small .hero-title {
    font-size: 1.75rem;
  }

  .layout-content {
    padding: 32px 0 48px;
  }

  .site-footer {
    padding: 32px 0 20px;
  }

  /* 404 */
  .error-404__code {
    font-size: 7rem;
  }

  .error-404__title {
    font-size: 1.25rem;
  }

  /* Single */
  .post-hero-photo {
    aspect-ratio: 16 / 10;
    margin-top: 35px;
  }

  .post-body {
    font-size: 16px;
  }

  .post-body blockquote {
    padding: 25px 20px 25px 55px;
    font-size: 17px;
  }

  .post-related {
    padding: 60px 0;
    margin-top: 50px;
  }

  /* Archive */
  .blog-list {
    padding-bottom: 70px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .post-card.featured {
    grid-template-columns: 1fr;
  }

  .post-card.featured .post-card-photo {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .post-card.featured .post-card-body {
    padding: 25px 25px 20px;
  }

  /* Auteur */
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-card .social-links {
    justify-content: center;
  }

  /* Partage */
  .block-share-article {
    flex-direction: column;
    text-align: center;
  }

  .share-article-wrapper {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
}

/* ══════════════════════════════════════════════════════════════
   SMILE — FRONTPAGE
   Espacements en multiples de 5, tailles en px, titres en clamp().
   ══════════════════════════════════════════════════════════════ */

/* ── Header / Nav (Smile) ─────────────────────────────────── */
.site-header {
  height: auto;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(14, 182, 146, 0.15);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.site-header .header-inner {
  padding: 10px 30px;
}
.site-header.scrolled {
  background: rgba(250, 246, 238, 0.96);
  box-shadow: 0 4px 20px rgba(14, 182, 146, 0.06);
}
.header-logo img {
  height: 76px;
  width: auto;
  max-width: none;
}
.header-nav {
  gap: 35px;
}
.header-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--black-soft);
  position: relative;
  padding: 5px 0;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .25s;
}
.header-nav a:hover::after,
.header-nav .current-menu-item > a::after {
  transform: scaleX(1);
}
.header-nav a:hover,
.header-nav .current-menu-item > a {
  color: var(--green-deep);
}
.header-cta {
  background: var(--green);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .15s, background var(--transition-fast);
}
.header-cta:hover {
  background: var(--green-deep);
  color: #fff;
  transform: translateY(-1px);
  opacity: 1;
}

/* ── Boutons (.btn) ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
  border: none;
  font-family: inherit;
}
.btn.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 0 var(--green-deep), 0 8px 24px rgba(14, 182, 146, 0.18);
}
.btn.btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  opacity: 1;
  box-shadow: 0 6px 0 var(--green-deep), 0 12px 32px rgba(14, 182, 146, 0.25);
}
.btn.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--green-deep);
}
.btn.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn.btn-secondary:hover {
  background: var(--black);
  color: var(--cream);
}
.btn .arrow {
  font-size: 18px;
  transition: transform .25s;
}
.btn:hover .arrow {
  transform: translateX(4px);
}
.btn svg,
.btn .nd-icon {
  width: 17px;
  height: 17px;
}
.cta-final-buttons .btn svg { width: 20px; height: 20px; }

/* Icone PNG HugeIcons recoloree (mask + currentColor) */
.nd-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask: var(--nd-icon) center / contain no-repeat;
  mask: var(--nd-icon) center / contain no-repeat;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ── Flèche HugeIcons commune (mask + currentColor) ──────────
   Tous les <span class="arrow">, .space-arrow et .post-card-arrow
   du site rendent la même icône, recolorée par le contexte.
   Orientation par défaut : droite. Variantes : .arrow-left, .arrow-up-right. */
.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.arrow::before,
.space-arrow::before,
.post-card-arrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask: url('assets/images/icone-arrow.svg') center / contain no-repeat;
  mask: url('assets/images/icone-arrow.svg') center / contain no-repeat;
  transition: transform 0.25s;
}
.arrow.arrow-left::before { transform: rotate(180deg); }
.arrow.arrow-up-right::before { transform: rotate(-45deg); width: 14px; height: 14px; }
.space-arrow::before { width: 25px; height: 25px; }
.post-card-arrow::before { width: 25px; height: 25px; }

/* ── Helpers de section ───────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terra);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
  max-width: 900px;
  margin-bottom: 30px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.home-hero {
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.home-hero .hero-bg-blob {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(14, 182, 146, 0.18) 0%, transparent 65%);
  z-index: 0;
  filter: blur(2px);
}
.home-hero .hero-bg-terra {
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 99, 60, 0.12) 0%, transparent 70%);
  z-index: 0;
}
.home-hero .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.home-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: #fff;
  border: 1px solid rgba(14, 182, 146, 0.25);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(14, 182, 146, 0.06);
}
.home-hero .hero-eyebrow .dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  animation: smilePulse 2s infinite;
}
@keyframes smilePulse {
  0%   { box-shadow: 0 0 0 0 rgba(14, 182, 146, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(14, 182, 146, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 182, 146, 0); }
}
.home-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 5.4vw, 78px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 25px;
}
.home-hero .hero-title .accent {
  position: relative;
  display: inline-block;
  color: var(--black);
}
.home-hero .hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 0.06em;
  left: -2%;
  width: 104%;
  height: 0.32em;
  background: var(--green-soft);
  z-index: -1;
  border-radius: 4px;
}
.home-hero .hero-title .handwritten {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--terra);
  font-size: 0.65em;
  transform: rotate(-3deg);
  display: inline-block;
  margin-left: 0.15em;
}
.home-hero .hero-sub {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 35px;
}
.home-hero .hero-sub p { margin: 0; }
.home-hero .hero-sub strong { color: var(--black); font-weight: 600; }
.home-hero .hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
.home-hero .hero-trust {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}
.home-hero .hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.home-hero .hero-trust-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.home-hero .hero-trust-label {
  font-size: 12px;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.home-hero .hero-visual {
  position: relative;
  height: 580px;
}
.home-hero .hero-photo-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 88%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(26, 29, 28, 0.18), 0 8px 24px rgba(26, 29, 28, 0.08);
  z-index: 2;
}
.home-hero .hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.home-hero .hero-photo-accent {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 220px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(26, 29, 28, 0.25);
  z-index: 3;
  transform: rotate(-4deg);
  border: 5px solid #fff;
  transition: transform .4s cubic-bezier(.34, 1.5, .64, 1);
}
.home-hero .hero-photo-accent:hover { transform: rotate(0deg) scale(1.04); }
.home-hero .hero-photo-accent img { width: 100%; height: 100%; object-fit: cover; }
.home-hero .hero-sticker {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--terra);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 22px;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(212, 99, 60, 0.4);
  transform: rotate(-6deg);
}

/* ── Chiffres-clés ────────────────────────────────────────── */
.keyfigures {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 45px 0;
}
.keyfigures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.kf-card { text-align: center; padding: 0 20px; position: relative; }
.kf-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 12%;
  right: -15px;
  height: 76%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.kf-val {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}
.kf-unit { font-size: 20px; font-weight: 600; color: var(--green); }
.kf-label {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.72);
  line-height: 1.4;
  margin-top: 10px;
  font-weight: 500;
}

/* ── Concept ──────────────────────────────────────────────── */
.concept { padding: 120px 0; }
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.concept-text { font-size: 18px; color: var(--ink-mid); line-height: 1.65; }
.concept-text p { margin-bottom: 20px; }
.concept-text strong { color: var(--black); font-weight: 600; }
.concept-signature {
  font-family: var(--font-accent);
  font-size: 30px;
  color: var(--terra);
  margin-top: 15px;
  transform: rotate(-2deg);
  display: inline-block;
}
.concept-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 29, 28, 0.15);
  aspect-ratio: 4 / 3;
}
.concept-photo img { width: 100%; height: 100%; object-fit: cover; }
.concept-stat-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: var(--cream);
  padding: 20px;
  border-radius: var(--radius);
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.concept-stat-overlay .num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}
.concept-stat-overlay .num-unit { font-size: 20px; font-weight: 600; }
.concept-stat-overlay .label {
  font-size: 12px;
  color: var(--ink-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.3;
  max-width: 100px;
}

/* ── Nos espaces ──────────────────────────────────────────── */
.spaces {
  padding: 120px 0;
  background: var(--cream-warm);
  border-radius: 40px 40px 0 0;
  margin-top: 40px;
}
.spaces-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.spaces-header .left { max-width: 720px; }
.spaces-header p { font-size: 18px; color: var(--ink-mid); line-height: 1.5; }
.spaces-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.space-card {
  background: var(--paper);
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.space-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--black);
}
.space-card.featured { grid-column: span 2; flex-direction: row; }
.space-card.featured .space-photo { width: 50%; height: auto; aspect-ratio: auto; }
.space-card.featured .space-content { flex: 1; padding: 50px 45px; }
.space-photo { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; background: var(--black); }
.space-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.space-card:hover .space-photo img { transform: scale(1.05); }
.space-content { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.space-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--black);
  color: var(--cream);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  width: fit-content;
}
.space-tag.featured-tag { background: var(--terra); color: #fff; }
.space-tag svg, .space-tag .nd-icon { width: 15px; height: 15px; flex-shrink: 0; }
.space-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.space-card.featured h3 { font-size: 36px; }
.space-card p { color: var(--ink-mid); font-size: 15px; line-height: 1.55; margin-bottom: 20px; flex: 1; }
.space-card p:last-child { margin: 0; }
.space-card.featured p { font-size: 17px; }
.space-meta { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
.space-meta-item { font-size: 13px; color: var(--ink-mid); display: flex; align-items: center; gap: 5px; }
.space-meta-item svg, .space-meta-item .nd-icon { width: 16px; height: 16px; flex-shrink: 0; }
.space-price-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 20px;
  border-top: 2px dashed rgba(26, 29, 28, 0.18);
}
.space-price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-mid);
  margin-bottom: 5px;
  font-weight: 600;
}
.space-price { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--black); }
.space-price-unit { font-size: 13px; color: var(--ink-mid); font-weight: 400; }
.space-arrow {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  transition: transform .3s, background .3s;
  flex-shrink: 0;
}
.space-card:hover .space-arrow { transform: rotate(0deg); background: var(--green-deep); }

/* ── Pourquoi Smile ───────────────────────────────────────── */
.why { padding: 120px 0; position: relative; overflow: hidden; }
.why-header { text-align: center; max-width: 760px; margin: 0 auto; }
.why-header .section-title { margin: 0 auto 20px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.why-card {
  padding: 30px;
  background: #fff;
  border-radius: var(--radius);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(14, 182, 146, 0.12);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(14, 182, 146, 0.12); }
.why-icon {
  width: 50px;
  height: 50px;
  background: var(--green-wash);
  color: var(--green-deep);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg, .why-icon .nd-icon { width: 26px; height: 26px; }
.why-card:nth-child(2) .why-icon,
.why-card:nth-child(4) .why-icon,
.why-card:nth-child(6) .why-icon { background: var(--terra-soft); color: var(--terra); }
.why-card h4 { font-family: var(--font-heading); font-size: 19px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.why-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.55; }

/* ── Témoignage ───────────────────────────────────────────── */
.testimonial {
  padding: 100px 0;
  background: var(--black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonial-content { max-width: 920px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 15px;
}
.testimonial-quote .highlight { color: var(--green); font-weight: 700; }
.testimonial-quote .aside {
  display: block;
  font-style: italic;
  font-size: 0.7em;
  color: var(--ink-light);
  margin-top: 10px;
  font-weight: 400;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 30px; }
.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
}
.testimonial-meta { text-align: left; }
.testimonial-name { font-weight: 600; color: var(--cream); font-size: 16px; }
.testimonial-role { font-size: 13px; color: var(--ink-light); }
.testimonial-link { color: var(--green); text-decoration: none; font-size: 12px; margin-left: 10px; }
.testimonial-link:hover { text-decoration: underline; }

/* ── Galerie ──────────────────────────────────────────────── */
.gallery { padding: 120px 0 80px; }
.gallery-header { text-align: center; margin-bottom: 50px; }
.gallery-header .section-title { margin: 0 auto 15px; }
.gallery-header p { font-size: 17px; color: var(--ink-mid); max-width: 600px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; grid-auto-rows: 200px; }
.gallery-item { overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }

/* ── CTA final ────────────────────────────────────────────── */
.cta-final { padding: 80px 0 120px; text-align: center; }
.cta-final-box {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(14, 182, 146, 0.25);
}
.cta-final-box .cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.95);
  z-index: 0;
}
.cta-final-box .cta-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(14, 182, 146, 0.8); }
.cta-final-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  position: relative;
  z-index: 2;
}
.cta-final-box p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 35px;
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.cta-final-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-final-buttons .btn.btn-primary {
  background: var(--black);
  color: #fff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.2);
}
.cta-final-buttons .btn.btn-primary:hover { box-shadow: 0 6px 0 rgba(0, 0, 0, 0.5), 0 12px 32px rgba(0, 0, 0, 0.25); }
.cta-final-buttons .btn.btn-secondary { border-color: #fff; color: #fff; background: transparent; }
.cta-final-buttons .btn.btn-secondary:hover { background: #fff; color: var(--green-deep); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { padding: 80px 0; }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-header .section-title { margin: 0 auto; }
.faq .block-faq-article { margin: 0 auto; max-width: 780px; }
.faq .faq-item { background: var(--paper); border-radius: var(--radius); margin-bottom: 10px; }
.faq .faq-item:hover { border-color: var(--green-soft); }
.faq .faq-item .question { padding: 20px 25px; outline: none; }
.faq .faq-item .question:focus { outline: none; }
.faq .faq-item .question:hover { background: var(--green-wash); }
.faq .faq-item .question h3 { font-size: 17px; }
.faq .faq-item .question::after { color: var(--green-deep); }
.faq .faq-item.expanded { border-color: var(--green-soft); }
.faq .faq-item .answer .text-wrapper { padding: 0 25px 20px; font-size: 15px; }

/* ── Footer (Smile, sombre) ───────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--cream);
  padding: 80px 0 30px;
  text-align: left;
  border-top: none;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.site-footer .footer-logo { margin-bottom: 15px; }
.site-footer .footer-logo img { height: 70px; width: auto; max-width: none; margin: 0; }
.footer-brand p { color: rgba(250, 246, 238, 0.65); line-height: 1.6; max-width: 360px; margin-bottom: 20px; font-size: 14px; }
.site-footer .footer-socials { display: flex; justify-content: flex-start; gap: 10px; margin-bottom: 0; }
.site-footer .footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(250, 246, 238, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.site-footer .footer-social-link img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.site-footer .footer-social-link:hover { background: var(--green); transform: translateY(-2px); opacity: 1; }
.footer-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(250, 246, 238, 0.85); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-contact-info { color: rgba(250, 246, 238, 0.85); font-size: 14px; line-height: 1.7; }
.footer-contact-info strong { color: var(--cream); }
.footer-contact-info a { color: var(--green); text-decoration: none; }
.footer-contact-info a:hover { text-decoration: underline; }
.footer-contact-info .footer-hours { color: rgba(250, 246, 238, 0.55); font-size: 13px; }
.site-footer .footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(250, 246, 238, 0.5);
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer .footer-bottom a { color: rgba(250, 246, 238, 0.65); text-decoration: none; }
.site-footer .footer-bottom a:hover { color: var(--green); }
.site-footer .footer-sep { opacity: 0.4; margin: 0 5px; }

/* ── Responsive frontpage ─────────────────────────────────── */
@media (max-width: 980px) {
  .home-hero { padding: 110px 0 60px; }
  .home-hero .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .home-hero .hero-visual { height: 460px; }
  .home-hero .hero-trust { gap: 25px; }
  .keyfigures-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .kf-card::after { display: none; }
  .concept-grid { grid-template-columns: 1fr; gap: 50px; }
  .spaces-grid { grid-template-columns: 1fr; }
  .space-card.featured { flex-direction: column; grid-column: span 1; }
  .space-card.featured .space-photo { width: 100%; aspect-ratio: 16 / 10; }
  .space-card.featured .space-content { padding: 30px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .site-footer .footer-bottom { flex-direction: column; text-align: center; }
  .cta-final-box { padding: 50px 25px; }
  .home-hero .hero-photo-accent { width: 160px; height: 160px; }
  .keyfigures-grid { grid-template-columns: 1fr 1fr; }
}

/* Header mobile : CTA "Planifier ma visite" à gauche du hamburger, logo réduit */
@media (max-width: 768px) {
  .site-header .header-inner { padding: 10px 20px; }
  .header-logo img { height: 56px; }
  .header-cta {
    display: inline-flex;
    padding: 8px 14px;
    font-size: 13px;
    gap: 6px;
  }
}
@media (max-width: 380px) {
  .header-logo img { height: 48px; }
  .header-cta { padding: 7px 12px; font-size: 12px; }
}

/* Paragraphes de corps justifiés */
.hero-sub,
.concept-text p,
.spaces-header p,
.space-card p,
.why-card p {
  text-align: justify;
}

/* Mobile : eyebrow + titre des sections alignées à gauche (concept, espaces) centrés */
@media (max-width: 768px) {
  .concept-grid > div:first-child,
  .spaces-header .left {
    text-align: center;
  }
}

/* ── Scroll reveal générique (toutes les pages, zéro config) ──────────────
   Convention : <section> > .container > (rangées | grilles *-grid).
   On masque les rangées + les cartes des grilles ; le JS les révèle
   échelonnées quand la section entre dans le viewport. Le conteneur de
   grille reste visible (sinon ses enfants révélés resteraient masqués).
   Actif seulement si JS actif ET mouvement autorisé. */
@media (prefers-reduced-motion: no-preference) {
  /* .post-body, .comments-area et .layout-content__body sont exclus : plus hauts
     que le viewport, l'IntersectionObserver (threshold 0.15) ne les révélerait jamais. */
  .js .site-main > section > .container > *:not([class*="-grid"]):not(.post-body):not(.comments-area):not(.layout-content__body),
  .js .site-main > section [class*="-grid"] > * {
    opacity: 0;
  }
  /* Révélé via animation (et non transition) : ainsi la transition propre
     des cartes (hover) n'est pas écrasée et le delay de cascade (animation-delay,
     posé par le JS) ne fuit pas sur le hover. */
  .js .site-main .reveal-in {
    animation: nd-reveal .6s ease both;
  }
}
@keyframes nd-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Témoignage — mise en page mobile (auteur empilé et centré) */
@media (max-width: 600px) {
  .testimonial { padding: 60px 0; }
  .testimonial-author { flex-direction: column; gap: 12px; }
  .testimonial-meta { text-align: center; }
  .testimonial-link { display: block; margin: 4px 0 0; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE SALLES DE RÉUNION
   ══════════════════════════════════════════════════════════════ */

/* ── Hero page secondaire (fil d'ariane + titre + 2 CTA) ────── */
.page-hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 182, 146, 0.06) 0%, transparent 100%);
}
.page-hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14, 182, 146, 0.12) 0%, transparent 65%);
  z-index: 0;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 900px; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-mid);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-mid); text-decoration: none; transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--green-deep); }
.breadcrumb .sep { color: var(--ink-light); }
.breadcrumb .current { color: var(--black); font-weight: 500; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--black); margin-bottom: 20px;
}
/* Surlignage par ligne (suit le texte même quand l'accent passe sur plusieurs lignes) */
.page-hero h1 .accent {
  display: inline;
  background-image: linear-gradient(var(--green-soft), var(--green-soft));
  background-repeat: no-repeat;
  background-size: 100% 0.3em;
  background-position: left 0 bottom 0.08em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.page-hero-sub {
  font-size: 18px; color: var(--ink-mid);
  line-height: 1.6; max-width: 680px;
  margin-bottom: 30px;
}
.page-hero-ctas { display: flex; gap: 15px; flex-wrap: wrap; }
.page-hero-photo {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  box-shadow: 0 20px 50px rgba(26, 29, 28, 0.15);
  position: relative;
  z-index: 2;
}
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 600px) {
  .page-hero-photo { aspect-ratio: 3 / 4; margin-top: 35px; }
}

/* ── Salles (cartes alternées photo / contenu) ─────────────── */
.rooms-section { padding: 80px 0 40px; }
.room-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(14, 182, 146, 0.15);
  margin-bottom: 40px;
  transition: box-shadow var(--transition-base);
}
.room-card:hover { box-shadow: 0 20px 50px rgba(14, 182, 146, 0.1); }
.room-card.reverse { grid-template-columns: 1fr 1fr; }
.room-card.reverse .room-photo { order: 2; }
.room-card.reverse .room-content { order: 1; }
.room-photo { width: 100%; min-height: 400px; overflow: hidden; background: var(--black); }
.room-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-content { padding: 50px 45px; display: flex; flex-direction: column; justify-content: center; }
.room-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--terra); color: #fff;
  padding: 5px 15px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 15px; width: fit-content;
}
.room-tag .nd-icon { width: 14px; height: 14px; }
.room-tag.tag-creative { background: var(--green); }
.room-tag.tag-bureau { background: var(--black-soft); color: var(--green); }
.room-card h2 {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: 700;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 10px; color: var(--black);
}
.room-capacity {
  font-family: var(--font-heading);
  font-size: 16px; color: var(--green-deep);
  font-weight: 600; margin-bottom: 20px;
}
.room-desc { color: var(--ink-mid); font-size: 16px; line-height: 1.6; margin-bottom: 25px; }
.room-desc p { margin-bottom: 10px; }
.room-desc p:last-child { margin-bottom: 0; }
.room-features { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.room-feature {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-wash); color: var(--green-deep);
  padding: 5px 15px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500;
}
.room-feature .nd-icon { width: 14px; height: 14px; }
.room-pricing {
  display: flex; gap: 25px; padding: 20px 0;
  border-top: 1.5px dashed rgba(26, 29, 28, 0.15);
  border-bottom: 1.5px dashed rgba(26, 29, 28, 0.15);
  margin-bottom: 25px;
}
.room-price-cell { flex: 1; }
.room-price-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink-light); font-weight: 600; margin-bottom: 5px;
}
.room-price-value { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--black); }
.room-price-value span { font-size: 13px; color: var(--ink-mid); font-weight: 400; }
.room-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.room-reserve-btn {
  background: var(--green); color: #fff;
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--transition-fast), transform var(--transition-fast);
  border: none; cursor: pointer; font-family: inherit;
}
.room-reserve-btn:hover { background: var(--green-deep); color: #fff; transform: translateY(-2px); }
.room-reserve-btn .arrow { transition: transform var(--transition-fast); }
.room-reserve-btn:hover .arrow { transform: translateX(4px); }
/* Variante outline : 1re formule (demi-journée) en contour, 2e (journée) pleine */
.room-reserve-btn.outline {
  background: transparent; color: var(--green-deep);
  box-shadow: inset 0 0 0 1.5px var(--green);
}
.room-reserve-btn.outline:hover { background: var(--green); color: #fff; box-shadow: inset 0 0 0 1.5px var(--green); }

/* ── Options à la carte (grille 3 colonnes) ────────────────── */
.options-section { background: var(--cream-warm); padding: 100px 0; }
.options-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.options-head .section-title { margin: 0 auto 15px; }
.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.option-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px 25px;
  border: 1px solid rgba(14, 182, 146, 0.15);
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1), border-color .3s ease;
  display: flex; flex-direction: column;
  will-change: transform;
}
.option-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(14, 182, 146, 0.15); }
.option-card:not(.featured):hover { border-color: var(--green-soft); }
.option-card.featured {
  background: linear-gradient(135deg, var(--green-wash) 0%, #e8f6f1 100%);
  border-color: var(--green);
}
.option-icon { font-size: 28px; margin-bottom: 15px; color: var(--green-deep); line-height: 1; }
.option-icon .nd-icon { width: 28px; height: 28px; }
.option-card h4 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.option-desc { color: var(--ink-mid); font-size: 14px; line-height: 1.5; margin-bottom: 15px; flex: 1; }
.option-prices { padding-top: 15px; border-top: 1px dashed rgba(26, 29, 28, 0.15); display: flex; flex-direction: column; gap: 5px; }
.option-price-row { display: flex; justify-content: space-between; font-size: 13px; }
.option-price-row .ph-label { color: var(--ink-mid); }
.option-price-row .ph-val { font-family: var(--font-heading); font-weight: 700; color: var(--black); }

/* ── Réservation — bande CTA (pré-réservation TidyCal hors périmètre) ── */
.reservation-cta { padding: 80px 0; background: var(--green-wash); }
.reservation-cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.reservation-cta-inner .section-eyebrow { color: var(--green-deep); }
.reservation-cta-inner .section-title { margin: 0 auto 15px; }
.reservation-cta-inner p { color: var(--ink-mid); font-size: 17px; line-height: 1.6; margin-bottom: 30px; }
.reservation-cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive page Salles ────────────────────────────────── */
@media (max-width: 980px) {
  .room-card, .room-card.reverse { grid-template-columns: 1fr; gap: 0; }
  .room-card.reverse .room-photo { order: 0; }
  .room-card.reverse .room-content { order: 0; }
  .room-photo { min-height: 280px; }
  .room-content { padding: 35px 30px; }
  .options-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 120px 0 50px; }
}
@media (max-width: 600px) {
  .options-grid { grid-template-columns: 1fr; }
  .room-content { padding: 30px 25px; }
  .room-card h2 { font-size: 28px; }
  .options-section { padding: 60px 0; }
  .room-pricing { gap: 15px; }
  .room-cta { flex-direction: column; }
  .room-cta .room-reserve-btn { width: 100%; justify-content: center; }
  .page-hero h1 { font-size: clamp(32px, 8vw, 44px); }
}

/* ══════════════════════════════════════════════════════════════
   PAGE BUREAUX
   ══════════════════════════════════════════════════════════════ */

/* ── Bureaux fermés (offers) ───────────────────────────────── */
.offers-section { padding: 100px 0 60px; }
.offers-intro { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.offers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.offer-card {
  background: var(--paper);
  border: 1.5px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.offer-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--black); }
.offer-card.featured { background: var(--green-wash); border-color: var(--green); }
.offer-card.featured:hover { box-shadow: 8px 8px 0 var(--green); }
.offer-photo { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; background: var(--black); }
.offer-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
.offer-card:hover .offer-photo img { transform: scale(1.05); }
.offer-content { padding: 35px; display: flex; flex-direction: column; flex: 1; }
.offer-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--black); color: var(--cream);
  padding: 5px 15px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 15px; width: fit-content;
}
.offer-tag .nd-icon { width: 13px; height: 13px; }
.offer-card.featured .offer-tag { background: var(--terra); color: #fff; }
.offer-card h3 {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 700;
  line-height: 1.1; letter-spacing: -0.015em; margin-bottom: 10px;
}
.offer-card .offer-sub {
  font-family: var(--font-heading);
  font-size: 14px; color: var(--green-deep); font-weight: 600; margin-bottom: 20px;
}
.offer-card .offer-content > p { color: var(--ink-mid); font-size: 15px; line-height: 1.55; margin-bottom: 20px; }
.offer-includes { list-style: none; padding: 0; margin-bottom: 30px; }
.offer-includes li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-top: 1px dashed rgba(26, 29, 28, 0.12);
  font-size: 14px; color: var(--ink-mid);
}
.offer-includes li:first-child { border-top: none; }
.offer-includes li::before { content: '\2713'; color: var(--green); font-weight: 700; font-size: 14px; }
.offer-price-block {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 20px; border-top: 1.5px dashed rgba(26, 29, 28, 0.18);
  margin-top: auto;
}
.offer-price-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-mid); font-weight: 600; margin-bottom: 5px; }
.offer-price { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--black); }
.offer-price span { font-size: 14px; color: var(--ink-mid); font-weight: 400; }
.offer-btn { padding: 10px 20px; font-size: 13px; flex-shrink: 0; }

/* ── Services inclus (grille + hover smooth) ───────────────── */
.services-included { background: var(--cream-warm); padding: 80px 0; margin-top: 80px; }
.services-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-item {
  background: var(--paper); padding: 30px 25px;
  border-radius: var(--radius);
  border: 1px solid rgba(14, 182, 146, 0.15);
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1), border-color .3s ease;
  will-change: transform;
}
.service-item:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(14, 182, 146, 0.12); border-color: var(--green-soft); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--green-wash); color: var(--green-deep);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 15px; font-size: 22px;
}
.service-item:nth-child(2n) .service-icon { background: var(--terra-soft); color: var(--terra); }
.service-icon .nd-icon { width: 24px; height: 24px; }
.service-item h4 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-item p { font-size: 14px; color: var(--ink-mid); line-height: 1.55; }

/* ── Coworking flexible (texte + carte tarifs + photo) ─────── */
.coworking-section { padding: 100px 0 60px; }
.coworking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.coworking-text h2 { margin-bottom: 20px; }
.coworking-body p { font-size: 17px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 20px; }
.coworking-body p:last-child { margin-bottom: 0; }
.coworking-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 20px 50px rgba(26, 29, 28, 0.15); }
.coworking-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.coworking-pricing {
  background: var(--paper);
  border: 1px solid var(--green-soft);
  border-radius: var(--radius);
  margin-top: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(14, 182, 146, 0.08);
}
.coworking-pricing-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 15px 25px;
  background: var(--green-wash);
  border-bottom: 1px solid var(--green-soft);
}
.cwp-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-deep);
}
.cwp-note {
  font-size: 12px; font-weight: 600; color: var(--terra);
  background: var(--terra-soft); padding: 5px 12px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.coworking-pricing-row {
  display: flex; justify-content: space-between; align-items: center; gap: 15px;
  padding: 15px 25px;
  border-bottom: 1px dashed rgba(26, 29, 28, 0.1);
  transition: background .2s ease;
}
.coworking-pricing-row:last-child { border-bottom: none; }
.coworking-pricing-row:hover { background: var(--green-wash); }
.coworking-pricing-label { font-size: 14px; color: var(--ink-mid); }
.coworking-pricing-value { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--black); white-space: nowrap; }
.coworking-cta { margin-top: 25px; }

/* ── Responsive page Bureaux ───────────────────────────────── */
@media (max-width: 980px) {
  .offers-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .coworking-grid { grid-template-columns: 1fr; gap: 40px; }
  .coworking-photo { order: -1; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .offer-content { padding: 30px 25px; }
  .offers-section, .coworking-section { padding: 60px 0 40px; }
  .services-included { padding: 60px 0; margin-top: 60px; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE SÉMINAIRES & ÉVÉNEMENTS
   ══════════════════════════════════════════════════════════════ */

/* Badge sur la photo hero (généralisé) */
.page-hero-photo .photo-badge {
  position: absolute;
  top: 30px; right: 30px;
  background: var(--terra); color: #fff;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700; font-size: 17px;
}

/* ── Formats ───────────────────────────────────────────────── */
.formats-section { padding: 100px 0 40px; }
.formats-intro { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.formats-intro .section-title { margin: 0 auto 15px; }
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.format-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1px solid rgba(14, 182, 146, 0.15);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.format-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(14, 182, 146, 0.12); }
.format-card.featured { background: var(--black); color: var(--cream); border-color: var(--black); }
.format-card.featured:hover { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.format-icon { font-size: 36px; margin-bottom: 20px; color: var(--green); line-height: 1; }
.format-icon .nd-icon { width: 36px; height: 36px; }
.format-card h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin-bottom: 10px; line-height: 1.1; }
.format-card.featured h3 { color: #fff; }
.format-capacity { font-size: 13px; color: var(--green-deep); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; }
.format-card.featured .format-capacity { color: var(--green); }
.format-card > p { color: var(--ink-mid); font-size: 15px; line-height: 1.55; margin-bottom: 25px; }
.format-card.featured > p { color: rgba(250, 246, 238, 0.75); }
.format-list { list-style: none; padding: 0; margin-bottom: 20px; }
.format-list li { padding: 5px 0; font-size: 14px; color: var(--ink-mid); display: flex; align-items: center; gap: 10px; }
.format-card.featured .format-list li { color: rgba(250, 246, 238, 0.85); }
.format-list li::before { content: '\2713'; color: var(--green); font-weight: 700; }
.format-note { margin-top: auto; padding-top: 20px; border-top: 1px dashed rgba(26, 29, 28, 0.15); font-size: 14px; color: var(--ink-mid); }
.format-card.featured .format-note { border-color: rgba(250, 246, 238, 0.2); color: rgba(250, 246, 238, 0.75); }

/* ── Team building (intro cohésion + liste) ────────────────── */
.teambuilding-section { padding: 70px 0 30px; }
.teambuilding-head { text-align: center; max-width: 780px; margin: 0 auto 40px; }
.teambuilding-head .section-title { margin: 0 auto 18px; }
.teambuilding-head > p { font-size: 17px; color: var(--ink-mid); line-height: 1.65; }
.teambuilding-list {
  list-style: none; padding: 0; margin: 0 auto; max-width: 820px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px;
}
.teambuilding-list li {
  position: relative; padding-left: 30px;
  font-size: 15px; color: var(--ink-mid); line-height: 1.5;
}
.teambuilding-list li::before {
  content: '\2713'; position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 700;
}
.teambuilding-outro { text-align: center; max-width: 720px; margin: 36px auto 0; font-size: 16px; color: var(--ink-mid); }
.teambuilding-outro a { color: var(--green-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ── Espace privatisé ──────────────────────────────────────── */
.privatize-section { background: var(--cream-warm); padding: 100px 0; }
.privatize-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.privatize-head .section-title { margin: 0 auto 15px; }
.privatize-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.privatize-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 20px 50px rgba(26, 29, 28, 0.15); }
.privatize-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.privatize-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.privatize-feature {
  background: var(--paper); padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(14, 182, 146, 0.12);
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1);
}
.privatize-feature:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(14, 182, 146, 0.1); }
.privatize-feature-icon { font-size: 22px; margin-bottom: 10px; color: var(--green-deep); line-height: 1; }
.privatize-feature-icon .nd-icon { width: 22px; height: 22px; }
.privatize-feature h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.privatize-feature p { font-size: 13px; color: var(--ink-mid); line-height: 1.5; }

/* ── Traiteur (photo + liste menu) ─────────────────────────── */
.traiteur-section { padding: 100px 0; }
.traiteur-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.traiteur-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 20px 50px rgba(26, 29, 28, 0.15); }
.traiteur-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.traiteur-text h2 { margin-bottom: 20px; }
.traiteur-body p { font-size: 17px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 20px; }
.traiteur-body p:last-child { margin-bottom: 0; }
.traiteur-options { margin-top: 30px; border-top: 1px solid rgba(14, 182, 146, 0.18); }
.traiteur-option {
  display: flex; align-items: baseline; gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(14, 182, 146, 0.18);
}
.traiteur-option h4 {
  font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--black);
  margin: 0; flex: 0 0 195px;
  display: inline-flex; align-items: center; gap: 10px;
}
.traiteur-option h4 .nd-icon { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }
.traiteur-option p { font-size: 14px; color: var(--ink-mid); margin: 0; line-height: 1.45; flex: 1; }
.traiteur-note { margin-top: 25px; font-size: 14px; color: var(--ink-mid); }

/* ── Devis (fond sombre + formulaire CF7) ──────────────────── */
.devis-section { padding: 100px 0; background: var(--black); color: var(--cream); }
.devis-intro { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.devis-intro .section-eyebrow { color: var(--green); }
.devis-intro .section-title { color: #fff; margin: 0 auto 15px; }
.devis-intro p { color: rgba(250, 246, 238, 0.75); font-size: 17px; line-height: 1.6; }
.devis-form-wrap {
  max-width: 720px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(14, 182, 146, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
}
/* Formulaire Nature Digitale Manager (.ndm-form) — scopé .ndm-form pour primer sur le CSS du plugin */
.devis-form-wrap .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.devis-section .devis-form-wrap .ndm-form label { font-size: 13px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 10px; }
.devis-section .devis-form-wrap .ndm-form input, .devis-section .devis-form-wrap .ndm-form select, .devis-section .devis-form-wrap .ndm-form textarea {
  width: 100%; padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(250, 246, 238, 0.15);
  border-radius: 10px;
  color: var(--cream); font-family: inherit; font-size: 15px;
  transition: border-color .2s;
}
.devis-section .devis-form-wrap .ndm-form input:focus, .devis-section .devis-form-wrap .ndm-form select:focus, .devis-section .devis-form-wrap .ndm-form textarea:focus { outline: none; border-color: var(--green); }
.devis-section .devis-form-wrap .ndm-form input::placeholder, .devis-section .devis-form-wrap .ndm-form textarea::placeholder { color: rgba(250, 246, 238, 0.4); }
.devis-section .devis-form-wrap .ndm-form select option { color: #1a1d1c; }
.devis-section .devis-form-wrap .ndm-form button[type="submit"], .devis-section .devis-form-wrap .ndm-form input[type="submit"] {
  background: var(--green) !important; color: #fff !important; border: none !important;
  padding: 15px 30px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: background .2s, transform .15s; margin-top: 5px;
  display: inline-flex; align-items: center; gap: 8px;
}
.devis-section .devis-form-wrap .ndm-form button[type="submit"]:hover, .devis-section .devis-form-wrap .ndm-form input[type="submit"]:hover { background: var(--green-deep) !important; transform: translateY(-2px); }
.devis-section .devis-form-wrap .ndm-form.is-submitting button[type="submit"] { opacity: .6; pointer-events: none; }
.devis-section .devis-form-wrap .ndm-form-feedback { margin-top: 20px; padding: 15px 20px; border-radius: 10px; font-size: 14px; }
.devis-section .devis-form-wrap .ndm-form-feedback.is-success { background: rgba(14, 182, 146, 0.15); color: var(--green); border: 1px solid rgba(14, 182, 146, 0.35); }
.devis-section .devis-form-wrap .ndm-form-feedback.is-error { background: rgba(212, 99, 60, 0.15); color: var(--terra); border: 1px solid rgba(212, 99, 60, 0.35); }
.devis-section .devis-form-wrap .ndm-form-error { color: var(--terra); font-size: 12px; margin-top: 5px; }
.form-note { margin-top: 20px; font-size: 13px; color: rgba(250, 246, 238, 0.55); }
.form-note svg { width: 14px; height: 14px; color: var(--green); vertical-align: -2px; margin-right: 4px; }
.form-note a { color: var(--green); }

/* ── Responsive page Séminaires ────────────────────────────── */
@media (max-width: 980px) {
  .formats-grid { grid-template-columns: 1fr; }
  .privatize-grid, .traiteur-grid { grid-template-columns: 1fr; gap: 40px; }
  .privatize-photo, .traiteur-photo { order: -1; }
}
@media (max-width: 600px) {
  .privatize-features { grid-template-columns: 1fr; }
  .teambuilding-list { grid-template-columns: 1fr; }
  .devis-form-wrap { padding: 25px; }
  .devis-form-wrap .form-row { grid-template-columns: 1fr; gap: 15px; }
  .traiteur-option { flex-direction: column; gap: 4px; }
  .traiteur-option h4 { flex-basis: auto; }
  .formats-section, .privatize-section, .traiteur-section, .devis-section { padding: 60px 0; }
  .teambuilding-section { padding: 50px 0 20px; }
  .page-hero-photo .photo-badge { top: 15px; right: 15px; padding: 10px 15px; font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-main { padding: 40px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.contact-info-col { display: flex; flex-direction: column; gap: 30px; }

/* ── Coordonnées (carte « Nous joindre ») ──────────────────── */
.coords-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  border: 1px solid rgba(14, 182, 146, 0.15);
  box-shadow: 0 10px 30px rgba(26, 29, 28, 0.04);
}
.coords-card .section-eyebrow { color: var(--green); margin-bottom: 10px; }
.coords-list { list-style: none; padding: 0; margin: 0; }
.coords-list li { display: flex; align-items: flex-start; gap: 16px; padding: 13px 0; }
.coords-list li:first-child { padding-top: 0; }
.coords-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--green-soft); color: var(--green-deep);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.coords-icon .nd-icon { width: 22px; height: 22px; }
.coords-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.coords-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-light); font-weight: 600; }
.coords-value { font-size: 17px; font-weight: 600; color: var(--black); text-decoration: none; word-break: break-word; }
a.coords-value:hover { color: var(--green-deep); }
.coords-extra { font-size: 13px; color: var(--ink-mid); }
.coords-hours { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(14, 182, 146, 0.15); }
.coords-hours-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-mid); padding: 5px 0; }
.coords-hours-row strong { color: var(--black); font-weight: 600; }

/* ── Accès (carte « Pour venir ») ──────────────────────────── */
.access-block {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  border: 1px solid rgba(14, 182, 146, 0.15);
  box-shadow: 0 10px 30px rgba(26, 29, 28, 0.04);
}
.access-block .section-eyebrow { color: var(--green); margin-bottom: 10px; }
.access-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 22px; }
.access-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.access-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--green-wash); border: 1px solid transparent;
  border-radius: var(--radius); padding: 18px 16px;
  transition: transform .25s, box-shadow .25s, background .25s, border-color .25s;
}
.access-item:hover {
  transform: translateY(-3px);
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(26, 29, 28, 0.07);
  border-color: rgba(14, 182, 146, 0.18);
}
.access-item-wide { grid-column: 1 / -1; }
.access-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--green-soft); color: var(--green-deep);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.access-item-icon .nd-icon { width: 20px; height: 20px; }
/* Règle texte scopée au <div> (ne PAS cibler .access-item span : casserait le badge) */
.access-item > div strong { display: block; font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 3px; }
.access-item > div span { display: block; font-size: 13px; color: var(--ink-mid); line-height: 1.45; }

/* ── Formulaire (carte sombre + formulaire NDM) ────────────── */
.contact-form-col { position: sticky; top: 110px; align-self: start; }
.contact-form-card {
  background: var(--black); color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 20px 50px rgba(14, 182, 146, 0.15);
}
.contact-form-card h2 { font-family: var(--font-heading); font-size: 28px; font-weight: 700; margin-bottom: 10px; color: #fff; letter-spacing: -0.015em; }
.contact-form-card .form-sub { color: rgba(250, 246, 238, 0.7); font-size: 15px; margin-bottom: 30px; }
/* Formulaire Nature Digitale Manager (.ndm-form) — scopé pour primer sur le CSS du plugin */
.contact-form-col .contact-form-card .ndm-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-col .contact-form-card .ndm-form label { font-size: 13px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 8px; }
.contact-form-col .contact-form-card .ndm-form input, .contact-form-col .contact-form-card .ndm-form select, .contact-form-col .contact-form-card .ndm-form textarea {
  width: 100%; padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(250, 246, 238, 0.15);
  border-radius: 10px;
  color: var(--cream); font-family: inherit; font-size: 15px;
  transition: border-color .2s;
}
.contact-form-col .contact-form-card .ndm-form input:focus, .contact-form-col .contact-form-card .ndm-form select:focus, .contact-form-col .contact-form-card .ndm-form textarea:focus { outline: none; border-color: var(--green); }
.contact-form-col .contact-form-card .ndm-form input::placeholder, .contact-form-col .contact-form-card .ndm-form textarea::placeholder { color: rgba(250, 246, 238, 0.4); }
.contact-form-col .contact-form-card .ndm-form select option { color: #1a1d1c; }
.contact-form-col .contact-form-card .ndm-form textarea { min-height: 110px; resize: vertical; }
.contact-form-col .contact-form-card .ndm-form button[type="submit"], .contact-form-col .contact-form-card .ndm-form input[type="submit"] {
  width: 100%;
  background: var(--green) !important; color: #fff !important; border: none !important;
  padding: 15px 30px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: background .2s, transform .15s; margin-top: 5px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.contact-form-col .contact-form-card .ndm-form button[type="submit"]:hover, .contact-form-col .contact-form-card .ndm-form input[type="submit"]:hover { background: var(--green-deep) !important; transform: translateY(-2px); }
.contact-form-col .contact-form-card .ndm-form.is-submitting button[type="submit"] { opacity: .6; pointer-events: none; }
.contact-form-col .contact-form-card .ndm-form-feedback { margin-top: 20px; padding: 15px 20px; border-radius: 10px; font-size: 14px; }
.contact-form-col .contact-form-card .ndm-form-feedback.is-success { background: rgba(14, 182, 146, 0.15); color: var(--green); border: 1px solid rgba(14, 182, 146, 0.35); }
.contact-form-col .contact-form-card .ndm-form-feedback.is-error { background: rgba(212, 99, 60, 0.15); color: var(--terra); border: 1px solid rgba(212, 99, 60, 0.35); }
.contact-form-col .contact-form-card .ndm-form-error { color: var(--terra); font-size: 12px; margin-top: 5px; }
/* Ligne de consentement RGPD (≠ label de champ) */
.contact-form-col .contact-form-card .ndm-form input[type="checkbox"] { width: auto; margin: 2px 8px 0 0; flex-shrink: 0; accent-color: var(--green); }
.contact-form-col .contact-form-card .ndm-form .ndm-rgpd label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 13px; color: rgba(250, 246, 238, 0.6); display: flex; align-items: flex-start; margin-bottom: 0; }
.contact-form-col .contact-form-card .ndm-form .ndm-rgpd span { color: var(--terra); }

/* ── Carte (Google Maps) ───────────────────────────────────── */
.map-section { padding: 80px 0; background: var(--cream-warm); }
.map-head { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.map-head .section-title { margin: 0 auto; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border: 1.5px solid var(--black);
  box-shadow: 0 12px 40px rgba(26, 29, 28, 0.12);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Paragraphes justifiés (page Contact uniquement) */
.site-main:has(.contact-main) .page-hero-sub,
.contact-form-col .contact-form-card .form-sub { text-align: justify; }

/* ── Responsive page Contact ───────────────────────────────── */
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-col { position: static; top: auto; }
}
@media (max-width: 600px) {
  .access-tiles { grid-template-columns: 1fr; }
  .coords-card, .access-block { padding: 30px 24px; }
  .contact-form-card { padding: 32px 24px; }
  .contact-form-col .contact-form-card .ndm-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-section { padding: 60px 0; }
  .map-wrap { aspect-ratio: 4 / 3; }
}

