/* =========================================================
   Camille Vergeot — Psychologue clinicienne
   Palette cocooning : sauge, terracotta, beige, ocre
   ========================================================= */

:root {
  /* Couleurs */
  --cream: #F5EEE2;
  --cream-2: #ECE3D2;
  --cream-3: #E5D9C2;
  --white-warm: #FBF8F2;

  --sage: #7E9482;
  --sage-dark: #5C6E6C;
  --sage-deep: #4A5A55;
  --sage-light: #A6B7AA;

  --terracotta: #B87154;
  --terracotta-dark: #9A5A40;
  --coral: #D39D87;
  --ocre: #D3A96A;

  --ink: #2E2A26;
  --muted: #6B6359;
  --line: rgba(46, 42, 38, 0.12);

  /* Typo */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --hand: 'Caveat', cursive;

  /* Layout */
  --max: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 20px rgba(46, 42, 38, 0.06);
  --shadow: 0 18px 50px rgba(46, 42, 38, 0.10);
  --shadow-lg: 0 30px 80px rgba(46, 42, 38, 0.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; color: var(--muted); }
/* b + strong : même rendu ; Inter est chargée jusqu'à 600 (pas 700), sinon <b> paraît "invisible" */
b, strong { color: var(--ink); font-weight: 600; }

ul, ol { padding-left: 0; list-style: none; margin: 0; }

::selection { background: var(--sage-light); color: var(--ink); }

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  position: relative;
}
.section--cream { background: var(--cream); }
.section--cream-alt { background: var(--cream-2); }
.section--sage {
  background: var(--sage);
  color: var(--cream);
}
.section--sage h2, .section--sage h3 { color: var(--cream); }
.section--sage p { color: rgba(245, 238, 226, 0.85); }

.section--terracotta {
  background: var(--terracotta);
  color: var(--cream);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--light { color: var(--coral); }

.section__header {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section__header .eyebrow { justify-content: center; }
.section__title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 1rem;
}
.section__title--light { color: var(--cream); }

.section__lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
}
.section__lead--light { color: rgba(245, 238, 226, 0.9); }

.lead {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 400;
}

.grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 880px) {
  .grid--2 { grid-template-columns: 1.05fr 1fr; }
}
.grid--align-start { align-items: start; }

/* =========================================================
   BOUTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
              color 0.4s var(--ease), border-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 10px 30px -10px rgba(184, 113, 84, 0.55);
}
.btn--primary:hover { background: var(--terracotta-dark); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--sage-dark);
  color: var(--sage-dark);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 238, 226, 0.45);
}
.btn--ghost-light:hover {
  border-color: var(--cream);
  background: rgba(245, 238, 226, 0.1);
}

.btn--cream {
  background: var(--cream);
  color: var(--terracotta-dark);
}
.btn--cream:hover {
  background: var(--white-warm);
  color: var(--terracotta);
}

.btn--outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn--outline:hover {
  background: var(--terracotta);
  color: var(--cream);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 238, 226, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
              padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
  padding: 0.6rem 0;
}
.nav.is-scrolled {
  background: rgba(245, 238, 226, 0.95);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__logo { width: 46px; height: auto; }
.nav__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--serif);
}
.nav__name-first {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.nav__name-last {
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.6vw, 1.5rem);
}
.nav__menu a {
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0.5rem 0.4rem;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav__menu a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0.4rem; right: 0.4rem; bottom: 0.25rem;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
}
.nav__menu a:not(.nav__cta):hover { color: var(--terracotta); }
.nav__menu a:not(.nav__cta):hover::after { transform: scaleX(1); }

.nav__menu a.is-active:not(.nav__cta) { color: var(--terracotta); }
.nav__menu a.is-active:not(.nav__cta)::after { transform: scaleX(1); }

.nav__cta {
  background: var(--sage-dark);
  color: var(--cream) !important;
  padding: 0.65rem 1.2rem !important;
  border-radius: 999px;
  font-weight: 500;
  margin-left: 0.5rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px; height: 42px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav__toggle span {
  width: 22px; height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}

@media (max-width: 980px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem var(--pad) 2rem;
    gap: 0.4rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
  }
  .nav__menu a {
    padding: 0.85rem 0.4rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav__menu a:last-child { border: 0; }
  .nav__cta { margin: 0.8rem 0 0; text-align: center; }
  .nav.is-open .nav__menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(211, 157, 135, 0.18), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(166, 183, 170, 0.22), transparent 50%),
    var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}
.hero__shape--left {
  width: 380px; height: 380px;
  background: var(--sage-light);
  top: -120px; left: -120px;
}
.hero__shape--right {
  width: 320px; height: 320px;
  background: var(--coral);
  bottom: -100px; right: -80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: 1.15fr 0.95fr; }
}

.hero__title {
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 1.4rem;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  color: var(--sage-dark);
  font-weight: 500;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 1.8rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  margin: 0 0 2rem;
  color: var(--sage-dark);
  font-size: 0.95rem;
}
.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Visual carte */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__card {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 0.6s var(--ease);
  position: relative;
}
.hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(211, 157, 135, 0.15));
  z-index: 1;
  pointer-events: none;
}
.hero__card:hover { transform: rotate(0) translateY(-6px); }
.hero__card img { width: 100%; display: block; }

