/* ==========================================================
   Parent'ez · palette issue du logo
   ========================================================== */
:root {
  --cream: #fbf6ef;
  --sand: #f5ebdf;
  --blush: #f3dfd3;
  --terracotta: #df8057;
  --terracotta-dark: #b95f3a;
  --peach: #efb97d;
  --sage: #a7c6a0;
  --sage-soft: #e3ede0;
  --ink: #4a3a33;
  --ink-soft: #6b5a52;
  /* accessibles (WCAG AA) */
  --accent: #b0582f;        /* fonds boutons (blanc 4.8:1) */
  --accent-hover: #8f4524;
  --accent-text: #a9512b;   /* texte courant (5:1 sur crème) */
  --accent-large: #c0623a;  /* grands titres (3.9:1) */
  --sage-text: #557050;     /* texte vert (5:1) */
  --white: #fffdfa;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Figtree", system-ui, sans-serif;

  --radius: 28px;
  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section: clamp(72px, 10vw, 128px);
  --half: calc(var(--section) / 2);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: clip; }
main { overflow-x: clip; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
figure { margin: 0; }

h1, h2, h3 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100;
  font-weight: 350;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
h3 { font-size: 1.35rem; font-weight: 450; }
.h1__brand {
  display: block; font-family: var(--sans); font-size: .95rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 1rem;
}
h1 em, h2 em { font-style: italic; color: var(--accent-large); font-weight: 300; }
p { margin: 0 0 1.1em; }

.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-text);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 34em; }

.skip {
  position: absolute; left: -999px; top: 8px;
  background: var(--ink); color: var(--white); padding: 8px 16px; border-radius: 99px; z-index: 100;
}
.skip:focus { left: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn--primary { background: var(--accent); color: var(--white); box-shadow: 0 10px 30px -12px rgba(176,88,47,.6); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn--ghost { border: 1px solid rgba(74,58,51,.25); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 3px; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: rgba(251,246,239,.9); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(74,58,51,.08);
  transition: opacity .4s var(--ease);
}
.header.is-scrolled::before { opacity: 1; }
.header__inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.brand img { height: 72px; width: auto; transition: height .4s var(--ease); }
.header.is-scrolled .brand img { height: 56px; }
.nav { display: flex; align-items: center; gap: 1.6rem; font-size: .93rem; }
.nav a[aria-current="page"] { color: var(--accent-text); }
.nav a { text-decoration: none; position: relative; }
.nav a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: var(--terracotta); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav a:not(.nav__cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { padding: .65rem 1.3rem; border-radius: 999px; background: var(--ink); color: var(--cream); transition: background .3s; }
.nav__cta:hover { background: var(--accent); }
.burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--wrap); margin: 0 auto;
  padding: 150px var(--gutter) var(--half);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center;
  min-height: min(100vh, 920px);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2.2rem 0 2rem; }
.rating { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; font-size: .95rem; color: var(--ink-soft); }
.rating__stars { color: var(--peach); letter-spacing: .1em; font-size: 1.1rem; }
.rating strong { color: var(--ink); }

.hero__visual { position: relative; padding-top: 40px; }
.rainbow { position: absolute; top: -10px; left: -8%; width: 116%; z-index: 0; overflow: visible; }
.rainbow path { fill: none; stroke-width: 22; stroke-linecap: round; opacity: .55; }
.rainbow path:nth-child(1) { stroke: var(--terracotta); opacity: .35; }
.rainbow path:nth-child(2) { stroke: var(--peach); opacity: .4; }
.rainbow path:nth-child(3) { stroke: var(--sage); opacity: .5; }
.rainbow path { stroke-dasharray: 900; stroke-dashoffset: 900; animation: draw 2.4s var(--ease) .3s forwards; }
.rainbow path:nth-child(2) { animation-delay: .5s; }
.rainbow path:nth-child(3) { animation-delay: .7s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.arch { border-radius: 999px 999px var(--radius) var(--radius); overflow: hidden; position: relative; background: var(--sand); }
.arch img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.arch:hover img { transform: scale(1.04); }
.arch--hero { aspect-ratio: 4 / 5; position: relative; z-index: 1; width: 82%; margin-left: auto; margin-right: 4%; }
.arch--hero img { object-position: 45% center; }
.bubble {
  position: absolute; z-index: 2; left: 0; bottom: 8%;
  width: 38%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 8px solid var(--cream);
  box-shadow: 0 30px 60px -30px rgba(74,58,51,.4);
  animation: float 7s ease-in-out 4;
}
.bubble img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; z-index: 3; right: 0; top: 22%;
  width: 104px; height: 104px; border-radius: 50%;
  background: var(--sage); color: var(--ink);
  display: grid; place-content: center; text-align: center; line-height: 1;
  font-size: .85rem; letter-spacing: .05em;
  animation: float 8s ease-in-out 4;
}
.hero__badge-num { font-family: var(--serif); font-size: 1.9rem; display: block; margin-bottom: 4px; }
@keyframes float { 50% { transform: translateY(-12px); } }

/* ---------- Doubts ---------- */
.doubts {
  background: var(--sand);
  padding: var(--section) var(--gutter);
  border-radius: 60px;
  margin-bottom: var(--half);
}
.doubts__intro { max-width: 760px; margin: 0 auto 70px; text-align: center; }
.doubts__intro .eyebrow { justify-content: center; }
.doubts__intro p:last-child { color: var(--ink-soft); font-size: 1.08rem; }
.doubts__list {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.doubts__list li {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5;
  display: flex; align-items: flex-end;
}
.doubts__list li:nth-child(2) { transform: translateY(40px); }
.doubts__list { padding-bottom: 40px; }
.doubts__list img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); }
.doubts__list li::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(60,40,32,.75), transparent 60%); }
.doubts__list span {
  position: relative; z-index: 1; padding: 28px; color: var(--white);
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; line-height: 1.35; font-weight: 300;
}

