/* ==========================================================================
   Maison Médicale Neder — Feuille de style principale
   Palette : bordeaux & blanc cassé (tons chauds) · Typo : Cormorant Garamond + Manrope
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variables
   -------------------------------------------------------------------------- */
:root {
  /* Bordeaux */
  --bdx-950: #35090F;
  --bdx-900: #4A0F1A;
  --bdx-800: #601526;
  --bdx-700: #7A1B2E;
  --bdx-600: #8F2338;
  --bdx-500: #A62D45;
  --bdx-300: #D39AA6;
  --bdx-200: #EBCBD1;
  --bdx-100: #F5E4E7;
  --bdx-50:  #FBF3F4;

  /* Neutres chauds */
  --white: #FFFFFF;
  --ivory: #FFFCF9;
  --cream: #FAF6F1;
  --sand:  #F3ECE4;
  --linen: #E8DFD6;
  --stone: #CFC3B8;
  --taupe: #8B7E76;
  --umber: #5C504B;
  --ink:   #2A1F22;

  /* Accent doré (à utiliser avec parcimonie) */
  --gold: #C9A66B;
  --gold-soft: #E8D8B8;

  /* États */
  --success: #2E7D5B;
  --success-bg: #EAF5EF;
  --error: #B3261E;
  --error-bg: #FBEDEC;

  /* Typographie */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Mise en page */
  --container: 1200px;
  --container-narrow: 820px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 7.5rem);
  --header-h: 84px;
  --topbar-h: 40px;

  /* Formes */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Ombres chaudes */
  --shadow-xs: 0 1px 2px rgba(42, 31, 34, .06);
  --shadow-sm: 0 2px 6px rgba(42, 31, 34, .05), 0 6px 18px -8px rgba(74, 15, 26, .10);
  --shadow:    0 4px 12px rgba(42, 31, 34, .05), 0 18px 40px -16px rgba(74, 15, 26, .22);
  --shadow-lg: 0 10px 24px rgba(42, 31, 34, .06), 0 40px 80px -28px rgba(74, 15, 26, .35);

  /* Mouvement */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .28s;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

a {
  color: var(--bdx-700);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--bdx-900); }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; }
address { font-style: normal; }
strong { font-weight: 700; }
small { font-size: .875em; }
hr { border: 0; border-top: 1px solid var(--linen); margin: 2rem 0; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}
button { cursor: pointer; background: none; border: 0; padding: 0; }

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

::selection { background: var(--bdx-200); color: var(--bdx-950); }

/* Typographie d'en-tête */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--bdx-900);
  margin: 0 0 1rem;
  letter-spacing: -.005em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 1.5rem + 3vw, 4.35rem); line-height: 1.04; }
h2 { font-size: clamp(2rem, 1.4rem + 2.1vw, 3.25rem); }
h3 { font-size: clamp(1.45rem, 1.2rem + .6vw, 1.75rem); }
h4 { font-size: 1.25rem; }

h1 em, h2 em, h3 em, .display em {
  font-style: italic;
  font-weight: 500;
  color: var(--bdx-600);
}

.lead {
  font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem);
  line-height: 1.65;
  color: var(--umber);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.1rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bdx-700);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before, .eyebrow--light::after { background: var(--gold); }

/* --------------------------------------------------------------------------
   3. Utilitaires
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--flush-top { padding-top: 0; }

.section__head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .lead { margin-top: .25rem; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1.25rem;
  background: var(--bdx-900);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

.divider-gold {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 2px;
  margin: 1.25rem 0 1.75rem;
}
.divider-gold--center { margin-inline: auto; }

/* Motif décoratif — croix discrètes */
.pattern-cross {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M34 22h4v12h12v4H38v12h-4V38H22v-4h12z' fill='%237A1B2E' fill-opacity='0.028'/%3E%3C/svg%3E");
}
.pattern-cross--light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M34 22h4v12h12v4H38v12h-4V38H22v-4h12z' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   4. Boutons & liens
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--bdx-700);
  --btn-fg: #fff;
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0) scale(.99); }