.hero__handwriting {
  margin-top: 1.4rem;
  font-family: var(--hand);
  font-size: 1.6rem;
  color: var(--terracotta);
  transform: rotate(-2deg);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 1.5px solid var(--sage-dark);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: var(--sage-dark);
  border-radius: 2px;
  animation: scroll 1.6s var(--ease) infinite;
}
@keyframes scroll {
  0%, 20% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* =========================================================
   QUI SUIS-JE — portrait
   ========================================================= */
.portrait { position: relative; }
.portrait__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white-warm);
}
.portrait__frame img { width: 100%; }
.portrait__quote {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--white-warm);
  color: var(--ink);
  padding: 1.4rem 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.4;
  max-width: 280px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--terracotta);
}
.portrait__quote span {
  color: var(--terracotta);
  font-size: 1.3rem;
  font-weight: 600;
}
@media (max-width: 600px) {
  .portrait__quote { right: 0; bottom: -20px; max-width: 90%; }
}

/* =========================================================
   APPROCHE — features
   ========================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.feature {
  background: rgba(245, 238, 226, 0.07);
  border: 1px solid rgba(245, 238, 226, 0.18);
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease);
}
.feature:hover {
  transform: translateY(-6px);
  background: rgba(245, 238, 226, 0.12);
}
.feature__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.feature p {
  font-size: 0.95rem;
  color: rgba(245, 238, 226, 0.82);
  margin: 0;
}

/* =========================================================
   DOMAINES
   ========================================================= */
.domaines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-bottom: 3rem;
}
@media (min-width: 760px) {
  .domaines { grid-template-columns: repeat(2, 1fr); }
}

.domaine {
  background: var(--white-warm);
  padding: 2.2rem 1.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease);
  position: relative;
}
.domaine:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(126, 148, 130, 0.4);
}
.domaine__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.domaine__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--terracotta);
  font-weight: 500;
}
.domaine__head h3 {
  font-size: 1.45rem;
  margin: 0;
  flex: 1;
}
.domaine__sub {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  display: block;
  margin-top: 4px;
  font-style: italic;
}
.domaine__intro {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.domaine ul li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  font-size: 0.96rem;
  color: var(--muted);
  border-bottom: 1px dashed rgba(46, 42, 38, 0.07);
}
.domaine ul li:last-child { border-bottom: 0; }
.domaine ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage-light);
}

/* Callout */
.callout {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
  padding: 2rem 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.callout__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.callout__icon svg { width: 24px; height: 24px; }
.callout h3 {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}
.callout p {
  margin: 0 0 1rem;
  max-width: 65ch;
}
@media (max-width: 600px) {
  .callout { flex-direction: column; }
}

/* =========================================================
   STEPS — Déroulement
   ========================================================= */
.steps {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.step {
  display: flex;
  gap: 1.6rem;
  background: var(--white-warm);
  padding: 1.8rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
  transition: transform 0.4s var(--ease);
}
.step:hover { transform: translateX(4px); }
.step__num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}
.step h3 {
  font-size: 1.3rem;
  margin: 0 0 0.4rem;
}
.step p { margin: 0; }

/* =========================================================
   TARIFS
   ========================================================= */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.price-card {
  background: var(--white-warm);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.price-card--featured {
  background: var(--sage);
  border-color: var(--sage-dark);
  color: var(--cream);
  transform: scale(1.03);
}
.price-card--featured:hover { transform: scale(1.03) translateY(-8px); }
.price-card--featured h3,
.price-card--featured .price-card__price { color: var(--cream); }
.price-card--featured .price-card__duration { color: rgba(245, 238, 226, 0.85); }
.price-card--featured::before {
  content: "Le plus demandé";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
}

.price-card h3 { font-size: 1.3rem; margin-bottom: 0.35rem; }
.price-card__duration {
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.price-card__price {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 500;
  margin: 0;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
}
.price-card__price sup {
  font-size: 1.4rem;
  margin-top: 0.6rem;
  color: var(--terracotta);
}
.price-card--featured .price-card__price sup { color: var(--coral); }

/* Info-grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.info {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  background: var(--cream-2);
  border-radius: var(--radius);
}
.info__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info__icon svg { width: 22px; height: 22px; }
.info p { margin: 0; font-size: 0.94rem; }

/* =========================================================
   CABINET
   ========================================================= */
.access {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.access li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.access li:last-child { border-bottom: 0; }
.access__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.access__icon svg { width: 22px; height: 22px; }
.access strong { font-size: 1rem; display: block; margin-bottom: 2px; }
.access p { margin: 0; font-size: 0.94rem; }

.cabinet__address {
  background: var(--white-warm);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--terracotta);
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}
.cabinet__address strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }

.map {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-2);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.85) contrast(0.97); }