/* ---------- Services ---------- */
.service {
  max-width: var(--wrap); margin: 0 auto;
  padding: calc(var(--section) + 40px) var(--gutter) var(--section);
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: center;
}
.service--alt { grid-template-columns: 1.1fr 1fr; padding-top: var(--section); }
.service__media { position: relative; }
.arch--tall { aspect-ratio: 3 / 4; }
.service__deco {
  position: absolute; right: -8%; bottom: -8%; width: 46%; aspect-ratio: 1; object-fit: cover;
  border-radius: 50%; border: 8px solid var(--cream);
}
.service__body > p { color: var(--ink-soft); }
.tags { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.8rem 0 2.2rem; }
.tags li {
  padding: .45rem 1.05rem; border-radius: 999px; font-size: .9rem;
  background: var(--sage-soft); color: #4d6b48;
}
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; border-top: 1px solid rgba(74,58,51,.12); padding-top: 2rem; }
.pillars h3 { color: var(--accent-text); margin-bottom: .3em; }
.pillars p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 2rem 0 1.5rem; }
.duo__card {
  background: var(--white); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: 0 20px 50px -35px rgba(74,58,51,.35);
  transition: transform .5s var(--ease);
}
.duo__card:hover { transform: translateY(-6px); }
.duo__card p { font-size: .95rem; color: var(--ink-soft); margin: 0; }
.duo__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--blush); margin-bottom: 1.2rem; }
.duo__icon svg { width: 28px; fill: none; stroke: var(--terracotta); stroke-width: 2.2; stroke-linecap: round; }
.note { font-size: .85rem; color: var(--ink-soft); font-style: italic; }