.btn--primary {
  box-shadow: 0 10px 24px -10px rgba(122, 27, 46, .6);
}
.btn--primary:hover {
  --btn-bg: var(--bdx-800);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(122, 27, 46, .7);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--bdx-700);
  --btn-bd: var(--linen);
}
.btn--ghost:hover {
  --btn-bd: var(--bdx-700);
  --btn-bg: var(--bdx-50);
  color: var(--bdx-800);
  transform: translateY(-2px);
}

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--bdx-800);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .5);
}
.btn--light:hover { --btn-bg: var(--cream); color: var(--bdx-900); transform: translateY(-2px); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .45);
}
.btn--outline-light:hover { --btn-bd: #fff; --btn-bg: rgba(255, 255, 255, .08); color: #fff; }

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn--sm { padding: .65rem 1.2rem; font-size: .875rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .7; pointer-events: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--bdx-700);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.link-arrow:hover { color: var(--bdx-900); }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Barre d'annonce
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--bdx-900);
  color: rgba(255, 255, 255, .88);
  font-size: .82rem;
  letter-spacing: .01em;
}
.topbar__inner {
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__text { margin: 0; display: inline-flex; align-items: center; gap: .6rem; }
.topbar__text a { color: #fff; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.topbar__text a:hover { color: var(--gold-soft); }
.topbar__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 166, 107, .2);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 166, 107, .45); }
  60% { box-shadow: 0 0 0 7px rgba(201, 166, 107, 0); }
}
.topbar__meta { display: inline-flex; align-items: center; gap: .75rem; color: rgba(255, 255, 255, .72); }
.topbar__meta a { color: #fff; font-weight: 600; }
.topbar__meta a:hover { color: var(--gold-soft); }
@media (max-width: 760px) {
  .topbar { font-size: .78rem; }
  .topbar__meta { display: none; }
  .topbar__inner { justify-content: center; text-align: center; min-height: 0; padding: .5rem 0; }
  .topbar__text { display: inline; }
  .topbar__dot { display: inline-block; vertical-align: middle; margin-right: .35rem; }
}

/* --------------------------------------------------------------------------
   6. En-tête & navigation
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 249, .86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.header.is-scrolled {
  border-color: var(--linen);
  box-shadow: 0 6px 24px -14px rgba(42, 31, 34, .18);
  background: rgba(255, 252, 249, .94);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: var(--bdx-700);
}
.brand__logo { width: 46px; height: 46px; flex: none; color: var(--bdx-700); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -.005em;
  color: var(--bdx-800);
}
.brand__place {
  margin-top: .3rem;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--taupe);
}
.brand:hover .brand__name { color: var(--bdx-900); }
.brand--light, .brand--light .brand__logo { color: #fff; }
.brand--light .brand__name { color: #fff; }
.brand--light .brand__place { color: var(--gold-soft); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav__link {
  position: relative;
  display: inline-block;
  padding: .6rem .7rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--umber);
  border-radius: 999px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: .9rem; right: .9rem; bottom: .3rem;
  height: 1.5px;
  background: var(--bdx-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover { color: var(--bdx-800); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--bdx-800); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--linen);
  background: #fff;
  position: relative;
  flex: none;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.6px;
  background: var(--bdx-800);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), top var(--dur) var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1180px) {
  :root { --header-h: 74px; }
  .brand__logo { width: 40px; height: 40px; }
  .brand__name { font-size: 1.2rem; }
  .nav-toggle { display: block; }

  /* Le panneau est positionné par rapport au header (sticky). Le backdrop-filter du
     header en fait un bloc conteneur : position:fixed y serait piégé, on utilise absolute. */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    z-index: 90;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.5rem var(--gutter) 2.5rem;
    background: var(--ivory);
    border-top: 1px solid var(--linen);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), visibility 0s linear var(--dur);
  }
  .nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), visibility 0s;
  }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--linen); }
  .nav__link {
    display: block;
    padding: 1.1rem .25rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--bdx-900);
    border-radius: 0;
  }
  .nav__link::after { display: none; }
  .nav__link.is-active { color: var(--bdx-600); }
  .nav__cta { margin-top: 1.75rem; width: 100%; }
}

/* Header en mode "sticky" sans la topbar (la topbar défile) */
@media (min-width: 1025px) {
  .nav__cta { margin-left: .5rem; }
}

