/* =========================================================================
   LINA ASIA SPA — Feuille de style principale
   Esthétique : spa zen, rose/magenta du logo, neutres chauds, élégance.
   Performance : variables CSS, pas de framework, polices auto-hébergées.
   ========================================================================= */

/* --- Polices auto-hébergées (RGPD-friendly, rapides) -------------------- */
@font-face {
  font-family: 'Cormorant';
  src: url('/assets/fonts/cormorant-garamond-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('/assets/fonts/cormorant-garamond-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('/assets/fonts/cormorant-garamond-500italic.woff2') format('woff2');
  font-weight: 500; font-style: italic; font-display: swap;  /* vraie italique (plus de faux italique) */
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* --- Variables --------------------------------------------------------- */
:root {
  --rose:        #b14a7e;
  --rose-deep:   #7e3357;
  --rose-soft:   #e9cdda;
  --rose-tint:   #f7ecf1;
  --gold:        #bf9d63;
  --gold-soft:   #e7d8b9;
  --ink:         #2e2730;
  --ink-soft:    #5b515c;
  --muted:       #6f6573;
  --line:        #ece2dc;
  --cream:       #fbf6f2;
  --sand:        #f4ece5;
  --white:       #ffffff;

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

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(70, 40, 55, .06);
  --shadow:    0 18px 50px -22px rgba(80, 40, 60, .28);
  --shadow-lg: 0 40px 90px -40px rgba(80, 40, 60, .42);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

/* --- Focus clavier visible (accessibilité WCAG 2.4.7) ------------------ */
:focus-visible { outline: 3px solid var(--rose); outline-offset: 2px; border-radius: 4px; }
/* Sur fonds sombres (héros, en-têtes colorés), anneau blanc */
.hero :focus-visible, .page-hero :focus-visible, .cta-band :focus-visible,
.site-header:not(.is-solid):not(.is-light) .nav a:focus-visible,
.cal__head :focus-visible, .modal__header :focus-visible,
.modal__close:focus-visible { outline-color: #fff; } /* le ✕ est un frère du header, pas un descendant */
/* Les jours réservables du calendrier */
.day--free:focus-visible { outline: 3px solid var(--rose-deep); outline-offset: 2px; z-index: 1; }
/* Ne pas afficher l'anneau au clic souris uniquement (focus-visible le gère déjà) */
:focus:not(:focus-visible) { outline: none; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* --- Typographie ------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--ink); letter-spacing: .2px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-block;
}
.script {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose);
  font-weight: 500;
}

/* --- Layout ------------------------------------------------------------ */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 820px; margin-inline: auto; padding-inline: var(--gut); }
section { position: relative; }
.section { padding-block: clamp(64px, 10vw, 130px); }
.section--sand { background: var(--sand); }
.section--rose { background: var(--rose-tint); }
/* Eyebrow : --rose tombe à ~4.3:1 sur ces fonds teintés -> --rose-deep (~7:1) */
.section--sand .eyebrow,
.section--rose .eyebrow { color: var(--rose-deep); }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.sec-head { max-width: 660px; }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin-top: 12px; }
.sec-head p { margin-top: 18px; }
.divider { width: 56px; height: 2px; background: var(--gold); border: 0; margin: 22px 0; }
.center .divider { margin-inline: auto; }

/* --- Boutons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 600; font-size: .92rem;
  letter-spacing: .04em;
  padding: 15px 30px; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--rose); color: #fff; box-shadow: 0 14px 30px -12px rgba(177,74,126,.6); }
.btn--primary:hover { background: var(--rose-deep); box-shadow: 0 18px 38px -12px rgba(126,51,87,.7); }
.btn--ghost { border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #a8884f; }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 11px 28px; font-size: .82rem; }

/* --- Header ------------------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 16px;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 58px; width: auto; transition: height .4s var(--ease); }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: .86rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; position: relative; padding: 6px 0; transition: color .25s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--rose); transition: right .3s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { right: 0; }
/* Le bouton « Prendre RDV » du menu garde son padding de pilule (sinon « .nav a » l'écrase) */
.nav a.btn { padding: 11px 28px; }
.nav a.btn::after { content: none; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 500; font-size: .9rem; }