/* ---------- Film ---------- */
.film {
  position: relative; margin: var(--half) var(--gutter); height: clamp(420px, 70vh, 680px);
  border-radius: 40px; overflow: hidden; background: var(--sand);
}
.film__video { width: 100%; height: 100%; object-fit: cover; }
.film__overlay {
  position: absolute; inset: 0; display: grid; place-items: center; padding: var(--gutter);
  background: linear-gradient(rgba(60,42,35,.35), rgba(60,42,35,.55));
}
.film blockquote { margin: 0; max-width: 820px; text-align: center; color: var(--white); }
.film blockquote p { font-family: var(--serif); font-size: clamp(1.6rem, 3.6vw, 2.8rem); line-height: 1.25; font-weight: 300; font-style: italic; }
.film cite { font-style: normal; letter-spacing: .2em; text-transform: uppercase; font-size: .8rem; }

/* ---------- About ---------- */
.about {
  max-width: var(--wrap); margin: 0 auto;
  padding: var(--half) var(--gutter);
  display: grid; grid-template-columns: .85fr 1fr; gap: clamp(40px, 8vw, 120px); align-items: center;
}
.about__media { position: relative; }
.arch--portrait { aspect-ratio: 3 / 4; }
.about__rainbow { position: absolute; width: 42%; right: -12%; bottom: -5%; }
.about__rainbow path { fill: none; stroke-width: 12; stroke-linecap: round; }
.about__rainbow path:nth-child(1) { stroke: var(--terracotta); opacity: .6; }
.about__rainbow path:nth-child(2) { stroke: var(--peach); opacity: .7; }
.about__rainbow path:nth-child(3) { stroke: var(--sage); }
.about__role { font-family: var(--serif); font-style: italic; color: var(--accent-text); font-size: 1.2rem; line-height: 1.5; }
.about__body > p:not(.eyebrow):not(.about__role) { color: var(--ink-soft); }
.insta {
  display: inline-flex; align-items: center; gap: .7rem; margin-top: .8rem;
  font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--peach); padding-bottom: 4px;
}
.insta svg { width: 22px; fill: none; stroke: var(--terracotta); stroke-width: 1.8; }
.insta svg .dot { fill: var(--terracotta); stroke: none; }
.insta:hover { color: var(--accent-text); }

/* ---------- Steps ---------- */
.steps { background: var(--sage-soft); padding: var(--section) var(--gutter); border-radius: 60px; margin: 0 clamp(0px, 2vw, 24px); }
.steps__head { max-width: var(--wrap); margin: 0 auto 60px; }
.steps__head h2 { max-width: 640px; }
.steps__list { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; counter-reset: s; }
.steps__list li { border-top: 1px solid rgba(74,58,51,.18); padding-top: 26px; }
.steps__num { font-family: var(--serif); font-size: 3rem; color: var(--sage); filter: brightness(.85); line-height: 1; display: block; margin-bottom: 1rem; font-weight: 300; }
.steps__list p { color: var(--ink-soft); font-size: .98rem; }
.mosaic {
  max-width: var(--wrap); margin: 70px auto 0;
  display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 20px; align-items: end;
}
.mosaic img { width: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 1; }
.mosaic img:nth-child(2) { aspect-ratio: 4 / 3; border-radius: 999px 999px var(--radius) var(--radius); }