/* --------------------------------------------------------------------------
   7. Hero (accueil)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(122, 27, 46, .08), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(201, 166, 107, .16), transparent 60%),
    var(--cream);
  padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(6rem, 10vw, 9rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M34 22h4v12h12v4H38v12h-4V38H22v-4h12z' fill='%237A1B2E' fill-opacity='0.03'/%3E%3C/svg%3E");
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 80%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 80%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.hero__title { margin-bottom: 1.4rem; }
.hero__lead { max-width: 560px; margin-bottom: 2.25rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.5rem; }
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  list-style: none;
  color: var(--umber);
  font-size: .9rem;
  font-weight: 600;
}
.hero__tags li { display: inline-flex; align-items: center; gap: .55rem; }
.hero__tags li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__visual { position: relative; }
.hero__figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero__figure img { width: 100%; aspect-ratio: 1024 / 939; object-fit: cover; }
.hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
  pointer-events: none;
}
.hero__frame {
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--bdx-200);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.hero__badge {
  position: absolute;
  left: -22px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.25rem .9rem 1rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--linen);
  animation: float 6s ease-in-out infinite;
}
.hero__badge-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--bdx-50);
  color: var(--bdx-700);
}
.hero__badge-icon svg { width: 22px; height: 22px; }
.hero__badge-label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); }
.hero__badge-value { display: block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--bdx-800); line-height: 1.1; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 620px; margin-inline: auto; padding: 0 1.25rem 0 1.25rem; }
  .hero__frame { inset: 18px 4px -18px 40px; }
  .hero__badge { left: 0; bottom: -14px; }
}

/* Bande d'informations clés (chevauche le bas du hero) */
.infostrip {
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * clamp(3rem, 5vw, 4.5rem));
  display: grid;
  grid-template-columns: minmax(10.5rem, 1fr) minmax(10.5rem, 1fr) minmax(12rem, 1.15fr) minmax(15rem, 1.45fr);
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.infostrip__item {
  display: flex;
  gap: .9rem;
  align-items: center;
  padding: 1.5rem 1.2rem;
  border-right: 1px solid var(--linen);
  min-width: 0;
}
.infostrip__item:last-child { border-right: 0; }
.infostrip__icon {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--bdx-50);
  color: var(--bdx-700);
}
.infostrip__icon svg { width: 22px; height: 22px; }
.infostrip__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.infostrip__label { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--taupe); margin-bottom: .2rem; }
.infostrip__value { display: block; font-weight: 600; color: var(--ink); line-height: 1.4; font-size: .95rem; }
.infostrip__value--email {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
}
.infostrip__value--email:hover { color: var(--bdx-700); }

@media (max-width: 1024px) {
  .infostrip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .infostrip__item { border-bottom: 1px solid var(--linen); }
  .infostrip__item:nth-child(2n) { border-right: 0; }
  .infostrip__item:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .infostrip { grid-template-columns: 1fr; margin-top: 2.25rem; }
  .infostrip__item { border-right: 0 !important; border-bottom: 1px solid var(--linen); }
  .infostrip__item:last-child { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   8. En-tête de page (pages intérieures)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 6vw, 5.5rem) clamp(3rem, 5vw, 4.5rem);
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(122, 27, 46, .07), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--linen);
}
.page-hero__watermark {
  position: absolute;
  right: -60px;
  top: -40px;
  width: clamp(240px, 30vw, 420px);
  height: auto;
  color: var(--bdx-700);
  opacity: .06;
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 760px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: .85rem;
  color: var(--taupe);
}
.breadcrumb a { color: var(--taupe); }
.breadcrumb a:hover { color: var(--bdx-700); }
.breadcrumb li + li::before { content: "·"; margin-right: .5rem; color: var(--stone); }
.breadcrumb [aria-current] { color: var(--bdx-700); font-weight: 600; }
.page-hero h1 { margin-bottom: 1.1rem; }
.page-hero .lead { max-width: 640px; }

.anchor-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.9rem; }
.anchor-nav a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.05rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--linen);
  font-size: .88rem;
  font-weight: 600;
  color: var(--umber);
  transition: all var(--dur) var(--ease);
}
.anchor-nav a svg { width: 16px; height: 16px; color: var(--bdx-700); }
.anchor-nav a:hover { border-color: var(--bdx-700); color: var(--bdx-800); background: var(--bdx-50); transform: translateY(-1px); }