/* État "scrollé" / pages claires */
.site-header.is-solid, .site-header.is-light {
  background: rgba(251,246,242,.92); backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px -16px rgba(80,40,60,.3); padding-block: 10px;
}
.site-header.is-solid .nav a, .site-header.is-light .nav a,
.site-header.is-solid .header-phone, .site-header.is-light .header-phone { color: var(--ink); }
/* Le bouton « Prendre RDV » garde son texte blanc même header scrollé/clair */
.site-header.is-solid .nav a.btn--primary,
.site-header.is-light .nav a.btn--primary { color: #fff; }
.site-header.is-solid .brand img, .site-header.is-light .brand img { height: 50px; }

/* Burger */
.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; position: relative; }
.burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; transition: .3s var(--ease); }
.burger span:nth-child(1) { top: 15px; } .burger span:nth-child(2) { top: 21px; } .burger span:nth-child(3) { top: 27px; }
.is-solid .burger span, .is-light .burger span { background: var(--ink); }
body.menu-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
body.menu-open .burger span { background: var(--ink); }

/* --- Hero -------------------------------------------------------------- */
.hero { position: relative; min-height: 80svh; display: grid; align-items: center; color: #fff; overflow: hidden; }
.hero--page { min-height: 64vh; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(40,25,35,.55) 0%, rgba(40,25,35,.32) 40%, rgba(46,28,40,.62) 100%);
}
.hero__inner { padding-block: 120px; max-width: 760px; }
.hero .eyebrow { color: var(--rose-soft); }
.hero h1 { color: #fff; margin: 18px 0 0; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero__tagline { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem,2.6vw,1.9rem); color: #fff; opacity: .96; margin-top: 14px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero__scroll { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); color: #fff; opacity: .8; font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; display: grid; justify-items: center; gap: 8px; }
.hero__scroll::after { content: ''; width: 1px; height: 38px; background: rgba(255,255,255,.6); animation: scrollline 2s var(--ease) infinite; }
@keyframes scrollline { 0%,100%{transform:scaleY(.4);opacity:.4} 50%{transform:scaleY(1);opacity:1} }

.page-hero { position: relative; color: #fff; text-align: center; display: grid; place-items: center; min-height: clamp(440px, 60vh, 620px); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--hpos, center); }
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(40,25,35,.45), rgba(46,28,40,.6)); }
.page-hero__inner { padding: 130px var(--gut) 60px; }
.page-hero h1 { color: #fff; margin-top: 10px; }
.breadcrumb { margin-top: 16px; font-size: .82rem; letter-spacing: .08em; color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* --- Intro / split ----------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 84px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.media-frame { position: relative; }
.media-frame::before {
  content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 1.5px solid var(--gold-soft);
  border-radius: var(--radius); z-index: -1;
}
.stat-badge {
  position: absolute; right: -18px; bottom: 24px; background: #fff; border-radius: var(--radius-sm);
  padding: 16px 22px; box-shadow: var(--shadow); text-align: center;
}
.stat-badge b { font-family: var(--serif); font-size: 1.9rem; color: var(--rose); display: block; line-height: 1; }
.stat-badge span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* --- Cartes valeurs ---------------------------------------------------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* --- Liste de règles (page Réserver) ---------------------------------- */
.rules-list { list-style: none; margin: 18px 0 0; padding: 0; }
.rules-list li {
  position: relative; padding-left: 30px; margin-bottom: 16px;
  line-height: 1.62; color: var(--muted);
}
.rules-list li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(184, 154, 100, .14);
}
.rules-list li:last-child { margin-bottom: 0; }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 38px);
  margin-top: 86px;
}
.value-card {
  position: relative; background: #fff; border-radius: var(--radius);
  padding: 92px 34px 42px; text-align: center;
  box-shadow: 0 12px 34px -16px rgba(140,80,110,.22);
  border: 1px solid rgba(191,157,99,.18);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 54px -20px rgba(140,80,110,.32);
  border-color: rgba(191,157,99,.4);
}