/* ---------- Reviews ---------- */
.reviews { padding: var(--half) var(--gutter); display: grid; place-items: center; }
.reviews__card { text-align: center; max-width: 520px; }
.reviews__score { font-family: var(--serif); font-size: clamp(4.5rem, 10vw, 7rem); line-height: 1; margin: 0; color: var(--accent-large); font-weight: 300; }
.reviews__stars { color: var(--peach); font-size: 1.6rem; letter-spacing: .2em; margin: .3em 0 .8em; }
.reviews__card > p:not([class]) { color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact {
  max-width: var(--wrap); margin: 0 auto;
  padding: var(--half) var(--gutter) var(--section);
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: stretch;
}
.contact__info > p:not(.eyebrow) { color: var(--ink-soft); }
.contact__phone {
  display: inline-block; font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem);
  text-decoration: none; color: var(--accent-large); margin: .5rem 0 2rem; font-weight: 350;
  border-bottom: 2px solid var(--peach);
}
.contact__phone:hover { color: var(--terracotta-dark); }
.contact__list { display: grid; gap: 1.4rem; margin: 0; }
.contact__list div { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(74,58,51,.1); }
.contact__list dt { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-soft); padding-top: .2em; }
.contact__list dd { margin: 0; }
.contact__list a { text-decoration: none; }
.contact__list a:hover { color: var(--accent-text); }
.contact__map { border-radius: var(--radius); overflow: hidden; min-height: 420px; background: var(--sand); }
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(.6) sepia(.15); }

/* ---------- Footer ---------- */
.footer { background: var(--sand); text-align: center; padding: 70px var(--gutter) 50px; border-radius: 60px 60px 0 0; }
.footer__logo { width: 200px; margin: 0 auto 1.2rem; }
.footer p { margin: 0 0 .6em; color: var(--ink-soft); }
.footer__small { font-size: .88rem; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--accent-text); }