/* --------------------------------------------------------------------------
   9. Cartes de services
   -------------------------------------------------------------------------- */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bdx-700), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--bdx-200); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--bdx-50);
  color: var(--bdx-700);
  margin-bottom: 1.5rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card:hover .service-card__icon { background: var(--bdx-700); color: #fff; }
.service-card h3 { margin-bottom: .6rem; }
.service-card p { color: var(--umber); font-size: .98rem; flex: 1; }
.service-card .link-arrow { margin-top: 1.25rem; }

/* Cartes de service détaillées (page consultations) */
.service-detail {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid var(--linen);
}
.service-detail:first-of-type { border-top: 0; padding-top: 0; }
.service-detail__aside { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
.service-detail__icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: grid; place-items: center;
  background: var(--bdx-700);
  color: #fff;
  box-shadow: 0 16px 30px -14px rgba(122, 27, 46, .6);
  margin-bottom: 1.25rem;
}
.service-detail__icon svg { width: 34px; height: 34px; }
.service-detail__aside h2 { font-size: clamp(1.9rem, 1.4rem + 1.2vw, 2.4rem); margin-bottom: .75rem; }
.service-detail__mode {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: var(--bdx-50);
  border: 1px solid var(--bdx-100);
  color: var(--bdx-800);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.service-detail__mode svg { width: 15px; height: 15px; flex: none; }
.service-detail__note { margin: .7rem 0 0; font-size: .86rem; color: var(--taupe); }
.service-detail__body .lead { margin-bottom: 1.5rem; }
.service-detail__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; margin-top: 1.75rem; }
.service-detail__cols h4 {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: .9rem;
}
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; gap: 1.75rem; }
  .service-detail__aside { position: static; }
}
@media (max-width: 560px) {
  .service-detail__cols { grid-template-columns: 1fr; }
}

/* Liste à puces "check" */
.check-list { list-style: none; display: grid; gap: .65rem; }
.check-list li { position: relative; padding-left: 1.95rem; color: var(--umber); }
.check-list li strong { color: var(--ink); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .3rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bdx-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A1B2E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.check-list--light li { color: rgba(255, 255, 255, .85); }
.check-list--light li::before {
  background-color: rgba(255, 255, 255, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8D8B8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   10. Section "approche" / valeurs
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
}

.quote-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(201, 166, 107, .18), transparent 60%),
    linear-gradient(160deg, var(--bdx-700), var(--bdx-900));
  color: #fff;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.quote-panel__logo {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 260px;
  height: 260px;
  color: #fff;
  opacity: .08;
}
.quote-panel blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.6rem);
  line-height: 1.2;
  font-weight: 500;
  font-style: italic;
  color: #fff;
}
.quote-panel blockquote::before { content: "«\00a0"; color: var(--gold-soft); }
.quote-panel blockquote::after { content: "\00a0»"; color: var(--gold-soft); }
.quote-panel cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.values { display: grid; gap: 1.5rem; margin-top: 2rem; }
.value {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.value__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--linen);
  color: var(--bdx-700);
  box-shadow: var(--shadow-xs);
}
.value__icon svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.4rem; margin-bottom: .35rem; }
.value p { color: var(--umber); font-size: .98rem; }

/* Cartes "valeur" en grille (page présentation) */
.value-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--bdx-200);
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.value-card p { color: var(--umber); font-size: .98rem; }

/* --------------------------------------------------------------------------
   11. Équipe
   -------------------------------------------------------------------------- */
.team-card {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--bdx-200); }
.team-card__avatar {
  width: 112px; height: 112px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(150deg, var(--bdx-600), var(--bdx-900));
  box-shadow: 0 18px 30px -16px rgba(122, 27, 46, .7), inset 0 0 0 4px rgba(255, 255, 255, .9), inset 0 0 0 5.5px var(--bdx-200);
}
.team-card__avatar--soft {
  background: linear-gradient(150deg, var(--sand), var(--linen));
  color: var(--bdx-700);
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 5.5px var(--linen);
}
.team-card__avatar svg { width: 44px; height: 44px; }
.team-card__role {
  display: inline-block;
  margin-bottom: .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bdx-700);
}
.team-card h3 { font-size: 1.7rem; margin-bottom: .35rem; }
.team-card__credential {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: .25rem 0 1rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--linen);
  font-size: .82rem;
  font-weight: 600;
  color: var(--umber);
}
.team-card__credential svg { width: 15px; height: 15px; color: var(--gold); }
.team-card p { color: var(--umber); font-size: .96rem; }
.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem;
  list-style: none;
  margin-top: 1.25rem;
}
.team-card__tags li {
  padding: .3rem .75rem;
  border-radius: 999px;
  background: var(--bdx-50);
  color: var(--bdx-800);
  font-size: .78rem;
  font-weight: 600;
}
.team-card--pending { border-style: dashed; background: var(--ivory); }
.team-card--pending h3 { color: var(--umber); }