/* Médaillon photo rond qui chevauche le haut de la carte */
.value-card__medallion {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  width: 130px; height: 130px; border-radius: 50%; padding: 6px;
  background: #fff;
  box-shadow: 0 14px 30px -12px rgba(140,80,110,.45);
}
.value-card__medallion::after {
  content: ''; position: absolute; inset: -7px; border-radius: 50%;
  border: 1.5px solid var(--gold-soft);
  transition: inset .5s var(--ease), border-color .5s var(--ease);
}
.value-card__medallion img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block;
}
.value-card:hover .value-card__medallion::after { inset: -12px; border-color: var(--gold); }
.value-card:hover .value-card__medallion { transform: translate(-50%, -54%); }

.value-card h3 { font-size: 1.28rem; margin-bottom: 0; }
.value-card__line {
  display: block; width: 38px; height: 2px; margin: 15px auto 16px;
  background: linear-gradient(90deg, var(--gold), var(--rose)); border-radius: 2px;
}
.value-card p { font-size: .96rem; line-height: 1.75; color: var(--ink-soft); }

/* --- Services ---------------------------------------------------------- */
.svc-list { display: grid; gap: 0; }
.svc-row {
  display: grid; grid-template-columns: 1fr auto; gap: 16px 28px; align-items: baseline;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.svc-row__name { font-family: var(--serif); font-size: 1.45rem; color: var(--ink); }
.svc-row__dur { color: var(--muted); font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; margin-left: 12px; }
.svc-row__price { font-family: var(--serif); font-size: 1.6rem; color: var(--rose); white-space: nowrap; }
.svc-row__price small { font-size: 1rem; }
.svc-cat { margin: 40px 0 6px; }
.svc-cat:first-child { margin-top: 0; }

.svc-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.svc-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; display: grid; align-items: end; color: #fff; box-shadow: var(--shadow); }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); z-index: -2; }
.svc-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(40,25,35,.8)); }
.svc-card:hover img { transform: scale(1.06); }
.svc-card__body { padding: 30px; }
.svc-card__body h3 { color: #fff; }
.svc-card__body p { color: rgba(255,255,255,.85); font-size: .95rem; margin-top: 6px; }
.svc-card__price { font-family: var(--serif); color: var(--gold-soft); font-size: 1.2rem; margin-top: 10px; }

/* --- Bandeau citation / CTA — parallax par fond fixe (CSS pur, fiable) -- */
.cta-band {
  position: relative; color: #fff; text-align: center; overflow: hidden;
  background-image: url('/assets/img/cta-band.webp');
  background-size: cover; background-position: center center; background-repeat: no-repeat;
  background-attachment: fixed;
}
/* Mobile / écrans tactiles : pas de parallaxe (background-attachment:fixed = saccades + ignoré
   par iOS Safari) et image de fond plus légère (variante -768). */
@media (max-width: 980px), (hover: none) {
  .cta-band { background-attachment: scroll; background-image: url('/assets/img/cta-band-768.webp'); }
}
.cta-band::after { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(126,51,87,.78), rgba(46,28,40,.82)); }
.cta-band .wrap { position: relative; z-index: 1; padding-block: clamp(70px, 11vw, 140px); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); }

/* Bandeau séparateur « bougies » : voile allégé pour laisser la chaleur de l'image,
   + ombre portée sur le texte pour garder une bonne lisibilité du blanc. */
.cta-band--bougies { background-image: url('/assets/img/spa-bougies.webp'); }
.cta-band--bougies::after { background: linear-gradient(180deg, rgba(40,25,35,.42), rgba(40,25,35,.58)); }
.cta-band--bougies .quote,
.cta-band--bougies .quote cite { text-shadow: 0 1px 3px rgba(0,0,0,.6), 0 2px 18px rgba(0,0,0,.5); }
@media (max-width: 980px), (hover: none) {
  .cta-band--bougies { background-image: url('/assets/img/spa-bougies-768.webp'); }
}

.quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem,3vw,2.3rem); line-height: 1.4; color: #fff; }
.quote cite { display: block; font-style: normal; font-family: var(--sans); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-top: 22px; }