/* ---------- Floating call ---------- */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: none; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(185,95,58,.7);
}
.fab svg { width: 24px; fill: currentColor; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .doubts__list li:nth-child(2).reveal.is-visible { transform: translateY(40px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .rainbow path { stroke-dashoffset: 0; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .brand { position: relative; z-index: 60; }
  .burger {
    display: grid; gap: 7px; width: 46px; height: 46px; place-content: center;
    background: none; border: 1px solid rgba(74,58,51,.2); border-radius: 50%; cursor: pointer; z-index: 60;
  }
  .burger span { width: 20px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease); }
  .burger[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
  .burger[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }
  .nav {
    position: fixed; inset: 0; background: var(--cream);
    flex-direction: column; justify-content: center; gap: 1.6rem;
    font-family: var(--serif); font-size: 1.7rem;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav__cta { font-family: var(--sans); font-size: 1rem; margin-top: 1rem; }

  .fab { display: grid; }
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; min-height: 0; }
  .hero__visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .service, .service--alt, .about, .contact { grid-template-columns: 1fr; }
  .service--alt .service__media { order: -1; }
  .service__media, .about__media { max-width: 460px; width: 100%; margin: 0 auto; }
  .doubts__list { grid-template-columns: 1fr; max-width: 460px; }
  .doubts__list li { aspect-ratio: 5 / 4; }
  .doubts__list li:nth-child(2), .js .doubts__list li:nth-child(2).reveal.is-visible { transform: none; }
  .steps__list { grid-template-columns: 1fr; gap: 28px; }
  .fab { display: grid; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand img { height: 56px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .duo, .pillars { grid-template-columns: 1fr; }
  .hero__badge { width: 84px; height: 84px; }
  .hero__badge-num { font-size: 1.5rem; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic img:nth-child(2) { grid-column: 1 / -1; grid-row: 1; }
  .contact__list div { grid-template-columns: 1fr; gap: .3rem; }
  .doubts, .footer { border-radius: 36px 36px 0 0; }
  .steps { border-radius: 36px; }
  .film { border-radius: 28px; }
}

/* ==========================================================
   Pages intérieures
   ========================================================== */
.page-hero {
  max-width: var(--wrap); margin: 0 auto;
  padding: 150px var(--gutter) var(--half);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 90px); align-items: center;
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.page-hero .lead { margin-bottom: 2rem; }
.page-hero__media { position: relative; }
.page-hero__media .arch { aspect-ratio: 4 / 5; }
.page-hero__media .about__rainbow { right: -8%; bottom: -4%; }
.page-hero--center { display: block; text-align: center; max-width: 900px; }
.page-hero--center .eyebrow { justify-content: center; }
.page-hero--center .lead { margin-left: auto; margin-right: auto; }

.crumbs { margin-bottom: 1.6rem; max-width: 100%; }
.crumbs ol {
  display: inline-flex; align-items: center; flex-wrap: nowrap; max-width: 100%;
  list-style: none; margin: 0; padding: 5px 16px 5px 5px; gap: 2px;
  background: rgba(255,253,250,.75); border: 1px solid rgba(74,58,51,.1); border-radius: 999px;
  font-size: .84rem; line-height: 1;
}
.crumbs li { display: inline-flex; align-items: center; min-width: 0; }
.crumbs li + li::before {
  content: ""; flex: none; width: 14px; height: 14px; margin: 0 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6' fill='none' stroke='%239a8a82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.crumbs a {
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none; color: var(--ink-soft);
  padding: 7px 10px; border-radius: 999px; white-space: nowrap; transition: background .3s var(--ease), color .3s var(--ease);
}
.crumbs li:first-child a { width: 32px; height: 32px; padding: 0; justify-content: center; background: var(--blush); color: var(--accent-text); }
.crumbs a svg { width: 16px; height: 16px; fill: currentColor; }
.crumbs a:hover { color: var(--accent-text); background: var(--blush); }
.crumbs [aria-current="page"] {
  color: var(--accent-text); font-weight: 500; padding: 7px 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}

.block { max-width: var(--wrap); margin: 0 auto; padding: var(--half) var(--gutter); }
.block__more { margin: 40px 0 0; text-align: center; }
.block--tight { padding-top: 0; }
.block__head { max-width: 760px; margin-bottom: 56px; }
.block__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.block__head--center .eyebrow { justify-content: center; }
.block__head p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; }
.band { background: var(--sand); border-radius: 60px; padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 64px); }
.band--sage { background: var(--sage-soft); }

/* Split texte / image */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split .arch { aspect-ratio: 4 / 5; }
.split__body > p { color: var(--ink-soft); }

/* Cartes */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 60px -40px rgba(74,58,51,.4);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  text-decoration: none;
}
a.card:hover { transform: translateY(-6px); box-shadow: 0 34px 70px -40px rgba(74,58,51,.5); }
.card__img { aspect-ratio: 16 / 11; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
a.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 30px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.card__body p { color: var(--ink-soft); font-size: .97rem; }
.card__kicker { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-text); font-weight: 600; margin-bottom: .8rem; }
.card__more { margin-top: auto; color: var(--accent-text); font-weight: 500; display: inline-flex; align-items: center; gap: .5rem; }
.card__more::after { content: "→"; transition: transform .4s var(--ease); }
a.card:hover .card__more::after { transform: translateX(5px); }
.card--plain { padding: 34px 32px; }
.card--plain h3 { color: var(--ink); }
.card__num { font-family: var(--serif); font-size: 2.6rem; color: var(--accent-large); line-height: 1; margin-bottom: 1rem; font-weight: 300; }

/* Domaines */
.domains { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; max-width: 900px; margin: 0 auto; }
.domains li {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .7rem 1.3rem; border-radius: 999px; background: var(--white);
  border: 1px solid rgba(74,58,51,.1);
  font-family: var(--serif); font-size: 1.1rem; box-shadow: 0 10px 30px -22px rgba(74,58,51,.5);
}
.domains li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--terracotta); flex: none; }
.domains li:nth-child(3n+2)::before { background: var(--peach); }
.domains li:nth-child(3n)::before { background: var(--sage-text); }
.domains li:last-child { background: none; border-color: transparent; box-shadow: none; font-style: italic; color: var(--ink-soft); }
.domains li:last-child::before { display: none; }

/* Objectif / encadré */
.goal {
  max-width: 900px; margin: 0 auto; text-align: center;
  padding: clamp(50px, 7vw, 80px) clamp(24px, 6vw, 80px);
  background: var(--white); border-radius: 40px; position: relative;
  box-shadow: 0 30px 80px -50px rgba(74,58,51,.45);
}
.goal .eyebrow { justify-content: center; color: var(--accent-text); }
.goal p.goal__text { font-family: var(--serif); font-size: clamp(1.4rem, 2.8vw, 2rem); line-height: 1.35; font-weight: 300; margin: 0; }

/* Tarifs */
.prices { display: grid; gap: 18px; max-width: 900px; margin: 0 auto; }
.price {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem 2rem; align-items: center;
  background: var(--white); border-radius: var(--radius); padding: 28px 32px;
  box-shadow: 0 20px 50px -40px rgba(74,58,51,.4);
}
.price h3 { margin: 0 0 .2em; }
.price p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.price .price__amount { font-family: var(--serif); font-size: 2rem; color: var(--accent-large); font-weight: 350; white-space: nowrap; text-align: right; line-height: 1.1; }
.price__amount small { display: block; font-family: var(--sans); font-size: .8rem; color: var(--ink-soft); }
.prices__note { text-align: center; font-style: italic; color: var(--ink-soft); max-width: 700px; margin: 30px auto 0; font-size: .95rem; }

/* Liste à puces douce */
.soft-list { display: grid; gap: .7rem; margin: 1.4rem 0 1.8rem; }
.soft-list li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); }
.soft-list li::before {
  content: ""; position: absolute; left: 0; top: .6em; width: 10px; height: 10px; border-radius: 50%;
  background: var(--peach);
}
.soft-list--cols { grid-template-columns: 1fr 1fr; }

