/* ================================================================
   Private Label Care — Charte des mini-sites de présentation client
   Direction : luxe éditorial moderne — or PLC, crème, espresso profond.
   Palette : or #A67C27 (--accent, surchargeable par client),
             crème #F2E4C4, brun #5C3A1E
   ================================================================ */

:root {
  /* Identité (surchargeable) */
  --accent: #A67C27;
  --accent-deep: #8a6218;
  --accent-soft: rgba(166, 124, 39, 0.12);
  --cream: #F2E4C4;
  --brown: #5C3A1E;

  /* Neutres chauds */
  --ink: #221913;
  --muted: #7d6c50;
  --bg: #FBF8F1;
  --surface: #F5ECDA;
  --surface-2: #FDFBF6;
  --dark: #17100A;
  --dark-2: #1f1710;
  --line: rgba(166, 124, 39, 0.24);
  --line-soft: rgba(92, 58, 30, 0.10);

  /* Dégradés & lumière */
  --gold-grad: linear-gradient(120deg, #C79A44 0%, var(--accent) 45%, #E6C87E 100%);
  --gold-line: linear-gradient(90deg, transparent, var(--accent), transparent);

  /* Ombres douces (premium, jamais dures) */
  --shadow-sm: 0 1px 2px rgba(34, 25, 19, 0.04), 0 4px 14px rgba(34, 25, 19, 0.05);
  --shadow-md: 0 8px 24px rgba(34, 25, 19, 0.08), 0 2px 6px rgba(34, 25, 19, 0.05);
  --shadow-lg: 0 24px 60px rgba(34, 25, 19, 0.14);

  /* Rayons & rythme */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;

  /* Typographie */
  --serif: "Playfair Display", "Didot", Georgia, serif;
  --sans: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--brown);
}
img { max-width: 100%; }
ul { list-style-position: inside; }

/* Passages mis en avant (repris en gras du pitch PDF) */
strong {
  font-weight: 600;
  color: var(--accent);
}
::selection { background: var(--accent); color: #fff; }
a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Barre de progression de lecture (JS) */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--gold-grad);
  z-index: 200;
  will-change: transform;
}

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.gold-rule {
  width: 72px;
  height: 1px;
  background: var(--gold-line);
  margin: 30px auto;
}

/* ---------- Révélations au défilement ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 clamp(20px, 4vw, 44px);
  background: rgba(251, 248, 241, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), height 0.4s var(--ease);
}
.site-nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(34, 25, 19, 0.05);
}
.site-nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-nav__brand img { height: 40px; width: 40px; transition: transform 0.4s var(--ease); }
.site-nav__brand:hover img { transform: rotate(-6deg) scale(1.05); }
.site-nav__brand span {
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  white-space: nowrap;
  transition: color 0.35s var(--ease);
}
.site-nav__links { display: flex; align-items: center; gap: 22px; list-style: none; }
.site-nav__links a,
.site-nav__links .is-soon {
  position: relative;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}
.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s var(--ease);
}
.site-nav__links a:hover { color: var(--accent); }
.site-nav__links a:hover::after { transform: scaleX(1); }
.site-nav__links a.is-active { color: var(--accent); }
.site-nav__links a.is-active::after { transform: scaleX(1); }
.site-nav__links .is-soon { opacity: 0.32; cursor: default; }
.site-nav__toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  cursor: pointer;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-nav__toggle:hover { border-color: var(--accent); color: var(--accent); }
/* Icône hamburger (3 barres) qui se transforme en croix à l'ouverture */
.site-nav__toggle-bars,
.site-nav__toggle-bars::before,
.site-nav__toggle-bars::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background-color 0.2s var(--ease);
}
.site-nav__toggle-bars { position: relative; }
.site-nav__toggle-bars::before { position: absolute; left: 0; top: -7px; }
.site-nav__toggle-bars::after  { position: absolute; left: 0; top: 7px; }
.site-nav.is-open .site-nav__toggle-bars { background: transparent; }
.site-nav.is-open .site-nav__toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .site-nav__toggle-bars::after  { transform: translateY(-7px) rotate(-45deg); }

