/* ==========================================================================
   Laser Eclat — feuille de style commune
   ========================================================================== */

:root {
  --noir: #0B0B0B;
  --creme: #F6F3ED;
  --encre: #1C1A17;
  --or: #C9A24A;
  --or-fonce: #8C6B2F;
  --or-clair: #F0DCA0;
  --sable: #F0E8DC;
  --ivoire: #FBF9F5;
  --gris: #6B655C;
  --gris-texte: #4a463f;
  --gris-clair: #cfcac1;
  --gris-footer: #8f8a80;
  --gradient-or: linear-gradient(135deg, #8C6B2F 0%, #F0DCA0 45%, #C9A24A 100%);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --gutter: 28px;
  --header-h: 97px;
}

@media (max-width: 920px) {
  :root { --header-h: 77px; }
}
@media (max-width: 560px) {
  :root { --gutter: 20px; }
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--creme);
  color: var(--encre);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--or-fonce); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--or); }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 300; margin: 0; }

.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;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  padding: 10px 16px; background: var(--or); color: var(--noir); font-size: 13px;
}
.skip-link:focus { top: 12px; color: var(--noir); }

.container { max-width: 1180px; margin: 0 auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(52px, 6.5vw, 92px); }
.section--sable { background: var(--sable); }
.section--dark { background: var(--noir); color: var(--creme); }

/* Apparition au défilement (activée seulement si JS présent) */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s ease var(--d, 0s), transform .9s ease var(--d, 0s);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Typo récurrente ---------- */

.eyebrow {
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--or-fonce);
  margin-bottom: 16px;
}
.section--dark .eyebrow, .hero .eyebrow { color: var(--or); }

.h2 { font-size: clamp(25px, 3.2vw, 38px); line-height: 1.25; }

.rule { width: 60px; height: 1.5px; background: var(--gradient-or); margin: 22px 0; }
.rule--lg { width: 74px; margin: 28px 0; }

.text { font-size: 14.5px; line-height: 1.8; color: var(--gris-texte); font-weight: 300; margin: 0; }
.text + .text { margin-top: 18px; }
.section--dark .text { color: var(--gris-clair); }

.link-underline {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: .06em;
  border-bottom: 1px solid rgba(140, 107, 47, .4);
  padding-bottom: 4px;
}

.todo {
  background: var(--sable);
  border-bottom: 1px solid var(--or);
  padding: 1px 6px;
}

/* ---------- Boutons ---------- */

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn-row--center { justify-content: center; margin-top: 30px; }

.btn {
  display: inline-block;
  padding: 15px 28px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .06em;
  line-height: 1.3;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .28s ease, color .28s ease, border-color .28s ease, filter .28s ease;
}
.btn--gold { background: var(--gradient-or); color: var(--noir); }
.btn--gold:hover { color: var(--noir); filter: brightness(1.08); }
.btn--ghost-light { border-color: rgba(246, 243, 237, .35); color: var(--creme); }
.btn--ghost-light:hover { border-color: var(--or); color: var(--or); }
.btn--ghost-dark { border-color: rgba(28, 26, 23, .25); color: var(--encre); }
.btn--ghost-dark:hover { border-color: var(--or); color: var(--or-fonce); }
.btn--dark { background: var(--noir); color: var(--or-clair); border: 0; }
.btn--dark:hover { background: var(--or); color: var(--noir); }

/* ---------- Bandeau supérieur ---------- */

.topbar { background: var(--gradient-or); color: var(--noir); }
.topbar__inner {
  max-width: 1180px; margin: 0 auto; padding: 9px var(--gutter);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 6px clamp(12px, 3vw, 40px);
  font-size: 12px; letter-spacing: .04em;
}
.topbar__inner > span { white-space: nowrap; }
.topbar__sep { width: 1px; height: 12px; background: rgba(11, 11, 11, .3); }
.topbar a { display: inline-flex; align-items: center; gap: 7px; color: var(--noir); white-space: nowrap; }
.topbar a:hover { color: var(--noir); }
.topbar a span { border-bottom: 1px solid rgba(11, 11, 11, .35); padding-bottom: 1px; }
@media (max-width: 640px) {
  .topbar__inner { font-size: 11px; }
  .topbar__sep, .topbar__place { display: none; }
}