/* Profil détaillé (page équipe) */
.profile {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.profile__aside { text-align: center; }
.profile__aside .team-card__avatar { width: 150px; height: 150px; font-size: 3.2rem; }
.profile__facts { list-style: none; display: grid; gap: .75rem; margin-top: 1.5rem; text-align: left; }
.profile__facts li { display: flex; gap: .75rem; align-items: flex-start; font-size: .92rem; color: var(--umber); }
.profile__facts svg { width: 18px; height: 18px; flex: none; color: var(--bdx-700); margin-top: .2rem; }
.profile__body h2 { font-size: clamp(1.9rem, 1.4rem + 1.4vw, 2.6rem); margin-bottom: .25rem; }
.profile__body .team-card__role { margin-bottom: 1.1rem; }
.profile__body p { color: var(--umber); }
@media (max-width: 860px) {
  .profile { grid-template-columns: 1fr; }
  .profile__facts { max-width: 420px; margin-inline: auto; }
}

/* --------------------------------------------------------------------------
   12. Section sombre (ouverture / newsletter)
   -------------------------------------------------------------------------- */
.section--dark {
  color: rgba(255, 255, 255, .84);
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(201, 166, 107, .16), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(255, 255, 255, .06), transparent 60%),
    linear-gradient(170deg, var(--bdx-800), var(--bdx-950));
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M34 22h4v12h12v4H38v12h-4V38H22v-4h12z' fill='%23ffffff' fill-opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}
.section--dark > .container { position: relative; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark h2 em { color: var(--gold-soft); }
.section--dark .lead { color: rgba(255, 255, 255, .78); }
.section--dark a:not(.btn) { color: var(--gold-soft); }
.section--dark a:not(.btn):hover { color: #fff; }

.opening {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .opening { grid-template-columns: 1fr; } }

.timeline { list-style: none; display: grid; gap: 1.4rem; margin-top: 2rem; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 11px; top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 166, 107, .1));
}
.timeline li { position: relative; padding-left: 2.6rem; }
.timeline li::before {
  content: "";
  position: absolute;
  left: 5px; top: .45rem;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--bdx-900);
  border: 2px solid var(--gold);
}
.timeline li.is-current::before { background: var(--gold); box-shadow: 0 0 0 5px rgba(201, 166, 107, .2); }
.timeline__when { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: .15rem; }
.timeline__what { display: block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: #fff; line-height: 1.2; }
.timeline p { margin: .3rem 0 0; font-size: .95rem; color: rgba(255, 255, 255, .72); }

.newsletter-card {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.newsletter-card h3 { font-size: 1.8rem; margin-bottom: .5rem; }
.newsletter-card p { font-size: .96rem; color: rgba(255, 255, 255, .78); }
.newsletter-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .1);
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
}
.newsletter-card__icon svg { width: 26px; height: 26px; }

/* --------------------------------------------------------------------------
   13. Formulaires
   -------------------------------------------------------------------------- */
.form { position: relative; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem 1.5rem; }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: .45rem; }
.field__label { font-size: .9rem; font-weight: 600; color: var(--umber); }
.field__label .req { color: var(--bdx-600); margin-left: .15rem; }
.field__hint { font-size: .82rem; color: var(--taupe); margin-top: -.15rem; }

.input, .select, .textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--stone); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--stone); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--bdx-600);
  box-shadow: 0 0 0 4px rgba(122, 27, 46, .12);
}
.textarea { min-height: 140px; resize: vertical; }
.select-wrap { position: relative; }
.select { padding-right: 2.75rem; cursor: pointer; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 1.1rem; top: 50%;
  width: 10px; height: 10px;
  margin-top: -7px;
  border-right: 1.6px solid var(--umber);
  border-bottom: 1.6px solid var(--umber);
  transform: rotate(45deg);
  pointer-events: none;
}
input[type="date"].input { min-height: 3.35rem; }

.field__error {
  display: none;
  font-size: .83rem;
  color: var(--error);
  font-weight: 600;
}
.field.is-invalid .input,
.field.is-invalid .select,
.field.is-invalid .textarea { border-color: var(--error); box-shadow: 0 0 0 4px rgba(179, 38, 30, .1); }
.field.is-invalid .field__error { display: block; }