/* Nav transparente au-dessus du hero (page d'accueil, avant défilement) */
body.home .site-nav:not(.is-scrolled):not(.is-open) {
  background: linear-gradient(180deg, rgba(15, 10, 5, 0.5), transparent);
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.home .site-nav:not(.is-scrolled):not(.is-open) .site-nav__brand span,
body.home .site-nav:not(.is-scrolled):not(.is-open) .site-nav__links a,
body.home .site-nav:not(.is-scrolled):not(.is-open) .site-nav__links .is-soon,
body.home .site-nav:not(.is-scrolled):not(.is-open) .site-nav__toggle {
  color: var(--cream);
}
body.home .site-nav:not(.is-scrolled):not(.is-open) .site-nav__toggle { border-color: rgba(242, 228, 196, 0.4); }
body.home .site-nav:not(.is-scrolled):not(.is-open) .site-nav__links a.is-active { color: #fff; }
body.home .site-nav:not(.is-scrolled):not(.is-open) .site-nav__links a::after { background: var(--cream); }

/* Écrans intermédiaires : la barre complète (10 liens) ne tient pas avec le
   nom de la marque — on ne garde que le logo. */
@media (min-width: 1280px) and (max-width: 1579px) {
  .site-nav__brand span { display: none; }
}

@media (max-width: 1279px) {
  .site-nav__toggle { display: grid; }
  /* Le wrapper <nav> ne porte plus le menu (panneau fixe) : on le retire du
     flux pour que le bouton hamburger se cale bien à droite de la barre. */
  .site-nav nav { display: contents; }
  .site-nav__links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(251, 248, 241, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 6px 32px calc(20px + env(safe-area-inset-bottom, 0px));
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open .site-nav__links { display: flex; }
  .site-nav__links li { width: 100%; }
  .site-nav__links li + li { border-top: 1px solid var(--line-soft); }
  .site-nav__links a,
  .site-nav__links .is-soon { display: block; padding: 16px 4px; font-size: 0.82rem; }
  .site-nav__links a::after { display: none; }
  .site-nav__links a.is-active { border-left: 2px solid var(--accent); padding-left: 12px; }
}

/* Sur petit écran, seul le logo reste dans la barre (le nom déborderait) */
@media (max-width: 620px) {
  .site-nav__brand span { display: none; }
}

/* Empêche l'arrière-plan de défiler quand le menu mobile est ouvert */
body.nav-open { overflow: hidden; }

/* ---------- Hero (page d'accueil) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 28%, #40300f 0%, var(--dark) 72%) center / cover no-repeat;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-pan 22s ease-out forwards;
}
@keyframes hero-pan { to { transform: scale(1); } }
.hero--fallback video.hero__media { display: none; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, transparent 30%, rgba(15, 10, 5, 0.55) 100%),
    linear-gradient(180deg, rgba(20, 13, 5, 0.62), rgba(20, 13, 5, 0.24) 42%, rgba(20, 13, 5, 0.82));
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 130px 24px 96px;
}
/* Entrée en cascade (déclenchée par .is-loaded via hero.js) */
.hero__logo,
.hero__eyebrow,
.hero__title,
.hero__content .gold-rule,
.hero__for,
.hero__hotel,
.hero__hotel-logo,
.hero__logo-client {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.hero.is-loaded .hero__logo         { opacity: 1; transform: none; transition-delay: 0.15s; }
.hero.is-loaded .hero__eyebrow      { opacity: 1; transform: none; transition-delay: 0.35s; }
.hero.is-loaded .hero__title        { opacity: 1; transform: none; transition-delay: 0.5s; }
.hero.is-loaded .hero__content .gold-rule { opacity: 1; transform: none; transition-delay: 0.65s; }
.hero.is-loaded .hero__for          { opacity: 1; transform: none; transition-delay: 0.8s; }
.hero.is-loaded .hero__hotel        { opacity: 1; transform: none; transition-delay: 0.95s; }
.hero.is-loaded .hero__hotel-logo   { opacity: 1; transform: none; transition-delay: 0.95s; }
.hero.is-loaded .hero__logo-client  { opacity: 1; transform: none; transition-delay: 1.15s; }

.hero__logo { height: 92px; margin-bottom: 32px; filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4)); }
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero__for {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(242, 228, 196, 0.8);
  margin-bottom: 10px;
}
.hero__hotel {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.7rem, 6.2vw, 4.6rem);
  color: var(--cream);
}
.hero__logo-client { height: 66px; margin-top: 32px; }
/* Logo du client (à la place du nom) : posé directement sur la vidéo, avec
   une ombre portée pour le détacher du fond sombre. */
.hero__hotel-logo {
  display: block;
  margin: 6px auto 0;
  width: min(560px, 84vw);
  height: auto;
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.5));
}
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity 0.3s var(--ease);
}
.hero__scroll:hover { opacity: 1; }
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  margin: 12px auto 0;
  background: linear-gradient(var(--cream), transparent);
  animation: scroll-hint 2.4s ease infinite;
}
@keyframes scroll-hint {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Sections ---------- */
.section { max-width: 940px; margin: 0 auto; padding: clamp(64px, 9vw, 116px) clamp(24px, 5vw, 32px); }
.section h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 28px; }
.section p { margin-bottom: 1.3em; max-width: 72ch; }
.section p:last-child { margin-bottom: 0; }
.band {
  background:
    linear-gradient(180deg, var(--surface), var(--surface-2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-header {
  padding: clamp(140px, 18vw, 190px) 28px clamp(56px, 8vw, 84px);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% -10%, var(--accent-soft), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-header h1 { font-size: clamp(2.6rem, 5.4vw, 3.8rem); }

/* ---------- Intro (accueil) ---------- */
.intro { max-width: 800px; margin: 0 auto; padding: clamp(90px, 12vw, 140px) 28px; text-align: center; }

/* Carrousel de cosmétiques (accueil) — défilement infini continu */
.gallery { background: var(--dark); padding: clamp(64px, 9vw, 110px) 0; text-align: center; overflow: hidden; }
.gallery .eyebrow { color: var(--accent); }
.gallery__title { color: var(--cream); font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin: 10px auto 44px; padding: 0 24px; }
.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track { display: flex; width: max-content; animation: marquee-scroll 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  flex: 0 0 auto;
  margin: 0 24px 0 0;
  width: clamp(200px, 24vw, 300px);
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease);
}
.marquee__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.marquee__item:hover { transform: scale(1.04); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee__track { animation: none; }
}
/* Lien discret de téléchargement des photos, sous le carrousel */
.gallery a.gallery__download,
.gallery a.gallery__download:link,
.gallery a.gallery__download:visited {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 40px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 228, 196, 0.55);
  -webkit-text-fill-color: rgba(242, 228, 196, 0.55);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.gallery a.gallery__download:hover {
  color: var(--cream);
  -webkit-text-fill-color: var(--cream);
  border-bottom-color: rgba(166, 124, 39, 0.6);
}
.gallery__download svg { opacity: 0.85; }
.intro__brand { font-size: clamp(2.1rem, 4.6vw, 3.2rem); letter-spacing: 0.02em; }
.intro__tagline {
  font-size: 0.76rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 16px;
}
.intro__concept { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--brown); }

/* ---------- Boutons ---------- */
.btn {
  position: relative;
  display: inline-block;
  margin-top: 38px;
  padding: 16px 42px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 0;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.4s var(--ease);
  z-index: -1;
}
.btn:hover {
  color: #fff;
  box-shadow: 0 12px 30px rgba(166, 124, 39, 0.28);
  transform: translateY(-2px);
}
.btn:hover::before { transform: scaleX(1); }

/* ---------- Tableaux ---------- */
.table-wrap { overflow-x: auto; margin: 48px 0 8px; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.table-premium {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--surface-2);
  overflow: hidden;
}
.table-premium caption {
  caption-side: top;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--brown);
  text-align: left;
  padding: 20px 22px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.table-premium th {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  text-align: left;
  padding: 15px 22px;
  border-bottom: 2px solid var(--accent);
}
.table-premium td {
  padding: 13px 22px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.table-premium tbody tr { transition: background 0.2s var(--ease); }
.table-premium tbody tr:hover { background: var(--accent-soft); }
.table-premium td:last-child { text-align: right; white-space: nowrap; font-weight: 400; color: var(--brown); font-variant-numeric: tabular-nums; }
.table-premium tr.is-derived { background: var(--surface); font-size: 0.88rem; }
.table-legend { font-size: 0.8rem; font-style: italic; color: var(--muted); margin-top: 14px; }
/* Légende hors du tableau défilant : pleine largeur de page, une seule ligne
   sur grand écran, repli équilibré (sans mot orphelin) si l'écran est étroit */
.section p.table-legend--full { max-width: none; text-wrap: balance; }

/* ---------- Modificateurs de section ---------- */
.section--center { text-align: center; }
.section--center p { margin-left: auto; margin-right: auto; }
.section--wide { max-width: 1200px; }
.lead { font-size: 1.16rem; line-height: 1.7; color: var(--brown); }
.lead--center { text-align: center; max-width: 60ch; margin-left: auto; margin-right: auto; }
.eyebrow--center { text-align: center; }
.page-header--dark {
  background:
    radial-gradient(ellipse at 50% -20%, rgba(166, 124, 39, 0.25), transparent 60%),
    radial-gradient(ellipse at 50% 0%, #40300f 0%, var(--dark) 80%);
  border-bottom: none;
}
.page-header--dark h1 { color: #fff; }
.page-header--dark .eyebrow { color: var(--cream); }

/* ---------- Étapes (comment ça marche) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 56px; text-align: center; }
.step { position: relative; padding: 20px; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--accent);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.6), 0 6px 18px rgba(166, 124, 39, 0.14);
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--accent);
}
.step__title { font-size: 1.28rem; margin-bottom: 14px; }
.step__text { font-size: 0.95rem; color: var(--muted); }

/* ---------- Cartes (triptyque) ---------- */
.cards { display: grid; gap: 26px; margin-top: 56px; text-align: left; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__title { font-size: 1.24rem; margin-bottom: 16px; color: var(--brown); }
.card p { font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Liste de valeur (proposition de valeur) ---------- */
.value-list { margin-top: 44px; }
.value-item { padding: 28px 0; border-bottom: 1px solid var(--line); transition: padding-left 0.3s var(--ease); }
.value-item:last-child { border-bottom: none; }
.value-item:hover { padding-left: 10px; }
.value-item__title { font-size: 1.18rem; color: var(--accent); margin-bottom: 12px; }
.value-item p { margin-bottom: 0; }
.univers { margin-top: 16px; list-style: none; }
.univers li {
  padding: 9px 0 9px 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px dashed rgba(166, 124, 39, 0.2);
}
.univers li:last-child { border-bottom: none; }
.univers li::before { content: "◆"; position: absolute; left: 0; color: var(--accent); font-size: 0.6rem; top: 13px; }

/* ---------- Statistiques (marché) ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat { padding: 26px 18px; text-align: center; border-radius: var(--r-md); transition: background 0.3s var(--ease); }
.stat:hover { background: var(--accent-soft); }
.stat__value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
}
.stat__label { display: block; margin-top: 14px; font-size: 0.82rem; letter-spacing: 0.08em; color: var(--muted); }

/* ---------- Citation (financement) ---------- */
.pull-quote {
  position: relative;
  margin: 40px 0;
  padding: 36px 44px 36px 52px;
  background: var(--surface);
  border-radius: var(--r-md);
  border-left: 3px solid var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.42rem);
  line-height: 1.6;
  color: var(--brown);
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  top: 6px; left: 16px;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
}

/* ---------- SWOT (forces & opportunités) ---------- */
.swot { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.swot__col {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.swot__col:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.swot__col--alt { background: var(--surface); }
.swot__title {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--accent);
}
.checklist { list-style: none; }
.checklist li { padding: 12px 0 12px 32px; position: relative; font-size: 0.95rem; border-bottom: 1px solid rgba(166, 124, 39, 0.12); }
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute; left: 5px; top: 16px;
  width: 9px; height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Tableaux résumé financier ---------- */
.table-title { font-size: 1.4rem; margin-bottom: 12px; }
.formula { font-size: 0.85rem; font-style: italic; color: var(--muted); margin-bottom: 26px; }
/* Formule : pleine largeur, une ligne sur grand écran, repli équilibré si étroit */
.section p.formula { max-width: none; text-wrap: balance; }
.table-premium--grid th[scope="row"],
.table-premium--matrix th[scope="row"] {
  text-align: left;
  background: var(--surface);
  border-bottom: 1px solid var(--line-soft);
  color: var(--brown);
}
.table-premium--grid td { text-align: left; white-space: normal; }
.table-premium--matrix { text-align: center; }
.table-premium--matrix th, .table-premium--matrix td { text-align: center; padding: 13px 14px; }
.table-premium--matrix thead th:first-child { background: var(--surface); }

/* ---------- Grille équipe ---------- */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 48px; }
.team-grid .member { flex: 0 0 calc((100% - 48px) / 3); }
.member {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.member__initials {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #EDD186, #C69940);
  box-shadow: 0 8px 20px rgba(166, 124, 39, 0.28);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: 0.04em;
}
.member__photo {
  width: 96px; height: 96px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(92, 58, 30, 0.18), 0 0 0 1px var(--line);
  transition: transform 0.4s var(--ease);
}
.member:hover .member__photo { transform: scale(1.04); }
.member__name { font-size: 1.18rem; margin-bottom: 14px; }
.member__roles { list-style: none; }
.member__roles li { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.member__roles li:first-child { color: var(--accent); font-weight: 500; margin-bottom: 4px; }

/* ---------- Carte contact ---------- */
.contact-card h2 { font-size: clamp(1.9rem, 4vw, 2.4rem); margin-bottom: 26px; }
.contact-card__line { font-size: 1.12rem; margin-bottom: 10px; }
.contact-card__line a {
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.contact-card__line a:hover { color: var(--accent); border-color: var(--accent); }
.contact-card__legal { font-size: 0.92rem; color: var(--muted); }

@media (max-width: 900px) {
  .steps, .cards--3, .stats { grid-template-columns: 1fr; }
  .swot { grid-template-columns: 1fr; }
  .team-grid .member { flex-basis: 100%; }
}
@media (min-width: 620px) and (max-width: 900px) {
  .team-grid .member { flex-basis: calc((100% - 24px) / 2); }
  .stats { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Pied de page ---------- */
.site-footer {
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, var(--dark-2), var(--dark) 70%);
  color: rgba(242, 228, 196, 0.82);
  text-align: center;
  padding: clamp(56px, 8vw, 78px) 28px 56px;
  font-size: 0.85rem;
  line-height: 2.1;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-line);
}
.site-footer__logo { height: 56px; margin-bottom: 16px; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4)); }
.site-footer__tagline {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.72;
}
.site-footer .gold-rule { margin: 24px auto 28px; }
.site-footer__site { margin-top: 10px; }
.site-footer__site a {
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.12em;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-footer__site a:hover { color: var(--cream); border-bottom-color: var(--accent); }
/* Numéro de téléphone (lien tel:) : même beige que le lien du site, pas le bleu par défaut */
.site-footer a[href^="tel:"] { color: var(--accent); text-decoration: none; }
.site-footer a[href^="tel:"]:hover { color: var(--cream); }

/* ---------- Accessibilité : mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__media { transform: none; }
  .js .reveal { opacity: 1; transform: none; }
}