/* CTA final */
.cta {
  max-width: var(--wrap); margin: var(--half) auto var(--section); padding: clamp(50px, 7vw, 90px) var(--gutter);
  background: var(--accent); color: var(--white); border-radius: 50px; text-align: center; position: relative; overflow: hidden;
}
.cta__wrap { margin: 0 var(--gutter); }
.cta h2 { color: var(--white); max-width: 700px; margin-left: auto; margin-right: auto; }
.cta h2 em { color: var(--cream); }
.cta p { max-width: 560px; margin: 0 auto 2rem; opacity: .92; }
.cta .btn--primary { background: var(--cream); color: var(--accent-text); box-shadow: none; }
.cta .btn--primary:hover { background: var(--white); }
.cta .btn--ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.cta .btn--ghost:hover { background: var(--white); color: var(--accent-text); }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.cta svg.cta__arc { position: absolute; width: 380px; right: -80px; bottom: -120px; opacity: .18; }
.cta svg.cta__arc path { fill: none; stroke: var(--white); stroke-width: 18; }

/* Blog */
.post-meta { font-size: .85rem; color: var(--ink-soft); display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.article-hero { max-width: 900px; margin: 0 auto; padding: 160px var(--gutter) 50px; text-align: center; }
.article-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.article-hero .eyebrow { justify-content: center; }
.article-cover { max-width: 1100px; margin: 0 auto; padding: 0 var(--gutter); }
.article-cover img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; border-radius: 40px; }
.prose { max-width: 720px; margin: 0 auto; padding: 70px var(--gutter) 40px; font-size: 1.08rem; }
.prose p, .prose li { color: #5e4d45; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 2.4em 0 .7em; }
.prose h3 { margin: 1.8em 0 .5em; color: var(--accent-text); }
.prose ul { margin: 0 0 1.4em; display: grid; gap: .5rem; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 8px; border-radius: 50%; background: var(--peach); }
.prose .lead-p { font-family: var(--serif); font-size: 1.35rem; line-height: 1.5; color: var(--ink); font-weight: 300; }
.prose .tip {
  background: var(--sage-soft); border-radius: 22px; padding: 22px 26px; margin: 1.6em 0;
}
.prose .tip strong { color: #4d6b48; }
.prose .tip p:last-child { margin: 0; }
.prose blockquote {
  margin: 2em 0; padding: 0 0 0 1.6rem; border-left: 3px solid var(--peach);
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink); line-height: 1.5;
}
.prose .signature { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--accent-text); }
.author {
  max-width: 720px; margin: 20px auto 0; padding: 30px var(--gutter);
  display: flex; gap: 22px; align-items: center;
}
.author img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex: none; }
.author p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.author strong { color: var(--ink); font-family: var(--serif); font-weight: 450; font-size: 1.1rem; display: block; }