.checkbox {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: .8rem;
  align-items: start;
  font-size: .9rem;
  color: var(--umber);
  cursor: pointer;
}
.checkbox input {
  width: 22px; height: 22px;
  margin: .15rem 0 0;
  border: 1.5px solid var(--stone);
  border-radius: 6px;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background var(--dur), border-color var(--dur);
}
.checkbox input:checked { background: var(--bdx-700); border-color: var(--bdx-700); }
.checkbox input:checked::after {
  content: "";
  width: 11px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.checkbox input:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.field.is-invalid .checkbox input { border-color: var(--error); }

.radio-group { display: flex; flex-wrap: wrap; gap: .6rem; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.radio-pill span {
  display: inline-block;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--linen);
  background: #fff;
  font-size: .9rem;
  font-weight: 600;
  color: var(--umber);
  transition: all var(--dur) var(--ease);
}
.radio-pill input:checked + span { background: var(--bdx-700); border-color: var(--bdx-700); color: #fff; }
.radio-pill input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }
.radio-pill:hover span { border-color: var(--bdx-300); }

.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 1.75rem; }
.form__note { font-size: .84rem; color: var(--taupe); }

/* Messages de statut */
.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
}
.form-status.is-error { display: block; background: var(--error-bg); color: var(--error); }

.form-success {
  display: none;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: var(--success-bg);
  border: 1px solid #CFE6D9;
  text-align: center;
}
.form-success.is-visible { display: block; animation: rise .5s var(--ease-out); }
.form-success__icon {
  width: 68px; height: 68px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--success);
  color: #fff;
  box-shadow: 0 16px 30px -14px rgba(46, 125, 91, .7);
}
.form-success__icon svg { width: 32px; height: 32px; }
.form-success h3 { color: #1F5E43; margin-bottom: .5rem; }
.form-success p { color: #2F5B47; max-width: 520px; margin-inline: auto; }
.form.is-sent form { display: none; }
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Newsletter (inline) */
.newsletter-form { position: relative; }
.newsletter-form__row {
  display: flex;
  gap: .6rem;
  padding: .45rem;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--linen);
  box-shadow: var(--shadow-sm);
}
.newsletter-form__row .input {
  flex: 1;
  min-width: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: .75rem 1rem;
}
.newsletter-form__row .input:focus { box-shadow: none; }
.newsletter-form__row .btn { padding: .8rem 1.4rem; }
.newsletter-form .field__error { margin-top: .5rem; padding-left: 1.2rem; }
.newsletter-form .checkbox { margin-top: .9rem; font-size: .82rem; }
[data-form="newsletter"] .form-success { padding: 1.5rem; margin-top: 0; }
[data-form="newsletter"] .form-success__icon { width: 48px; height: 48px; margin-bottom: .75rem; }
[data-form="newsletter"] .form-success__icon svg { width: 24px; height: 24px; }
[data-form="newsletter"] .form-success h3 { font-size: 1.4rem; }
[data-form="newsletter"] .form-success p { font-size: .92rem; }

.section--dark .newsletter-form__row { background: rgba(255, 255, 255, .96); border-color: transparent; }
.section--dark .newsletter-form .checkbox { color: rgba(255, 255, 255, .7); }
.section--dark .newsletter-form .checkbox input { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .4); }
.section--dark .newsletter-form .checkbox input:checked { background: var(--gold); border-color: var(--gold); }
.section--dark .newsletter-form .checkbox a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.section--dark .newsletter-form .field__error { color: #FFC9C4; }
.section--dark [data-form="newsletter"] .form-success { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .18); }
.section--dark [data-form="newsletter"] .form-success h3 { color: #fff; }
.section--dark [data-form="newsletter"] .form-success p { color: rgba(255, 255, 255, .8); }

@media (max-width: 480px) {
  .newsletter-form__row { flex-direction: column; border-radius: var(--radius); padding: .6rem; }
  .newsletter-form__row .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   14. Cartes d'information / contact
   -------------------------------------------------------------------------- */
.info-card {
  display: flex;
  gap: 1.15rem;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.info-card__icon {
  width: 50px; height: 50px; flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--bdx-50);
  color: var(--bdx-700);
}
.info-card__icon svg { width: 24px; height: 24px; }
.info-card h3 { font-family: var(--font-body); font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--taupe); margin-bottom: .45rem; }
.info-card p { color: var(--ink); font-weight: 500; font-size: .98rem; line-height: 1.5; }
.info-card p a { color: var(--ink); overflow-wrap: anywhere; }
.info-card p a:hover { color: var(--bdx-700); }
.info-card small { display: block; color: var(--taupe); font-weight: 400; margin-top: .25rem; }
.info-card--stack { flex-direction: column; gap: 1.1rem; }
.info-card--stack p { font-size: .95rem; }

/* Horaires */
.hours { list-style: none; display: grid; gap: .5rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .5rem; border-bottom: 1px dashed var(--linen); font-size: .96rem; }
.hours li:last-child { border-bottom: 0; }
.hours span:first-child { color: var(--umber); font-weight: 600; }
.hours span:last-child { color: var(--ink); font-weight: 600; }
.hours .is-closed span:last-child { color: var(--taupe); font-weight: 500; }

/* Carte */
.map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--linen);
  box-shadow: var(--shadow);
  background: var(--sand);
}
.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(.85) sepia(.08);
}
.map__card {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  max-width: 300px;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--linen);
}
.map__card strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--bdx-800); margin-bottom: .2rem; }
.map__card p { font-size: .9rem; color: var(--umber); margin-bottom: .6rem; }
.map__card .link-arrow { font-size: .88rem; }
@media (max-width: 560px) {
  .map__card { position: static; max-width: none; border-radius: 0; border: 0; border-top: 1px solid var(--linen); box-shadow: none; }
  .map iframe { min-height: 320px; }
}