/* ---------- En-tête ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--noir);
  border-bottom: 1px solid rgba(201, 162, 74, .22);
}
.site-header__inner {
  max-width: 1180px; margin: 0 auto; padding: 10px var(--gutter);
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center;
  column-gap: clamp(16px, 3vw, 64px);
}

.logo { display: block; line-height: 0; width: 76px; height: 76px; overflow: hidden; }
.logo img { width: 76px; height: 76px; object-fit: cover; transform: scale(1.08); mix-blend-mode: lighten; }

.main-nav { display: flex; align-items: center; gap: clamp(10px, 1.4vw, 22px); font-size: 13px; }
.main-nav > a, .nav-dropdown__toggle { color: var(--creme); white-space: nowrap; }
.main-nav > a:hover, .nav-dropdown__toggle:hover { color: var(--or-clair); }
.main-nav a[aria-current="page"] {
  color: var(--or-clair);
  border-bottom: 1px solid var(--or);
  padding-bottom: 2px;
}
.nav-dropdown.is-current .nav-dropdown__toggle { color: var(--or-clair); }

.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav-dropdown__toggle .caret { font-size: 9px; color: var(--or); transition: transform .22s ease; }
.nav-dropdown__menu {
  position: absolute; top: 100%; left: -18px; min-width: 210px;
  margin-top: 10px; padding: 8px 0;
  background: #fff;
  border: 1px solid rgba(28, 26, 23, .12);
  border-top: 2px solid var(--or);
  box-shadow: 0 12px 30px rgba(11, 11, 11, .1);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
/* zone tampon pour ne pas perdre le survol entre le lien et le menu */
.nav-dropdown__menu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown.is-open .caret { transform: rotate(180deg); }
.nav-dropdown__menu a { display: block; padding: 9px 18px; font-size: 13px; color: var(--encre); white-space: nowrap; }
.nav-dropdown__menu a:hover { background: var(--creme); color: var(--or-fonce); }
.nav-dropdown__menu a[aria-current="page"] { color: var(--or-fonce); border: 0; padding-bottom: 9px; }

