/* =====================================================================
   Nude & Pure Concept – feuille de style
   Palette relevée sur les maquettes : crème, sable, doré, encre.
   ===================================================================== */

:root {
  --cream: #f7f3ed;
  --cream-2: #f2ede6;
  --sand: #ece4d8;
  --sand-2: #e3d9cb;
  --tan: #d9cdbb;
  --gold: #9c8258;
  --gold-light: #b39a6f;
  --gold-dark: #7a6344;
  --ink: #221a12;
  --text: #3b332b;
  --muted: #6f665c;
  --line: #d9cfbf;
  --white: #fdfbf8;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
  --script: 'La Belle Aurore', 'Segoe Script', cursive;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(80, 60, 30, .10);
  --btn-gradient: linear-gradient(135deg, #b39a6f 0%, #977c54 55%, #7d6444 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--cream);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--ink); margin: 0; line-height: 1.15; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding-inline: 24px; }
.container-narrow { max-width: 760px; }
.only-mobile { display: none !important; }

/* ---------- Icônes ---------- */
.ico { width: 22px; height: 22px; flex: none; }
.ico-xs { width: 14px; height: 14px; }
.ico-btn { width: 16px; height: 16px; margin-left: 6px; }
.ico-lg { width: 30px; height: 30px; }
.ico-xl { width: 40px; height: 40px; }
.ico-heart { width: 22px; height: 22px; display: inline-block; vertical-align: middle; stroke-width: 1.2; }

/* ---------- Typo ---------- */
.eyebrow {
  font-size: 11px; letter-spacing: .38em; text-transform: uppercase; color: var(--gold);
  text-align: center; margin: 0 0 10px;
}
.section-title { font-size: 34px; text-align: center; margin-bottom: 34px; }
.script {
  font-family: var(--script); color: var(--gold-dark); font-size: 26px; line-height: 1.3;
}
.lead { font-size: 15px; color: var(--muted); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 24px; border-radius: 7px; font-size: 14px; font-weight: 500; line-height: 1.2;
  border: 1px solid transparent; white-space: nowrap; transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--btn-gradient); color: #fff; border-color: rgba(120, 95, 60, .4);
  box-shadow: 0 6px 16px rgba(120, 95, 55, .25), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-outline {
  background: rgba(255, 255, 255, .78); color: var(--ink); border-color: #c9bca4;
  box-shadow: 0 4px 12px rgba(90, 70, 40, .08);
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #f4efe8; box-shadow: 0 2px 14px rgba(70, 50, 20, .08);
}
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; gap: 28px; min-height: 70px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.monogram { width: 48px; height: 48px; flex: none; }
.monogram-lg { width: 64px; height: 64px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif); font-size: 17px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
}
.brand-sub {
  font-family: var(--serif); font-size: 9px; letter-spacing: .38em; text-transform: uppercase; color: var(--gold-dark);
  margin-top: 1px; padding-left: .2em;
}
.brand-tag { font-size: 6.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a { font-size: 14px; color: var(--ink); padding: 6px 0; position: relative; }
.main-nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold);
}
.header-cta { margin-left: 8px; }
.menu-toggle, .menu-close {
  display: none; background: none; border: 0; padding: 6px; color: var(--ink);
}
.menu-toggle .ico, .menu-close .ico { width: 28px; height: 28px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 60; background: var(--cream); padding: 16px 24px 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-head .menu-close { display: inline-flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu li a { display: block; font-family: var(--serif); font-size: 22px; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu li a.is-active { color: var(--gold-dark); }

/* ---------- Accueil : héros ---------- */
.hero {
  position: relative; overflow: hidden; min-height: 500px; display: flex; align-items: center;
  background: #ece4d8;
}
.hero::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 62%;
  background: url(../img/hero-desktop.jpg) no-repeat right center / cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 32%); mask-image: linear-gradient(90deg, transparent 0%, #000 32%);
}
.hero::before { display: none; }
.hero-inner { z-index: 1; }
.hero-inner { position: relative; max-width: 1180px; width: 100%; margin: 0 auto; padding: 48px 24px 28px; }
.hero-content { max-width: 560px; }
.hero .eyebrow { text-align: left; font-size: 11px; margin-bottom: 14px; }
.hero-title { font-size: 66px; line-height: .95; letter-spacing: .02em; text-transform: uppercase; }
.hero-title small { display: block; font-size: 42px; letter-spacing: .04em; margin-top: 4px; }
.hero-tagline { font-size: 20px; color: var(--ink); margin: 16px 0 12px; }
.hero-text { font-size: 15px; color: var(--text); max-width: 440px; margin-bottom: 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; white-space: nowrap; margin-top: 44px; font-size: 13px; color: var(--ink); }
.hero-badges li { display: flex; align-items: center; gap: 8px; }
.hero-badges .ico { color: var(--ink); width: 20px; height: 20px; }
.hero-script {
  position: absolute; right: 40px; bottom: 12px; text-align: center; transform: rotate(-8deg);
  font-size: 24px; line-height: 1.15; color: var(--gold-dark);
}
.hero-mobile-title { display: none; }
.hero-badges-mobile { display: none; }

/* ---------- Accueil : intérieur ---------- */
.intro { background: #f3efea; }
.intro-grid { display: grid; grid-template-columns: 40% 1fr; align-items: center; }
.intro-photo { height: 100%; min-height: 230px; background: url(../img/interior-desk.jpg) center / cover no-repeat; }
.intro-body { padding: 36px 60px 36px 64px; }
.intro-body h2 { font-size: 31px; margin-bottom: 18px; }
.intro-body p { font-size: 15px; margin-bottom: 10px; }
.intro-body .script { font-size: 26px; margin-top: 12px; margin-bottom: 0; display: inline-block; }
.script-underline { position: relative; }
.script-underline::after {
  content: ""; display: block; width: 130px; height: 1px; background: var(--gold); margin-top: 4px;
}
.intro-mobile-photo { display: none; }

/* ---------- Accueil : prestations ---------- */
.services { padding: 48px 0 40px; background: #f8f5ef; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.service { padding: 0 28px; border-left: 1px solid var(--line); display: flex; flex-direction: column; }
.service:first-child { border-left: 0; padding-left: 0; }
.service:last-child { padding-right: 0; }
.service-photo { border-radius: 6px; overflow: hidden; height: 105px; margin-bottom: 18px; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-head { display: flex; gap: 14px; }
.service-head .ico { width: 36px; height: 36px; color: var(--gold-dark); margin-top: 2px; }
.service-head h3 {
  font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 4px;
}
.service-head p { font-size: 13.5px; margin-bottom: 14px; }
.service ul { padding-left: 50px; margin-bottom: 18px; }
.service li { font-size: 13.5px; position: relative; padding-left: 14px; line-height: 1.65; }
.service li::before { content: "•"; position: absolute; left: 0; color: var(--ink); }
.service .btn { margin-left: 50px; margin-top: auto; align-self: flex-start; }

/* ---------- Accueil : pourquoi / façon de travailler ---------- */
.why { padding: 20px 0 36px; background: #f6f4f0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.why-item { text-align: center; padding: 0 24px; border-left: 1px solid var(--line); }
.why-item:first-child { border-left: 0; }
.why-item .ico { display: block; width: 36px; height: 36px; color: var(--gold-dark); margin: 0 auto 14px; stroke-width: 1.3; }
.why-item h3 { font-family: var(--sans); font-weight: 600; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.why-item p { font-size: 13.5px; margin: 0; }

.how { padding: 20px 0 46px; background: #f5f2ed; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.how-item { display: flex; gap: 14px; padding: 0 22px; border-left: 1px solid var(--line); }
.how-item:first-child { border-left: 0; padding-left: 0; }
.how-num {
  flex: none; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gold-dark);
}
.how-item h3 { font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--ink); margin: 8px 0 6px; }
.how-item p { font-size: 13px; margin: 0; }

/* ---------- Accueil : bandeau CTA ---------- */
.cta-band {
  background: #e6dfd5 radial-gradient(ellipse at 20% 30%, rgba(255,255,255,.35), transparent 60%);
  padding: 30px 0;
}
.cta-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.cta-item { display: flex; gap: 22px; align-items: flex-start; }
.cta-item > .ico { width: 46px; height: 46px; color: var(--gold-dark); stroke-width: 1.2; margin-top: 4px; }
.cta-item h3 { font-size: 24px; margin-bottom: 4px; }
.cta-item p { font-size: 13.5px; margin-bottom: 16px; }
.cta-mid {
  text-align: center; padding: 10px 40px; border-left: 1px solid #c9bda9; border-right: 1px solid #c9bda9;
  font-size: 24px; line-height: 1.35; transform: rotate(-6deg);
}

/* ---------- Pied de page ---------- */
.site-footer { background: #ebe6df; padding: 40px 0 0; font-size: 13.5px; }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr .9fr 1.5fr 1.2fr .9fr; gap: 24px; align-items: start;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-brand .brand-name { font-size: 21px; margin-top: 8px; }
.footer-brand .brand-sub { font-size: 10px; }
.footer-brand .brand-tag { font-size: 7.5px; }
.footer-col { padding-left: 24px; border-left: 1px solid #d3cbbf; }
.footer-col:nth-child(2) { border-left: 0; }
.footer-col h4 { font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 12px; }
.footer-col li { line-height: 1.7; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact .ico { color: var(--ink); }
.footer-social { display: flex; gap: 18px; margin-top: 14px; }
.footer-social .ico { width: 20px; height: 20px; color: var(--ink); }
.footer-script { text-align: right; transform: rotate(-8deg); font-size: 24px; margin-top: 10px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; padding-bottom: 16px; font-size: 11px; color: var(--muted);
}

/* =====================================================================
   Pages intérieures (structure des maquettes mobiles, centrée sur desktop)
   ===================================================================== */
.page-head { text-align: center; padding: 40px 0 22px; }
.page-head h1 { font-size: 40px; margin-bottom: 8px; }
.page-head .lead { font-size: 15px; color: var(--text); margin: 0; }

/* Cartes prestations (page Nos prestations) */
.presta-list { display: flex; flex-direction: column; gap: 18px; margin-top: 10px; }
.presta-card {
  display: grid; grid-template-columns: 46% 1fr; background: #faf7f2; border-radius: 10px;
  overflow: hidden; box-shadow: var(--shadow); min-height: 230px;
}
.presta-card img { width: 100%; height: 100%; object-fit: cover; }
.presta-card-body { padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; }
.presta-card h2 { font-size: 24px; margin-bottom: 10px; }
.presta-card p { font-size: 14px; margin-bottom: 18px; }
.presta-card .btn { align-self: flex-start; }
.script-center { text-align: center; padding: 44px 0 36px; font-size: 30px; transform: rotate(-4deg); }
.script-center.empty-state { padding: 60px 0 90px; }

/* Héros des pages prestations */
.service-hero {
  position: relative; min-height: 300px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; color: #fff;
}
.service-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(60,45,30,0) 30%, rgba(60,45,30,.55) 100%);
}
.service-hero-inner { position: relative; width: 100%; text-align: center; padding: 40px 24px 26px; }
.service-hero h1 { color: #fff; font-size: 40px; margin-bottom: 6px; }
.service-hero p { margin: 0; font-size: 16px; }
.service-hero--light { color: var(--ink); align-items: center; }
.service-hero--light::before { background: linear-gradient(90deg, rgba(240,234,224,.65), rgba(240,234,224,0) 70%); }
.service-hero--light h1 { color: var(--ink); }
.service-hero--nettoyage { background-image: url(../img/hero-nettoyage.jpg); }
.service-hero--renovation { background-image: url(../img/hero-renovation.jpg); }
.service-hero--decoration { background-image: url(../img/hero-decoration.jpg); }

.icon-row { display: grid; grid-template-columns: repeat(4, 1fr); padding: 22px 0 14px; text-align: center; }
.icon-row li { padding: 4px 6px; border-left: 1px solid var(--line); font-size: 12px; color: var(--ink); }
.icon-row li:first-child { border-left: 0; }
.icon-row .ico { display: block; width: 34px; height: 34px; color: var(--gold-dark); margin: 0 auto 8px; stroke-width: 1.3; }
.icon-row--3 { grid-template-columns: repeat(3, 1fr); }

.card { background: #faf7f2; border-radius: 12px; box-shadow: var(--shadow); padding: 26px 24px; }
.card h2 { font-size: 26px; margin-bottom: 18px; }
.checklist { display: grid; grid-template-columns: 1fr; gap: 8px 20px; }
.checklist--2 { grid-template-columns: 1fr 1fr; }
.checklist li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.4; }
.checklist .ico { width: 16px; height: 16px; color: var(--gold-dark); margin-top: 3px; stroke-width: 2; }
.soft-box {
  background: var(--sand-2); border-radius: 10px; padding: 18px 20px; margin: 24px 0 22px; font-size: 15px; color: var(--ink);
}
.soft-box p { margin: 0; }
.actions-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bottom-photo { margin-top: 28px; height: 220px; background-size: cover; background-position: center; }
.bottom-photo--nettoyage { background-image: url(../img/nettoyage-bottom.jpg); }
.bottom-photo--renovation { background-image: url(../img/renovation-bottom.jpg); }
.bottom-photo--decoration { background-image: url(../img/decoration-bottom.jpg); }

/* Réalisations */
.filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.filters button {
  padding: 9px 20px; border-radius: 8px; border: 1px solid #d6ccbb; background: #faf7f2; color: var(--ink); font-size: 13.5px;
  box-shadow: 0 2px 6px rgba(90,70,40,.06);
}
.filters button.is-active { background: var(--btn-gradient); color: #fff; border-color: transparent; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gallery figure { position: relative; margin: 0; border-radius: 8px; overflow: hidden; aspect-ratio: 3 / 2; box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery .tag {
  position: absolute; bottom: 0; padding: 7px 18px; font-size: 13px; color: var(--ink);
  background: rgba(250, 247, 242, .9); border-radius: 6px 6px 0 0;
}
.gallery .tag--avant { left: 0; border-radius: 0 6px 0 0; }
.gallery .tag--apres { right: 0; background: rgba(40, 36, 32, .85); color: #fff; border-radius: 6px 0 0 0; }

/* À propos */
.about-hero { position: relative; overflow: hidden; }
.about-hero::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 28%;
  background: url(../img/apropos-photo.jpg) center / cover no-repeat; opacity: .9;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 40%); mask-image: linear-gradient(90deg, transparent, #000 40%);
}
.about-hero > * { position: relative; z-index: 1; }
.about-text { max-width: 560px; font-size: 15.5px; line-height: 1.6; }
.about-hero .script { font-size: 32px; margin: 10px 0 26px; display: block; }
.values-card { background: rgba(250, 247, 242, .92); border-radius: 12px; box-shadow: var(--shadow); padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: center; }
.values-card li { font-size: 13.5px; color: var(--ink); }
.values-card .ico { display: block; width: 40px; height: 40px; color: var(--gold-dark); margin: 0 auto 8px; stroke-width: 1.3; }
.about-more { padding: 36px 0 44px; }
.about-more h2 { font-size: 28px; margin-bottom: 12px; }
.about-more p { max-width: 620px; font-size: 15.5px; }

/* Rendez-vous */
.stepper { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); margin-bottom: 18px; }
.stepper li { display: flex; align-items: center; gap: 8px; }
.step-num {
  width: 26px; height: 26px; border-radius: 6px; border: 1.5px solid var(--gold); color: var(--gold-dark);
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600;
}
.stepper .is-active .step-num { background: var(--btn-gradient); color: #fff; border-color: transparent; }
.stepper .is-active { color: var(--ink); }
.card + .card { margin-top: 18px; }
.card h3 { font-family: var(--sans); font-weight: 600; font-size: 16px; color: var(--ink); margin-bottom: 14px; }
.radio-list li { display: flex; align-items: center; gap: 12px; padding: 7px 0; font-size: 15px; }
.radio-list input { width: 20px; height: 20px; accent-color: var(--gold); margin: 0; }
.rdv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.calendar { font-size: 13px; }
.calendar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-weight: 500; color: var(--ink); }
.calendar-head button { background: none; border: 0; color: var(--muted); padding: 4px; }
.calendar-head .ico { width: 18px; height: 18px; }
.calendar table { width: 100%; border-collapse: collapse; text-align: center; }
.calendar th { font-weight: 500; color: var(--ink); padding: 6px 0; font-size: 12px; }
.calendar td { padding: 3px 0; }
.calendar td span { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; color: var(--text); }
.calendar td.is-past span { color: #b9b0a4; }
.calendar td.is-selected span { background: var(--btn-gradient); color: #fff; }
.slots { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.slots button {
  padding: 12px 8px; border-radius: 8px; border: 1px solid #d3c8b6; background: #fbf8f3; font-size: 13.5px; color: var(--ink);
  box-shadow: 0 2px 6px rgba(90,70,40,.05);
}
.rdv-continue { margin: 26px auto 0; display: flex; max-width: 480px; }
.script-rdv { text-align: center; padding: 40px 0; font-size: 26px; line-height: 1.4; transform: rotate(-4deg); }

/* Formulaires */
.form { position: relative; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 13px; color: var(--ink); }
.field .req { color: var(--gold-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border-radius: 8px; border: 1px solid #d3c8b6; background: #fbf8f3; font-size: 14px;
  box-shadow: inset 0 1px 2px rgba(90,70,40,.05);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #a39a8e; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #6f665c 50%), linear-gradient(135deg, #6f665c 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field-file { font-size: 13px; }
.field-file input { padding: 8px; }
.checkbox { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink); }
.checkbox input { width: 18px; height: 18px; accent-color: var(--gold); margin: 0; }
.form-actions { margin-top: 22px; }
.devis-branch {
  position: absolute; right: -24px; bottom: -40px; width: 130px; pointer-events: none; opacity: .95;
}

/* Contact */
.contact-hero { position: relative; overflow: hidden; padding: 36px 0 30px; }
.contact-hero::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 46%;
  background: url(../img/contact-photo.jpg) center / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%); mask-image: linear-gradient(90deg, transparent, #000 45%);
}
.contact-hero > * { position: relative; z-index: 1; }
.contact-hero h1 { font-size: 32px; margin-bottom: 12px; }
.contact-hero .lead { max-width: 380px; margin-bottom: 26px; color: var(--text); }
.contact-list li { display: flex; align-items: center; gap: 16px; font-size: 16px; color: var(--ink); margin-bottom: 14px; }
.contact-list .bubble {
  width: 40px; height: 40px; border-radius: 50%; background: var(--btn-gradient); color: #fff; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-list .bubble .ico { width: 18px; height: 18px; }
.social-dark { display: flex; gap: 14px; margin-top: 22px; }
.social-dark a { width: 44px; height: 44px; border-radius: 50%; background: #2a2521; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.social-dark .ico { width: 22px; height: 22px; }
.contact-form { padding: 30px 0 46px; }
.contact-form h2 { font-size: 28px; margin-bottom: 20px; }
.contact-form .form-actions { text-align: center; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #faf7f2; border-radius: 10px; box-shadow: 0 3px 10px rgba(90,70,40,.06); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 16px 18px; font-size: 14.5px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ico { width: 18px; height: 18px; color: var(--ink); transition: transform .2s; }
.faq-item[open] summary .ico { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 18px 16px; font-size: 14px; color: var(--muted); }
.faq-more { position: relative; padding: 34px 0 60px; }
.faq-more h2 { font-size: 26px; margin-bottom: 6px; }
.faq-more p { margin-bottom: 20px; }
.faq-branch { position: absolute; right: 0; bottom: 0; width: 150px; pointer-events: none; }

/* Mentions légales */
.legal { padding: 30px 0 30px; font-size: 14px; }
.legal h1 { font-size: 28px; text-align: center; margin-bottom: 24px; }
.legal h2 { font-size: 21px; margin: 22px 0 8px; }
.legal p { margin: 0; line-height: 1.6; }
.legal p.small { font-size: 12.5px; color: var(--muted); }
.script-end { text-align: center; padding: 30px 0 40px; font-size: 28px; transform: rotate(-4deg); }

/* =====================================================================
   Mobile (maquettes téléphone)
   ===================================================================== */
@media (max-width: 860px) {
  .only-mobile { display: block !important; }
  .only-desktop { display: none !important; }
  .container { padding-inline: 18px; }

  /* En-tête */
  .header-inner { padding: 8px 16px; min-height: 64px; gap: 12px; }
  .brand { justify-content: center; flex: 1; }
  .monogram { width: 52px; height: 52px; }
  .brand-name { font-size: 16px; }
  .brand-text { align-items: center; text-align: center; }
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }

  /* Héros accueil */
  .hero {
    display: block; min-height: 0; background: var(--sand-2);
  }
  .hero::after { display: none; }
  .hero-inner { padding: 0 0 26px; }
  .hero-photo-mobile {
    display: block; height: 250px; background: url(../img/hero-mobile.jpg) center top / cover no-repeat;
    -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%); mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
  }
  .hero-content { max-width: none; text-align: center; padding: 0 18px; margin-top: -30px; }
  .hero .eyebrow, .hero-title, .hero-text { display: none; }
  .hero-mobile-title { display: block; font-size: 36px; line-height: 1.12; }
  .hero-tagline { font-size: 17px; margin: 10px 0 18px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-actions .btn { padding: 13px 8px; font-size: 13.5px; }
  .hero-badges { display: none; }
  .hero-script { display: none; }
  .hero-badges-mobile {
    display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; margin: 18px 12px 0; font-size: 11.5px; white-space: nowrap; color: var(--ink);
  }
  .hero-badges-mobile li { border-left: 1px solid #c9bea9; padding: 4px 4px; }
  .hero-badges-mobile li:first-child { border-left: 0; }
  .hero-badges-mobile .ico { display: block; width: 28px; height: 28px; color: var(--gold-dark); margin: 0 auto 6px; }

  /* Intérieur */
  .intro { background: var(--cream) url(../img/home-bottom.jpg) center bottom / 100% auto no-repeat; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-photo { display: none; }
  .intro-body { padding: 26px 18px 120px; }
  .intro-body h2 { font-size: 23px; text-align: center; white-space: nowrap; }
  .intro-body p { font-size: 15px; }
  .intro-body .script { display: block; text-align: center; font-size: 24px; margin-top: 18px; }
  .script-underline::after { display: none; }

  /* Prestations / pourquoi / comment */
  .services { padding: 36px 0 30px; }
  .services-grid { grid-template-columns: 1fr; gap: 30px; }
  .service { padding: 0; border-left: 0; }
  .service-photo { height: 170px; }
  .section-title { font-size: 27px; }
  .why-grid, .how-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .why-item { padding: 0 12px; }
  .why-item:nth-child(3) { border-left: 0; }
  .how-item { padding: 0 12px; }
  .how-item:nth-child(3) { border-left: 0; }

  /* Bandeau CTA */
  .cta-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-mid { border: 0; border-top: 1px solid #c9bda9; border-bottom: 1px solid #c9bda9; padding: 14px; transform: none; }

  /* Pied de page */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col { padding-left: 0; border-left: 0; }
  .footer-script { grid-column: 1 / -1; text-align: center; transform: none; }
  .footer-bottom { justify-content: center; text-align: center; }

  /* Pages intérieures */
  .page-head { padding: 26px 0 18px; }
  .page-head h1 { font-size: 34px; }
  .presta-card { grid-template-columns: 46% 1fr; min-height: 210px; }
  .presta-card-body { padding: 18px 14px 18px 16px; }
  .presta-card h2 { font-size: 21px; }
  .presta-card p { font-size: 13px; }
  .script-center { font-size: 26px; padding: 34px 0 26px; }

  .service-hero { min-height: 250px; }
  .service-hero h1 { font-size: 34px; }
  .service-hero p { font-size: 15px; }
  .icon-row li { font-size: 11px; }
  .card { padding: 22px 18px; }
  .card h2 { font-size: 23px; }
  .checklist--2 { gap: 8px 12px; }
  .checklist li { font-size: 13.5px; }
  .bottom-photo { height: 130px; }

  .gallery { gap: 12px; }
  .about-hero::after { width: 34%; }
  .about-text { font-size: 14.5px; max-width: 70%; }
  .about-hero .script { max-width: 70%; }
  .values-card { padding: 20px 14px; gap: 18px; }
  .about-more h2 { font-size: 25px; }

  .rdv-grid { grid-template-columns: 1fr; }
  .form-grid { gap: 14px 12px; }
  .devis-branch { width: 100px; right: -18px; bottom: -30px; }
  .contact-hero::after { width: 60%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 55%); mask-image: linear-gradient(90deg, transparent, #000 55%); }
  .contact-hero h1 { font-size: 28px; }
  .contact-list li { font-size: 15px; }
  .faq-branch { width: 120px; }
}

@media (max-width: 420px) {
  .hero-mobile-title { font-size: 32px; }
  .icon-row .ico { width: 30px; height: 30px; }
}

.slots button.is-active { background: var(--btn-gradient); color: #fff; border-color: transparent; }

/* Ajustements mobiles complémentaires */
.nowrap { white-space: nowrap; }
@media (max-width: 860px) {
  .actions-2 .btn { white-space: normal; padding: 12px 6px; font-size: 13px; }
  .filters { flex-wrap: nowrap; gap: 8px; }
  .filters button { padding: 8px 10px; font-size: 12.5px; white-space: nowrap; flex: 1; }
  .about-text { max-width: 64%; }
  .about-hero .script { font-size: 26px; max-width: 64%; }
  .stepper { gap: 8px; font-size: 10px; white-space: nowrap; flex-wrap: nowrap; }
  .stepper li { gap: 5px; }
  .step-num { width: 20px; height: 20px; font-size: 10px; border-radius: 5px; }
  .page-rendez-vous .page-head h1 { font-size: 30px; }
  .contact-hero h1 { font-size: 26px; }
  .contact-hero .lead { max-width: 250px; }
  .faq-item summary { font-size: 13px; padding: 14px 16px; }
  .script-center, .script-rdv { font-size: 24px; }
}


/* ---------- Formulaires fonctionnels ---------- */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-notice { border-radius: 10px; padding: 14px 18px; font-size: 14.5px; margin: 0 0 20px; }
.form-notice--ok { background: #eef5ea; color: #3f6b46; border: 1px solid #cfe3c8; }
.form-notice--err { background: #fbeceb; color: #8d3f3b; border: 1px solid #f0cfcc; }
.field label small { color: var(--muted); font-weight: 400; }
.calendar td.is-free span { cursor: pointer; background: #f3ede4; color: var(--ink); font-weight: 500; }
.calendar td.is-free span:hover { background: var(--tan); }
.calendar td.is-today span { box-shadow: inset 0 0 0 1.5px var(--gold-light); }
.calendar td.is-selected span, .calendar td.is-selected.is-free span { background: var(--btn-gradient); color: #fff; }
.calendar-head button:disabled { opacity: .3; cursor: default; }
.calendar-loading { color: var(--muted); font-size: 12.5px; padding: 30px 0 !important; }
.slots-hint { grid-column: 1 / -1; font-size: 13px; color: var(--muted); }
.rdv-summary { font-size: 14px; color: var(--gold-dark); margin: -6px 0 16px; font-weight: 500; }
.rdv-done { text-align: center; padding: 40px 24px; }
.rdv-done h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; }
#rdv-error { margin-top: 18px; }

/* ---------- Bandeau newsletter ---------- */
.nl-popup { position: fixed; inset: 0; z-index: 80; background: rgba(40, 30, 22, .42); display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(3px); animation: nl-in .35s ease; }
.nl-popup[hidden] { display: none; }
@keyframes nl-in { from { opacity: 0; } to { opacity: 1; } }
.nl-card { position: relative; background: var(--cream); border-radius: 18px; padding: 38px 34px 28px; max-width: 440px; width: 100%; text-align: center; box-shadow: 0 30px 80px rgba(60, 40, 20, .3); }
.nl-card::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(156, 130, 88, .35); border-radius: 12px; pointer-events: none; }
.nl-close { position: absolute; top: 14px; right: 14px; background: none; border: 0; color: var(--muted); padding: 6px; cursor: pointer; }
.nl-close .ico { width: 18px; height: 18px; }
.nl-card .monogram { margin: 0 auto 8px; }
.nl-kicker { font-size: 10.5px; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.nl-card h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; color: var(--ink); margin-bottom: 10px; line-height: 1.15; }
.nl-text { font-size: 14px; color: var(--text); margin-bottom: 18px; }
.nl-form { display: flex; gap: 8px; }
.nl-form input { flex: 1; min-width: 0; padding: 12px 14px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); }
.nl-form .btn { white-space: nowrap; }
.nl-thanks { color: var(--gold-dark); font-weight: 500; width: 100%; padding: 10px 0; }
.nl-legal { font-size: 11px; color: var(--muted); margin-top: 12px; }
.nl-script { font-size: 24px; margin-top: 12px; transform: rotate(-3deg); }
@media (max-width: 480px) { .nl-form { flex-direction: column; } .nl-card { padding: 34px 22px 24px; } .nl-card h3 { font-size: 26px; } }

/* ---------- Fichier partagé ---------- */
.file-preview { text-align: center; }
.file-preview img { max-width: 100%; max-height: 70vh; border-radius: 8px; margin-bottom: 20px; }
.file-preview iframe { width: 100%; height: 70vh; border: 0; border-radius: 8px; margin-bottom: 20px; background: #fff; }
.file-icon .ico { width: 64px; height: 64px; color: var(--gold); margin-bottom: 16px; }