@media (max-width: 980px) {
  .page-hero, .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .page-hero { padding-top: 130px; }
  .page-hero__media, .split__media { max-width: 460px; width: 100%; margin: 0 auto; }
  .cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .cards, .cards--2, .soft-list--cols { grid-template-columns: 1fr; }
  .price { grid-template-columns: 1fr; }
  .price__amount { text-align: left; }
  .band, .cta { border-radius: 36px; }
  .article-cover img { border-radius: 26px; aspect-ratio: 4 / 3; }
  .author { flex-direction: column; text-align: center; }
}

.about__quote {
  margin: 1.8rem 0; padding: 0 0 0 1.4rem; border-left: 3px solid var(--peach);
}
.about__quote p { font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.45; color: var(--ink); margin: 0; }

/* Carte chargée au clic (RGPD) */
.contact__map { position: relative; }
.map-consent {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .4rem; padding: 30px; text-align: center; background: var(--sand);
}
.map-consent svg { width: 42px; fill: none; stroke: var(--terracotta); stroke-width: 1.6; margin-bottom: .6rem; }
.map-consent p { margin: 0; }
.map-consent__text { color: var(--ink-soft); font-size: .9rem; max-width: 320px; margin-bottom: 1rem !important; }
.map-consent__btn { border: 0; cursor: pointer; font: inherit; font-weight: 500; }
.map-consent__link { font-size: .88rem; color: var(--ink-soft); margin-top: .6rem; }

/* Champs à compléter (mentions légales) */
mark.todo { background: #ffe7a8; color: #7a4b00; padding: 0 .35em; border-radius: 4px; font-weight: 500; }

/* ==========================================================
   Audit : composants ajoutés
   ========================================================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Encadré dans un bloc */
.inset { margin-top: 1.8rem; background: var(--white); border-radius: 22px; padding: 22px 26px; box-shadow: 0 18px 40px -32px rgba(74,58,51,.5); }
.inset h3 { font-size: 1.15rem; margin-bottom: .35em; color: var(--accent-text); }
.inset p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq__list { display: grid; gap: 12px; }
.faq__item { background: var(--white); border-radius: 22px; box-shadow: 0 18px 40px -34px rgba(74,58,51,.5); border: 1px solid rgba(74,58,51,.06); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 64px 22px 26px; position: relative;
  font-family: var(--serif); font-size: 1.15rem; line-height: 1.35; border-radius: 22px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 24px; top: 50%; width: 26px; height: 26px; margin-top: -13px; border-radius: 50%;
  background: var(--blush) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 6v12M6 12h12' stroke='%23a9512b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/16px no-repeat;
  transition: transform .35s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 26px 22px; }
.faq__a p { margin: 0; color: var(--ink-soft); }

/* Vidéo : bouton pause */
.film__toggle {
  position: absolute; z-index: 2; right: 20px; bottom: 20px; width: 48px; height: 48px; border-radius: 50%;
  border: 0; cursor: pointer; background: rgba(251,246,239,.9); color: var(--ink); display: grid; place-items: center;
}
.film__toggle svg { width: 20px; fill: currentColor; }
.film__toggle .i-play, .film__toggle[aria-pressed="true"] .i-pause { display: none; }
.film__toggle[aria-pressed="true"] .i-play { display: block; }

/* Pied de page */
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.4rem; margin: 1rem 0; font-size: .92rem; }
.footer__nav a { padding: .35rem 0; }
.footer__addr { white-space: nowrap; }