.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.header-cta {
  padding: 11px 20px;
  border: 1px solid var(--or);
  color: var(--or-clair);
  font-size: 12px; letter-spacing: .06em; white-space: nowrap;
  transition: background .28s ease, color .28s ease;
}
.header-cta:hover { background: var(--or); color: var(--noir); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid rgba(201, 162, 74, .45); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block; width: 18px; height: 1.5px; background: var(--or-clair);
  transition: transform .25s ease, background .25s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-open .nav-toggle__bars { background: transparent; }
.nav-open .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 920px) {
  .site-header__inner { grid-template-columns: auto 1fr; column-gap: 16px; }
  .logo { order: -1; width: 56px; height: 56px; }
  .logo img { width: 56px; height: 56px; }
  .nav-toggle { display: inline-flex; }

  .main-nav {
    position: fixed; left: 0; right: 0; top: var(--header-offset, var(--header-h)); bottom: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--gutter) 40px;
    background: var(--noir);
    border-top: 1px solid rgba(201, 162, 74, .22);
    overflow-y: auto;
    font-size: 16px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a, .nav-dropdown__toggle {
    display: flex; width: 100%; justify-content: space-between;
    padding: 16px 0; border-bottom: 1px solid #1f1f1f;
  }
  .main-nav a[aria-current="page"] { border-bottom: 1px solid #1f1f1f; padding-bottom: 16px; }
  .nav-dropdown__menu {
    position: static; margin: 0; padding: 4px 0 8px 14px; min-width: 0;
    background: none; border: 0; box-shadow: none;
    opacity: 1; visibility: visible; transform: none;
    display: none;
  }
  .nav-dropdown__menu::before { display: none; }
  .nav-dropdown.is-open .nav-dropdown__menu { display: block; }
  .nav-dropdown__menu a { color: var(--gris-clair); font-size: 15px; padding: 11px 0; }
  .nav-dropdown__menu a:hover { background: none; color: var(--or-clair); }
  .nav-dropdown__menu a[aria-current="page"] { color: var(--or-clair); padding-bottom: 11px; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 400px) {
  .header-cta { padding: 10px 12px; font-size: 11px; }
}

/* ---------- Hero ---------- */

.hero { position: relative; background: var(--noir); color: var(--creme); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, .94) 0%, rgba(11, 11, 11, .78) 55%, rgba(11, 11, 11, .42) 100%);
}
.hero__content {
  position: relative;
  max-width: 1180px; margin: 0 auto;
  padding: clamp(52px, 7vw, 104px) var(--gutter) clamp(48px, 6vw, 88px);
}
.hero--home .hero__content { padding: clamp(64px, 9vw, 130px) var(--gutter) clamp(88px, 10vw, 150px); }
.hero--compact .hero__content { padding: clamp(48px, 6vw, 92px) var(--gutter) clamp(44px, 5vw, 78px); }
.hero--legal .hero__content { padding: clamp(40px, 5vw, 72px) var(--gutter) clamp(36px, 4.5vw, 62px); }

.hero h1 {
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.18;
  max-width: 17ch;
  text-wrap: pretty;
}
.hero--home h1 { font-size: clamp(32px, 5.2vw, 58px); max-width: 15ch; }
.hero--wide h1 { max-width: 20ch; }
.hero--legal h1 { font-size: clamp(28px, 4.2vw, 46px); line-height: 1.2; max-width: 22ch; }
.hero .eyebrow { margin-bottom: 22px; }
.hero--home .eyebrow { margin-bottom: 26px; }
.hero .lead { font-size: 15px; line-height: 1.75; color: var(--gris-clair); max-width: 56ch; margin: 0; font-weight: 300; }
.hero--legal .lead { font-size: 14.5px; max-width: 58ch; }
.hero--legal .rule--lg { margin: 26px 0; }

.breadcrumb { font-size: 11.5px; letter-spacing: .1em; color: var(--gris-footer); margin-bottom: 24px; }
.breadcrumb a { color: var(--gris-footer); }
.breadcrumb a:hover { color: var(--or-clair); }
.breadcrumb .sep { color: var(--gris-texte); margin: 0 4px; }
.breadcrumb [aria-current] { color: var(--or); }

/* ---------- Accueil : cartes de confiance ---------- */

.trust {
  position: relative; z-index: 20;
  max-width: 1180px; margin: clamp(-64px, -5vw, -44px) auto 0; padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}
.trust__card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px 20px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(11, 11, 11, .12);
  font-size: 13px; line-height: 1.55;
  transition: transform .28s ease, box-shadow .28s ease;
}
.trust__card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(11, 11, 11, .2); }
.icon { flex: none; width: 22px; height: 22px; margin-top: 1px; color: var(--or-fonce); }

/* ---------- Accueil : cartes des soins ---------- */