/* =========================================================
   RDV (terracotta)
   ========================================================= */
.rdv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 880px) {
  .rdv-grid { grid-template-columns: 1.4fr 1fr; }
}
.rdv__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.rdv__handwriting {
  font-family: var(--hand);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--cream);
  line-height: 1.3;
  position: relative;
  padding-left: 1.4rem;
  border-left: 2px solid rgba(245, 238, 226, 0.4);
}
.rdv__handwriting p { color: inherit; margin: 0; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}
.contact__card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.contact__card:hover {
  transform: translateY(-4px);
  background: var(--white-warm);
  border-color: var(--sage-light);
}
.contact__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--sage);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__card strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
  line-height: 1.4;
}

.urgence {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  background: rgba(184, 113, 84, 0.08);
  border: 1px solid rgba(184, 113, 84, 0.25);
  border-radius: var(--radius);
}
.urgence__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.urgence__icon svg { width: 22px; height: 22px; }
.urgence p { margin: 0; font-size: 0.95rem; }
.urgence a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 760px) {
  .footer__inner { grid-template-columns: auto 1fr; text-align: left; }
  .footer__nav { justify-self: end; }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: center;
}
.footer__brand img {
  width: 50px;
  background: var(--cream);
  padding: 6px;
  border-radius: 50%;
}
.footer__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 0;
  color: var(--cream);
  font-weight: 500;
}
.footer__role {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(245, 238, 226, 0.7);
}
.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}
.footer__nav a {
  color: rgba(245, 238, 226, 0.85);
  font-size: 0.9rem;
  transition: color 0.3s var(--ease);
}
.footer__nav a:hover { color: var(--coral); }
.footer__legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(245, 238, 226, 0.15);
}
.footer__legal a {
  font-size: 0.82rem;
  color: rgba(245, 238, 226, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__legal a:hover { color: var(--coral); }

.footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(245, 238, 226, 0.6);
  text-align: center;
  grid-column: 1 / -1;
}

/* =========================================================
   ANIMATIONS REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* =========================================================
   PAGES LÉGALES & BANDEAU COOKIES
   ========================================================= */
.legal-page {
  padding: clamp(5.5rem, 14vw, 7.5rem) 0 clamp(3.5rem, 8vw, 5rem);
}
.legal-page--cream {
  background: var(--cream);
}
.legal-page__inner {
  max-width: 44rem;
  margin: 0 auto;
}
.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin-bottom: 0.5rem;
}
.legal-page .legal-page__updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 2rem;
}
.legal-page h2 {
  font-size: 1.28rem;
  margin-top: 2.25rem;
  margin-bottom: 0.65rem;
  color: var(--ink);
}
.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 0.85em;
}
.legal-page ul,
.legal-page ol {
  margin: 0 0 1em;
  padding-left: 1.35rem;
}
.legal-page ul { list-style: disc; }
.legal-page ol { list-style: decimal; }
.legal-page a {
  color: var(--terracotta-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page a:hover { color: var(--terracotta); }
.legal-page code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.88em;
  background: var(--cream-2);
  padding: 0.12em 0.35em;
  border-radius: 4px;
}
.legal-page .legal-callout {
  background: var(--cream-2);
  border-left: 3px solid var(--terracotta);
  padding: 1rem 1.15rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.25rem 0;
}
.legal-page .legal-callout p { margin: 0; font-size: 0.95rem; }

.cookie-banner {
  position: fixed;
  z-index: 10000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--pad);
  background: rgba(46, 42, 38, 0.94);
  color: var(--cream);
  box-shadow: 0 -8px 40px rgba(46, 42, 38, 0.2);
  transform: translateY(0);
  transition: transform 0.45s var(--ease), opacity 0.35s ease;
}
.cookie-banner.cookie-banner--dismissed {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 720px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.cookie-banner__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(245, 238, 226, 0.92);
}
.cookie-banner__text a {
  color: var(--coral);
  font-weight: 500;
}
.cookie-banner__btn {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--terracotta);
  color: var(--cream);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.cookie-banner__btn:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-1px);
}