/* --- Blog -------------------------------------------------------------- */
.posts { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.post-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__img { aspect-ratio: 3/2; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .post-card__img img { transform: scale(1.06); }
.post-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.post-card h3 { font-size: 1.4rem; line-height: 1.2; }
.post-card p { font-size: .95rem; margin: 12px 0 18px; flex: 1; }
.readmore { font-weight: 600; font-size: .85rem; letter-spacing: .06em; color: var(--rose); display: inline-flex; gap: .4em; align-items: center; }
.readmore::after { content: '→'; transition: transform .3s var(--ease); }
.post-card:hover .readmore::after { transform: translateX(4px); }

/* Article */
.article { max-width: 760px; margin-inline: auto; padding-inline: var(--gut); }
.article__body { font-size: 1.08rem; }
.article__body h2 { font-size: clamp(1.5rem,3vw,2rem); margin: 38px 0 14px; color: var(--rose-deep); }
.article__body p { margin-bottom: 18px; }
.article__body ul { margin: 0 0 18px; padding-left: 0; }
.article__body li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--ink-soft); }
.article__body li::before { content: ''; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.article__body em { color: var(--ink-soft); }

/* --- Témoignages ------------------------------------------------------- */
.testi { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.testi-card { background: #fff; border-radius: var(--radius); padding: 34px 30px; border: 1px solid var(--line); }
.testi-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.testi-card p { font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--ink); line-height: 1.5; }
.testi-card .who { margin-top: 18px; font-weight: 600; font-size: .92rem; }
.testi-card .who span { display: block; color: var(--muted); font-weight: 400; font-size: .82rem; }

/* --- Contact ----------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,5vw,64px); align-items: start; }
.info-list { display: grid; gap: 24px; margin-top: 28px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--rose-tint); color: var(--rose); display: grid; place-items: center; }
.info-item h3 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 600; }
.info-item a, .info-item p { color: var(--ink); font-size: 1.05rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); min-height: 340px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* --- FAQ (accordéon accessible, sans JS) ------------------------------- */
.faq { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-family: var(--serif); font-size: 1.22rem; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--rose); font-size: 1.6rem; font-family: var(--sans); line-height: 1; flex: none; transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__a { padding: 0 22px 20px; color: var(--ink-soft); }
.faq-item__a p { font-size: 1rem; }

/* --- Formulaires ------------------------------------------------------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .06em; color: var(--ink); margin-bottom: 7px; }
.field .req { color: var(--rose); }
.input, .textarea, select.input {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); font-family: var(--sans); font-size: 1rem; transition: border .25s, box-shadow .25s;
}
.input:focus, .textarea:focus, select.input:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px rgba(177,74,126,.12); }
.textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field small.err { color: #c0392b; font-size: .8rem; display: none; margin-top: 5px; }
.field.has-error .input, .field.has-error .textarea { border-color: #c0392b; }
.field.has-error small.err { display: block; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-card { background: #fff; border-radius: var(--radius); padding: clamp(26px,4vw,42px); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 14px; }

/* --- Newsletter -------------------------------------------------------- */
.newsletter { display: flex; gap: 12px; max-width: 460px; }
.newsletter .input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color: #fff; }
.newsletter .input::placeholder { color: rgba(255,255,255,.6); }

/* --- Footer ------------------------------------------------------------ */
.site-footer { background: #251b22; color: #cbbcc6; padding-block: 70px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { font-family: var(--sans); color: #fff; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #cbbcc6; transition: color .25s; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 72px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: #a89aa3; font-size: .95rem; }
.footer-links li { margin-bottom: 11px; }
.footer-contact li { margin-bottom: 12px; display: flex; gap: 10px; color: #cbbcc6; font-size: .95rem; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.socials a:hover { background: var(--rose); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: #9f929b; } /* 5.32:1 sur #251b22 (était #8c7f88 = 4.37:1) */
.footer-bottom a:hover { color: #fff; }

/* --- Animations d'apparition ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll::after { animation: none; }
}

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 980px) {
  .grid-3, .posts, .testi { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-cards { grid-template-columns: 1fr 1fr; }
}
/* Overlay du menu mobile (caché par défaut) */
.nav-overlay { display: none; }
/* Bloc contact du menu mobile : masqué sur desktop */
.nav-contact { display: none; }
/* En-tête de marque du panneau mobile : masqué sur desktop */
.nav-head { display: none; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .header-phone { display: none; }
  .burger { display: block; position: relative; z-index: 130; }
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header { z-index: 200; }
  /* Header neutralisé quand le menu est ouvert.
     IMPORTANT : on retire aussi backdrop-filter, sinon il crée un « containing block »
     qui réduit le panneau et l'overlay (position:fixed) à la hauteur du header. */
  body.menu-open .site-header.is-solid,
  body.menu-open .site-header {
    background: transparent; box-shadow: none;
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  /* Le logo de la page laisse place à l'en-tête du panneau */
  body.menu-open .brand { opacity: 0; visibility: hidden; transition: opacity .2s; }

  /* La navigation devient un panneau latéral */
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 350px);
    flex-direction: column; align-items: stretch; gap: 0;
    background: linear-gradient(180deg, #fff, var(--cream) 22%);
    padding: max(14px, env(safe-area-inset-top)) max(28px, env(safe-area-inset-right)) max(36px, env(safe-area-inset-bottom)) 28px;
    box-shadow: -24px 0 70px -24px rgba(80, 40, 60, .45);
    transform: translateX(100%); visibility: hidden;
    transition: transform .4s var(--ease), visibility 0s .4s; /* masqué (hors tab order/AT) une fois refermé */
    z-index: 110; overflow-y: auto; max-height: 100svh;
  }
  body.menu-open .nav { transform: none; visibility: visible; transition: transform .4s var(--ease), visibility 0s 0s; }

  /* En-tête de marque en haut du panneau, aligné avec la croix de fermeture */
  .nav-head {
    display: flex; align-items: center; min-height: 60px;
    font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
    color: var(--rose-deep); letter-spacing: .015em;
    padding-right: 52px; margin-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav > a { color: var(--ink); font-size: 1.05rem; letter-spacing: .04em; text-transform: none; padding: 15px 2px; border-bottom: 1px solid var(--line); width: 100%; transition: color .2s, padding-left .2s; }
  /* Préfixe body.menu-open : prend le pas sur « .site-header.is-solid .nav a » quand on est scrollé */
  body.menu-open .nav > a:hover { color: var(--rose); padding-left: 6px; }
  body.menu-open .nav > a.is-active { color: var(--rose-deep); font-weight: 600; }
  .nav > a::after { display: none; }
  .nav .btn { margin-top: 20px; width: 100%; justify-content: center; color: #fff; }

  /* Bloc contact en bas du menu mobile */
  .nav-contact { display: block; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
  .nav-contact__title { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .18em; color: var(--rose); margin-bottom: 16px; }
  .nav-contact__row { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); font-size: .92rem; line-height: 1.5; margin-bottom: 13px; border: 0 !important; padding: 0 !important; width: auto; text-transform: none; letter-spacing: normal; }
  .nav-contact__row svg { flex: none; color: var(--rose); margin-top: 1px; }
  a.nav-contact__row { color: var(--ink); font-weight: 600; }
  a.nav-contact__row:hover { color: var(--rose); }
  .nav-contact__socials { display: flex; gap: 12px; margin-top: 18px; }
  .nav-contact__socials a { width: 42px; height: 42px; border-radius: 50%; background: var(--rose-tint); color: var(--rose); display: grid; place-items: center; border: 0 !important; padding: 0 !important; }
  .nav-contact__socials a:hover { background: var(--rose); color: #fff; }

  .nav-overlay { display: block; position: fixed; inset: 0; background: rgba(40, 25, 35, .45); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 105; }
  body.menu-open .nav-overlay { opacity: 1; visibility: visible; }

  .split, .grid-3, .grid-2, .posts, .testi, .contact-grid, .svc-cards, .footer-grid, .field-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; margin-top: 76px; gap: 64px; }
  .value-card { padding: 82px 30px 36px; }
  .value-card__medallion { width: 116px; height: 116px; }
  .split--reverse .split__media { order: 0; }
  .media-frame::before { display: none; }
  .stat-badge { right: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 4px; }
  .svc-row__price { font-size: 1.35rem; }
  .newsletter { flex-direction: column; }
  .hero__actions .btn { flex: 1; justify-content: center; }
}

/* --- Utilitaires ------------------------------------------------------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-rose { color: var(--rose); }
[hidden] { display: none !important; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; }