.soin-cards { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; }
.soin-card {
  flex: 1 1 calc(50% - 16px); min-width: 260px;
  background: #fff; border: 1px solid rgba(28, 26, 23, .1);
  transition: border-color .28s ease;
}
.soin-card:hover { border-color: var(--or); }
.soin-card__img { height: 190px; overflow: hidden; }
.soin-card__img img { width: 100%; height: 100%; object-fit: cover; }
.soin-card__body { padding: 24px 22px 28px; }
.soin-card__bar { height: 1.5px; width: 34px; background: linear-gradient(135deg, #8C6B2F, #C9A24A); margin-bottom: 16px; }
.soin-card h3 { font-weight: 400; font-size: 21px; line-height: 1.3; margin-bottom: 10px; }
.soin-card p { font-size: 13px; line-height: 1.7; color: var(--gris); margin: 0 0 18px; font-weight: 300; }
.soin-card a { font-size: 12px; letter-spacing: .06em; }

/* ---------- Bloc texte + image ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}
.frame { border: 1px solid rgba(28, 26, 23, .12); overflow: hidden; aspect-ratio: 4 / 3; }
.frame--square { aspect-ratio: 1 / 1; }
.section--dark .frame { border-color: #2a2a2a; }
.frame img { width: 100%; height: 100%; object-fit: cover; }

.signature { font-family: var(--serif); font-size: 19px; margin: 26px 0 0; }
.section--dark .signature { color: var(--creme); }

/* ---------- Questions sur l'accueil ---------- */

.qa-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 44px; border-top: 1px solid rgba(28, 26, 23, .15);
}
.qa-grid > div { padding: 32px 30px; border-right: 1px solid rgba(28, 26, 23, .1); }
.qa-grid > div:first-child { padding-left: 0; }
.qa-grid > div:last-child { padding-right: 0; border-right: 0; }
.qa-grid h3 { font-weight: 400; font-size: 20px; line-height: 1.35; margin-bottom: 14px; }
.qa-grid p { font-size: 13.5px; line-height: 1.8; color: var(--gris); margin: 0; font-weight: 300; }
@media (max-width: 860px) {
  .qa-grid > div { padding: 26px 0; border-right: 0; border-bottom: 1px solid rgba(28, 26, 23, .1); }
}

/* ---------- Citation / bandeau CTA ---------- */

.band { max-width: 900px; margin: 0 auto; padding: clamp(52px, 6.5vw, 88px) var(--gutter); text-align: center; }
.band--sm { padding-block: clamp(44px, 5.5vw, 76px); }
.quote {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(21px, 3vw, 32px); line-height: 1.5;
  color: var(--or-clair); margin: 0; text-wrap: pretty;
}
.quote--lg { font-size: clamp(22px, 3.2vw, 34px); }
.band h2 { font-size: clamp(24px, 3.2vw, 36px); line-height: 1.35; }
.band--sm h2 { font-size: clamp(22px, 3vw, 32px); }
.band .text { margin: 20px auto 0; max-width: 52ch; }

/* ---------- Infos pratiques ---------- */

.info-list { display: grid; gap: 16px; font-size: 14px; line-height: 1.6; }
.info-list > div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; }
.info-list--narrow > div { grid-template-columns: 110px 1fr; }
.info-list dt, .info-list .k { font-size: 11px; letter-spacing: .16em; color: var(--gris); padding-top: 2px; text-transform: uppercase; }
.info-list dd { margin: 0; }
.muted { color: var(--gris); }
@media (max-width: 420px) {
  .info-list > div, .info-list--narrow > div { grid-template-columns: 1fr; gap: 4px; }
}