/* Mise en page "pratique" (accueil) */
.practical {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.practical__col { display: grid; gap: 1.25rem; align-content: start; }
@media (max-width: 900px) { .practical { grid-template-columns: 1fr; } }

/* Mise en page formulaire + aside (rendez-vous, contact) */
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form-card {
  padding: clamp(1.75rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.form-card__head { margin-bottom: 2rem; }
.form-card__head h2 { font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.4rem); margin-bottom: .5rem; }
.form-card__head p { color: var(--umber); }
.aside-stack { display: grid; gap: 1.25rem; position: sticky; top: calc(var(--header-h) + 1.5rem); }
@media (max-width: 960px) {
  .form-layout { grid-template-columns: 1fr; }
  .aside-stack { position: static; }
}

.aside-card {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--radius);
}
.aside-card h3 { font-size: 1.35rem; margin-bottom: .9rem; display: flex; align-items: center; gap: .6rem; }
.aside-card h3 svg { width: 20px; height: 20px; color: var(--bdx-700); }
.aside-card p { color: var(--umber); font-size: .95rem; }
.aside-card--accent {
  background: linear-gradient(160deg, var(--bdx-700), var(--bdx-900));
  border-color: transparent;
  color: rgba(255, 255, 255, .85);
}
.aside-card--accent h3 { color: #fff; }
.aside-card--accent h3 svg { color: var(--gold-soft); }
.aside-card--accent p { color: rgba(255, 255, 255, .82); }
.aside-card--accent strong { color: #fff; }
.aside-card--accent a { color: var(--gold-soft); }
.aside-card--accent a:hover { color: #fff; }
.aside-card--warm { background: var(--bdx-50); border-color: var(--bdx-100); }

.emergency { display: grid; gap: .75rem; }
.emergency__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-sm);
}
.emergency__item span { font-size: .88rem; }
.emergency__item strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: .02em; }

/* --------------------------------------------------------------------------
   15. FAQ (accordéon natif)
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--linen); }
.faq details { border-bottom: 1px solid var(--linen); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem .25rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.1rem + .5vw, 1.55rem);
  font-weight: 600;
  color: var(--bdx-900);
  transition: color var(--dur) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--bdx-600); }
.faq summary .faq__icon {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--linen);
  color: var(--bdx-700);
  background: #fff;
  transition: transform .35s var(--ease), background var(--dur), color var(--dur), border-color var(--dur);
}
.faq summary .faq__icon svg { width: 16px; height: 16px; }
.faq details[open] summary .faq__icon { transform: rotate(45deg); background: var(--bdx-700); color: #fff; border-color: var(--bdx-700); }
.faq__body { padding: 0 3.5rem 1.5rem .25rem; color: var(--umber); animation: fadeDown .35s var(--ease-out); }
.faq__body p { font-size: .98rem; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 560px) { .faq__body { padding-right: .25rem; } }

/* --------------------------------------------------------------------------
   16. Bandeau d'appel à l'action
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(201, 166, 107, .2), transparent 60%),
    linear-gradient(160deg, var(--bdx-700), var(--bdx-900));
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M34 22h4v12h12v4H38v12h-4V38H22v-4h12z' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem); margin-bottom: .5rem; }
.cta-band h2 em { color: var(--gold-soft); }
.cta-band p { color: rgba(255, 255, 255, .8); max-width: 560px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   17. Contenu éditorial (pages légales, textes longs)
   -------------------------------------------------------------------------- */
.prose { max-width: 74ch; color: var(--umber); }
.prose h2 { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); margin-top: 2.75rem; margin-bottom: .75rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: .5rem; }
.prose ul, .prose ol { padding-left: 1.4rem; margin-bottom: 1.1rem; display: grid; gap: .4rem; }
.prose a { text-decoration: underline; text-decoration-color: var(--bdx-200); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--bdx-700); }
.prose strong { color: var(--ink); }
.prose .callout {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-size: .95rem;
}
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; margin: 1.25rem 0; }
.prose th, .prose td { text-align: left; padding: .75rem .9rem; border-bottom: 1px solid var(--linen); vertical-align: top; }
.prose th { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--taupe); }