/* Blog : en-tête */
.blog-hero {
  max-width: var(--wrap); margin: 0 auto; padding: 150px var(--gutter) var(--half);
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center;
}
.blog-hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.chip {
  font: inherit; font-size: .92rem; cursor: pointer; padding: .6rem 1.15rem; min-height: 44px; border-radius: 999px;
  border: 1px solid rgba(74,58,51,.2); background: var(--white); color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.blog-hero__feature { position: relative; display: block; text-decoration: none; border-radius: 36px; overflow: hidden; min-height: 460px; }
.blog-hero__img { position: absolute; inset: 0; }
.blog-hero__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.blog-hero__feature:hover .blog-hero__img img { transform: scale(1.04); }
.blog-hero__card {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  background: rgba(255,253,250,.95); backdrop-filter: blur(8px); border-radius: 24px; padding: 24px 26px;
}
.blog-hero__card h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: .35em; }
.blog-hero__card p:not(.card__kicker) { color: var(--ink-soft); font-size: .95rem; margin-bottom: .8em; }
.posts-empty { text-align: center; color: var(--ink-soft); }
.card[hidden] { display: none; }

@media (max-width: 980px) {
  .blog-hero { grid-template-columns: 1fr; padding-top: 130px; }
  .blog-hero__feature { min-height: 420px; }
  .page-hero, .blog-hero { padding-top: 120px; }
}
@media (max-width: 560px) {
  .blog-hero__feature { min-height: 0; display: flex; flex-direction: column; background: var(--white); border-radius: 28px; }
  .blog-hero__img { position: static; aspect-ratio: 4 / 3; }
  .blog-hero__card { position: static; background: var(--white); backdrop-filter: none; border-radius: 0; }
  .band { border-radius: 32px; }
  .faq__item summary { font-size: 1.05rem; padding: 18px 58px 18px 20px; }
  .faq__a { padding: 0 20px 18px; }
  .hero, .page-hero, .blog-hero { padding-top: 110px; }
  .contact__phone { font-size: 1.9rem; }
}

/* Grilles : autorise les colonnes à rétrécir (fil d'Ariane tronqué proprement) */
.page-hero > *, .blog-hero > *, .split > *, .hero > * { min-width: 0; }
.crumbs li:last-child { overflow: hidden; }
.map-consent__link { display: inline-block; padding: .5rem .25rem; }

/* Bandeau de consentement */
.consent {
  position: fixed; z-index: 70; left: 20px; bottom: 20px; width: min(440px, calc(100% - 40px));
  background: var(--white); color: var(--ink); border-radius: 24px; padding: 22px 24px;
  box-shadow: 0 30px 70px -20px rgba(74,58,51,.45); border: 1px solid rgba(74,58,51,.08);
}
.consent[hidden] { display: none; }
.consent__title { font-family: var(--serif); font-size: 1.2rem; margin: 0 0 .4rem; }
.consent p { font-size: .92rem; color: var(--ink-soft); margin: 0 0 1rem; }
.consent a { color: var(--accent-text); }
.consent__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.consent__actions .btn {
  justify-content: center; min-height: 46px; padding: .75rem 1rem;
  font: 500 .95rem/1 var(--sans); cursor: pointer; border-radius: 999px; box-shadow: none; transform: none;
}
.consent__actions .btn--primary { border: 1px solid var(--accent); }
.consent__actions .btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: none; }
.consent__actions .btn--ghost { background: var(--cream); color: var(--ink); border: 1px solid rgba(74,58,51,.18); }
.consent__actions .btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.linklike { background: none; border: 0; padding: .35rem 0; font: inherit; color: inherit; text-decoration: underline; cursor: pointer; }
.linklike:hover { color: var(--accent-text); }
@media (max-width: 560px) {
  .consent { left: 12px; right: 12px; bottom: 12px; width: auto; }
}