.map-card {
  aspect-ratio: 4 / 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  padding: 28px; text-align: center;
  background: repeating-linear-gradient(45deg, #EFEBE3 0 9px, #F7F4EE 9px 18px);
  border: 1px solid rgba(28, 26, 23, .12);
}
.map-card svg { width: 34px; height: 34px; color: var(--or-fonce); }
.map-card p { margin: 0; font-size: 14px; line-height: 1.6; }

/* ---------- Pages soins ---------- */

.subnav {
  position: sticky; top: var(--header-h); z-index: 30;
  background: var(--ivoire); border-bottom: 1px solid rgba(28, 26, 23, .1);
}
.subnav__inner {
  max-width: 1180px; margin: 0 auto; padding: 13px var(--gutter);
  display: flex; gap: clamp(14px, 2vw, 30px);
  font-size: 12px; letter-spacing: .04em;
  overflow-x: auto; scrollbar-width: none; white-space: nowrap;
}
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav a { color: var(--gris); }
.subnav a:hover { color: var(--or-fonce); }

.expect {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(18px, 2.4vw, 28px); margin-top: 40px;
}
.expect__col { background: #fff; margin: 0; padding: 0; list-style: none; }
.expect__col li { padding: 18px 24px; border-bottom: 1px solid rgba(28, 26, 23, .07); font-size: 14px; line-height: 1.7; }
.expect__col li:last-child { border-bottom: 0; }
.expect__col .expect__head {
  padding: 16px 24px; border-bottom: 1px solid rgba(28, 26, 23, .12);
  font-size: 11px; letter-spacing: .2em; color: var(--or-fonce); line-height: 1.5;
}
.expect__col--no { background: var(--noir); color: var(--gris-clair); }
.expect__col--no li { border-bottom-color: #1c1c1c; }
.expect__col--no .expect__head { border-bottom-color: #242424; color: var(--or); }

.phototypes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; margin-top: 34px; max-width: 620px; }
.phototypes span {
  height: 52px; display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 7px; font-size: 11px; color: var(--encre);
}
.phototypes span:nth-child(1) { background: #f2e2cf; }
.phototypes span:nth-child(2) { background: #e6cba8; }
.phototypes span:nth-child(3) { background: #cfa678; }
.phototypes span:nth-child(4) { background: #a9753f; color: #fff; }
.phototypes span:nth-child(5) { background: #6f4522; color: #fff; }
.phototypes span:nth-child(6) { background: #3b2214; color: #fff; }

.steps { margin: 40px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(28, 26, 23, .15); }
.steps li {
  display: grid; grid-template-columns: 52px 1fr; gap: 22px;
  padding: 26px 0; border-bottom: 1px solid rgba(28, 26, 23, .1);
}
.steps .num { font-family: var(--serif); font-size: 26px; color: var(--or); line-height: 1; }
.steps p { font-size: 14.5px; line-height: 1.75; margin: 0; font-weight: 300; }

.zones { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 14px; margin-top: 36px; }
.zones > div, .zones > a { padding: 24px 20px; font-size: 14px; transition: background .28s ease, color .28s ease, border-color .28s ease; }
.zones > div { background: #fff; }
.zones > div:hover { background: var(--noir); color: var(--creme); }
.zones > a { border: 1px solid rgba(140, 107, 47, .4); font-size: 13px; letter-spacing: .04em; color: var(--or-fonce); }
.zones > a:hover { background: var(--or); border-color: var(--or); color: var(--noir); }

.narrow { max-width: 72ch; }
.note { margin-top: 28px; border-left: 2px solid var(--or); background: var(--ivoire); padding: 22px 26px; }
.note p { font-size: 14.5px; line-height: 1.8; margin: 0; font-weight: 300; }

.others-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 16px; }
.others-head h2 { font-size: clamp(23px, 3vw, 34px); line-height: 1.3; }
.others { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(16px, 2vw, 24px); margin-top: 32px; }
.others a {
  display: block; padding: 26px 24px; background: #fff; border: 1px solid rgba(28, 26, 23, .1);
  transition: border-color .28s ease, transform .28s ease;
}
.others a:hover { border-color: var(--or); transform: translateY(-3px); }
.others__title { font-family: var(--serif); font-size: 20px; color: var(--encre); margin-bottom: 8px; }
.others__desc { font-size: 13px; line-height: 1.65; color: var(--gris); font-weight: 300; }
.others__more { font-size: 12px; letter-spacing: .06em; color: var(--or-fonce); margin-top: 16px; }

/* ---------- Tarifs ---------- */

.offer {
  max-width: 1180px; margin: 0 auto; padding: clamp(36px, 4vw, 56px) var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.offer__title { font-family: var(--serif); font-size: clamp(21px, 2.6vw, 28px); }
.offer p { font-size: 13.5px; line-height: 1.7; color: var(--gris-texte); margin: 8px 0 0; font-weight: 300; }
.offer .btn { white-space: nowrap; }

.price-table { width: 100%; margin-top: 34px; border-collapse: collapse; }
.price-table th {
  padding: 0 0 14px; border-bottom: 1px solid rgba(28, 26, 23, .2);
  font-size: 10.5px; letter-spacing: .18em; color: var(--gris); font-weight: 400; text-align: left;
}
.price-table td { padding: 20px 0; border-bottom: 1px solid rgba(28, 26, 23, .1); vertical-align: baseline; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table th + th, .price-table td + td { text-align: right; padding-left: 16px; }
.price-table th:nth-child(2), .price-table td:nth-child(2) { width: 110px; }
.price-table th:nth-child(3), .price-table td:nth-child(3) { width: 130px; }
.price-table .zone { font-size: 15px; }
.price-table .zone-desc { font-size: 12px; line-height: 1.6; color: var(--gris); margin-top: 4px; font-weight: 300; }
.price-table .price { font-size: 15px; color: var(--or-fonce); white-space: nowrap; }
@media (max-width: 480px) {
  .price-table th:nth-child(2), .price-table td:nth-child(2),
  .price-table th:nth-child(3), .price-table td:nth-child(3) { width: auto; }
  .price-table th { font-size: 9.5px; letter-spacing: .12em; }
}

.cards3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.card { padding: 26px 24px; background: #fff; border: 1px solid rgba(28, 26, 23, .1); }
.card h3 { font-weight: 400; font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 13.5px; line-height: 1.75; color: var(--gris-texte); margin: 0; font-weight: 300; }

/* ---------- À propos ---------- */

.commit { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: clamp(14px, 1.8vw, 20px); margin-top: 36px; }
.commit > div {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 24px 22px; background: #fff; border: 1px solid rgba(28, 26, 23, .1);
  font-size: 13.5px; line-height: 1.6;
  transition: border-color .28s ease, transform .28s ease;
}
.commit > div:hover { border-color: var(--or); transform: translateY(-3px); }

/* ---------- FAQ ---------- */

.section--faq { padding-block: clamp(48px, 6vw, 84px); }
.faq { margin-top: 34px; border-top: 1px solid rgba(28, 26, 23, .12); }
.faq details { border-bottom: 1px solid rgba(28, 26, 23, .12); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 22px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { font-weight: 400; font-size: clamp(18px, 2.2vw, 22px); line-height: 1.35; }
.faq summary:hover h3 { color: var(--or-fonce); }
.faq .fx { flex: none; font-size: 18px; color: var(--or); line-height: 1; transition: transform .28s ease; }
.faq details[open] .fx { transform: rotate(45deg); }
.faq details p { font-size: 14.5px; line-height: 1.85; color: var(--gris-texte); margin: 0 0 24px; max-width: 76ch; font-weight: 300; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(30px, 4vw, 64px); align-items: start;
}
.contact-grid .h2, .coords .h2 { font-size: clamp(25px, 3.2vw, 36px); }

.form { margin-top: 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 18px; }
.form label { display: grid; gap: 8px; font-size: 11px; letter-spacing: .16em; color: var(--gris); text-transform: uppercase; }
.form label .opt { letter-spacing: .04em; text-transform: none; color: #9a948a; }
.form input, .form textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid rgba(28, 26, 23, .18); border-radius: 0;
  background: #fff; color: var(--encre);
  font-family: var(--sans); font-size: 14px; letter-spacing: normal; text-transform: none;
  transition: border-color .2s ease;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--or); }
.form textarea { resize: vertical; }
.form .full { grid-column: 1 / -1; }
.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.form__actions small { font-size: 12px; line-height: 1.6; color: var(--gris); font-weight: 300; }
.form__status { font-size: 13.5px; line-height: 1.7; color: var(--gris-texte); margin: 0; }
.form__status:empty { display: none; }

.coords { background: var(--sable); padding: clamp(26px, 3vw, 36px); }
.hours { margin-top: 34px; border-top: 1px solid rgba(28, 26, 23, .15); padding-top: 24px; }
.hours .eyebrow { margin-bottom: 14px; }
.hours dl { margin: 0; }
.hours dl > div {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid rgba(28, 26, 23, .09); font-size: 14px;
}
.hours dl > div:last-child { border-bottom: 0; }
.hours dd { margin: 0; color: var(--gris); }
.coords .btn { display: block; margin-top: 28px; }

/* ---------- Pages légales ---------- */

.legal { max-width: 74ch; display: grid; gap: clamp(30px, 3.5vw, 44px); }
.legal h2 { font-weight: 400; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.3; margin-bottom: 14px; }
.legal p { font-size: 14.5px; line-height: 1.85; color: var(--gris-texte); margin: 0 0 12px; font-weight: 300; }
.section--legal { padding-block: clamp(44px, 5.5vw, 78px); }

/* ---------- Pied de page ---------- */

.site-footer { background: var(--noir); color: var(--gris-footer); border-top: 1px solid #1c1c1c; }
.site-footer--flush { border-top: 0; }
.site-footer__grid {
  max-width: 1180px; margin: 0 auto; padding: 56px var(--gutter) 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 36px 28px;
}
.footer-logo { display: block; width: 132px; height: 132px; overflow: hidden; margin-left: -6px; }
.footer-logo img { width: 132px; height: 132px; object-fit: cover; transform: scale(1.06); mix-blend-mode: lighten; }
.site-footer address { font-style: normal; font-size: 12.5px; line-height: 1.8; margin: 18px 0 0; font-weight: 300; }
.site-footer address a { color: var(--gris-footer); }
.footer-col { display: grid; gap: 10px; font-size: 12.5px; align-content: start; }
.footer-col__title { font-size: 10px; letter-spacing: .24em; color: var(--or); margin-bottom: 6px; }
.footer-col a, .site-footer address a { color: var(--gris-footer); }
.footer-col a:hover, .site-footer address a:hover { color: var(--or-clair); }
.site-footer__bottom { border-top: 1px solid #1c1c1c; }
.site-footer__bottom > div {
  max-width: 1180px; margin: 0 auto; padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 11px;
}
.credit { display: flex; align-items: center; gap: 10px; color: var(--gris-footer); letter-spacing: .04em; }
.credit:hover { color: var(--or-clair); }
.credit__logo { display: block; padding: 4px 7px; background: var(--creme); }
.credit__logo img { width: 46px; height: auto; }

/* ---------- WhatsApp & barre mobile ---------- */

.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  background: var(--noir); border: 1px solid var(--or); color: var(--or-clair);
  font-size: 12.5px; letter-spacing: .04em;
  box-shadow: 0 6px 22px rgba(11, 11, 11, .28);
  transition: background .28s ease, color .28s ease;
}
.whatsapp-float:hover { background: var(--or); color: var(--noir); }
.whatsapp-float svg { width: 16px; height: 16px; }

.mobile-bar { display: none; }

@media (max-width: 720px) {
  .whatsapp-float { display: none; }
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
    background: var(--ivoire); border-top: 2px solid var(--or);
    transform: translateY(110%); transition: transform .3s ease;
  }
  .mobile-bar.is-visible { transform: none; }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 10px; font-size: 13px; letter-spacing: .04em;
  }
  .mobile-bar__wa { border: 1px solid var(--or); color: var(--or-fonce); }
  .mobile-bar__rdv { background: var(--gradient-or); color: var(--noir); }
  .mobile-bar__rdv:hover { color: var(--noir); }
  .mobile-bar svg { width: 16px; height: 16px; }
  .site-footer__bottom { padding-bottom: 72px; }
}