/* Encadré "à noter" */
.notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.35rem;
  background: var(--bdx-50);
  border: 1px solid var(--bdx-100);
  border-radius: var(--radius);
  color: var(--bdx-900);
  font-size: .95rem;
}
.notice svg { flex: none; width: 22px; height: 22px; color: var(--bdx-700); margin-top: .15rem; }
.notice strong { color: var(--bdx-900); }

/* Étapes (comment ça marche) */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; counter-reset: step; }
.step {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--bdx-200);
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.step p { color: var(--umber); font-size: .95rem; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* Figure avec légende */
.figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.figure img { width: 100%; }
.figure figcaption {
  position: absolute;
  left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  padding: .85rem 1.1rem;
  background: rgba(255, 252, 249, .92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--umber);
  border: 1px solid rgba(232, 223, 214, .8);
}
.figure figcaption strong { color: var(--bdx-800); font-weight: 700; }

/* Pictos "sous un même toit" */
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.pillars--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 52rem; margin-inline: auto; }
.pillar {
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--radius);
}
.pillar__icon {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bdx-50);
  color: var(--bdx-700);
}
.pillar__icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 1.35rem; margin-bottom: .25rem; }
.pillar p { color: var(--umber); font-size: .92rem; }
@media (max-width: 800px) { .pillars, .pillars--2 { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   18. Pied de page
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  background: var(--bdx-950);
  color: rgba(255, 255, 255, .72);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr 1.15fr 1.35fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.footer__brand p { font-size: .95rem; margin-top: 1.25rem; max-width: 340px; }
.footer__opening {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem !important;
  padding: .5rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 166, 107, .4);
  color: var(--gold-soft);
  font-size: .72rem !important;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer__opening::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.footer h3 {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer ul { list-style: none; display: grid; gap: .55rem; }
.footer a { color: rgba(255, 255, 255, .72); }
.footer a:hover { color: #fff; }
.footer address { font-size: .95rem; display: grid; gap: .6rem; }
.footer address span { display: flex; gap: .65rem; align-items: flex-start; }
.footer address svg { width: 18px; height: 18px; flex: none; color: var(--gold); margin-top: .25rem; }
.footer .newsletter-form__row { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); box-shadow: none; }
.footer .newsletter-form__row .input { color: #fff; }
.footer .newsletter-form__row .input::placeholder { color: rgba(255, 255, 255, .4); }
.footer .newsletter-form .checkbox { color: rgba(255, 255, 255, .55); }
.footer .newsletter-form .checkbox input { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .3); }
.footer .newsletter-form .checkbox input:checked { background: var(--gold); border-color: var(--gold); }
.footer .newsletter-form .checkbox a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.footer .newsletter-form .field__error { color: #FFC9C4; }
.footer [data-form="newsletter"] .form-success { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .16); }
.footer [data-form="newsletter"] .form-success h3 { color: #fff; font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0; text-transform: none; }
.footer [data-form="newsletter"] .form-success p { color: rgba(255, 255, 255, .75); }
.footer__col p { font-size: .92rem; margin-bottom: 1.1rem; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
}
.footer__bottom p { margin: 0; }
.footer .footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255, 255, 255, .5); }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   19. Animations d'apparition
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* --------------------------------------------------------------------------
   20. Page 404
   -------------------------------------------------------------------------- */
.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: var(--section-y);
}
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 9rem);
  line-height: .9;
  font-weight: 600;
  color: var(--bdx-200);
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   21. Impression
   -------------------------------------------------------------------------- */
@media print {
  .topbar, .header, .footer, .cta-band, .nav-toggle, .hero__badge { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: inherit; text-decoration: underline; }
  .section { padding-block: 1.5rem; }
}
