/* ==========================================================================
   CÉRAM 83 — Laboratoire dentaire à Toulon
   v3 — « Atelier de précision » : premium, minimaliste, éditorial
   ========================================================================== */

:root {
  /* Palette : 3 tons + neutres chauds (navy / porcelaine / rouge) */
  --navy: #102a4c;
  --navy-deep: #0b1f3a;
  --ink: #161b22;
  --muted: #5f6b7a;
  --bg: #faf8f4;          /* porcelaine chaude */
  --bg-alt: #ede6da;      /* sable (un peu plus marqué pour le rythme) */
  --white: #ffffff;
  --red: #be1622;
  --red-dark: #9c111b;
  --gold: #c2a36b;        /* laiton chaud — accent premium sur fonds navy */
  --gold-soft: #d8c49a;
  --line: #e6e0d6;
  --line-strong: #d8d0c2;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Mulish", "Segoe UI", sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 10px -4px rgba(16, 42, 76, .12);
  --shadow: 0 30px 60px -32px rgba(11, 31, 58, .35);
  --ease: cubic-bezier(.22, 1, .36, 1);

  --pad-x: clamp(1.25rem, 5vw, 4rem);
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--navy); color: #fff; }

/* ==========================================================================
   TYPOGRAPHIE & STRUCTURE
   ========================================================================== */

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.wrap--narrow { max-width: 860px; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy {
  position: relative;
  background:
    radial-gradient(1000px 600px at 82% -20%, rgba(194,163,107,.16), transparent 55%),
    radial-gradient(800px 500px at 0% 120%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(160deg, var(--navy-deep), var(--navy) 60%, #15356b);
  color: #fff;
  overflow: hidden;
}
/* texture pointillée très subtile sur les sections sombres */
.section--navy::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.section--navy > * { position: relative; z-index: 1; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--red);
  flex: none;
}
.eyebrow--center { justify-content: center; }
.section--navy .eyebrow { color: var(--gold-soft); }
.section--navy .eyebrow::before { background: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -.015em;
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 1.1rem; }
h2 em, h1 em { font-style: italic; font-weight: 300; }
.section--navy h2 em, .cta-band h2 em { color: var(--gold-soft); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--muted);
  max-width: 58ch;
  font-weight: 400;
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s, border-color .35s, transform .35s var(--ease), box-shadow .35s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 14px 30px -14px rgba(190, 22, 34, .6); }
.btn--primary:hover { background: var(--red-dark); box-shadow: 0 18px 38px -14px rgba(190, 22, 34, .6); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-deep); }
.btn--outline { border-color: var(--line-strong); color: var(--navy); background: transparent; }
.btn--outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--bg-alt); }
.btn--full { width: 100%; }

.section--navy .btn--outline { border-color: rgba(255,255,255,.4); color: #fff; }
.section--navy .btn--outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* Liens fléchés */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--red);
  text-decoration: none;
}
.arrow-link svg { transition: transform .35s var(--ease); }
.arrow-link:hover svg { transform: translateX(5px); }

/* Apparitions */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .img-zoom img, .media-fill img { transition: none !important; }
}

/* Traitement d'images : cadre + zoom doux au survol */
.media { overflow: hidden; border-radius: var(--radius-lg); }
.img-zoom { overflow: hidden; border-radius: var(--radius-lg); }
/* Toutes les images encadrées remplissent leur conteneur */
.media img,
.img-zoom img,
.hero__visual img,
.feature__media img,
.smile__media img,
.scard--feature .scard__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-zoom img { transition: transform 1.2s var(--ease); }
.img-zoom:hover img { transform: scale(1.05); }

/* ==========================================================================
   HEADER
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background .4s, backdrop-filter .4s;
}
.nav.is-scrolled {
  border-color: var(--line);
  background: rgba(250, 248, 244, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: padding .4s;
}
.nav.is-scrolled .nav__inner { padding-top: .8rem; padding-bottom: .8rem; }

.nav__logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--navy); }
.nav__tooth { width: 27px; height: 27px; color: var(--red); }
.nav__name { font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; letter-spacing: .04em; color: var(--navy); }
.nav__name em { font-style: normal; font-weight: 300; color: var(--red); }

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.3vw, 2.1rem); }
.nav__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  opacity: .82;
  position: relative;
  transition: opacity .25s, color .25s;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1.5px; background: var(--red);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.is-active { opacity: 1; color: var(--red); }

.nav__cta {
  padding: .58rem 1.25rem; background: var(--navy); color: #fff !important;
  border-radius: var(--radius); opacity: 1 !important; transition: background .3s;
}
.nav__cta:hover { background: var(--red); }
.nav__cta::after { display: none; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav__burger span { width: 24px; height: 2px; background: var(--navy); transition: transform .35s var(--ease), opacity .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO — éditorial : grand titre + image « musée » + chip flottant
   ========================================================================== */

.hero {
  padding: clamp(4.5rem, 8vw, 7rem) 0 0;
  margin-top: -76px;          /* la teinte passe sous l'en-tête transparent */
  position: relative; overflow: hidden;
  background: linear-gradient(172deg, #e7ddca 0%, #efe7d8 38%, var(--bg) 88%);
}
/* profondeur : grand halo chaud + forme teintée derrière le portrait */
.hero::before {
  content: ""; position: absolute; z-index: 0;
  top: -12%; right: -8%; width: 52%; height: 120%;
  background: radial-gradient(closest-side, rgba(194,163,107,.22), rgba(194,163,107,.05) 60%, transparent 75%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.hero__kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .76rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.6rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.025em;
  margin-bottom: 1.5rem;
}
.hero h1 strong { font-weight: 500; }
.hero h1 em { color: var(--red); font-weight: 300; }

.hero__sub { color: var(--muted); font-size: 1.1rem; max-width: 46ch; margin-bottom: 2.3rem; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }

.hero__visual { position: relative; }
.hero__visual .img-zoom { aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.hero__visual::before {
  content: ""; position: absolute; inset: auto auto -1.4rem -1.4rem;
  width: 62%; height: 62%; border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  z-index: -1;
}

.hero__chip {
  position: absolute; left: -1.6rem; top: 2rem;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero__chip strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--navy); line-height: 1; }
.hero__chip span { font-size: .76rem; font-weight: 600; color: var(--muted); line-height: 1.3; max-width: 13ch; }

/* Bande de réassurance */
.trustbar { border-top: 1px solid var(--line); margin-top: clamp(3rem, 6vw, 5rem); }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trustbar__item {
  padding: 1.7rem 1.2rem; border-right: 1px solid var(--line);
  display: flex; align-items: center; gap: .8rem;
}
.trustbar__item:last-child { border-right: 0; }
.trustbar__item svg { width: 26px; height: 26px; color: var(--red); flex: none; }
.trustbar__item b { display: block; font-weight: 800; font-size: .95rem; color: var(--navy); }
.trustbar__item span { font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   EN-TÊTE DE PAGE (pages intérieures)
   ========================================================================== */

.page-head {
  padding: clamp(5.5rem, 9vw, 8rem) 0 clamp(2.6rem, 4vw, 3.4rem);
  margin-top: -76px;                 /* la teinte passe sous l'en-tête transparent */
  position: relative; overflow: hidden;
  background: linear-gradient(172deg, #e7ddca 0%, #efe7d8 42%, var(--bg) 92%);
  border-bottom: 1px solid var(--line);
}
.page-head > * { position: relative; z-index: 1; }
.page-head::before {
  content: ""; position: absolute; z-index: 0;
  top: -30%; right: -6%; width: 46%; height: 150%;
  background: radial-gradient(closest-side, rgba(194,163,107,.20), transparent 72%);
  pointer-events: none;
}
.page-head h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); font-weight: 300; margin-bottom: .7rem; }
.page-head h1 strong { font-weight: 500; }

/* ==========================================================================
   FEATURE (image + texte)
   ========================================================================== */

.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}
.feature--reverse > .feature__media { order: 2; }
.feature__media { aspect-ratio: 5 / 4; box-shadow: var(--shadow); }
.feature__media--tall { aspect-ratio: 4 / 5; }
.feature h2 { margin-bottom: 1rem; }
.feature p { color: var(--muted); margin-bottom: 1.1rem; }
.feature p strong, .checklist strong { color: var(--ink); font-weight: 700; }

.checklist { list-style: none; margin: 1.4rem 0; }
.checklist li { position: relative; padding: .5rem 0 .5rem 2rem; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .86rem;
  width: 17px; height: 17px; border-radius: 50%; background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
  background: var(--red);
}

/* Grand chiffre éditorial */
.bignum { display: flex; align-items: baseline; gap: 1.2rem; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.bignum strong { font-family: var(--font-display); font-weight: 300; font-size: clamp(3rem, 6vw, 4.4rem); color: var(--navy); line-height: .9; }
.bignum span { color: var(--muted); font-size: .95rem; max-width: 22ch; }

/* ==========================================================================
   SECTION TITRE CENTRÉ
   ========================================================================== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.6rem, 5vw, 3.6rem); }
.section-head .lead { margin: 0 auto; }

/* ==========================================================================
   SERVICES — grille éditoriale (1 grande carte image + cartes texte)
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.scard {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  min-height: 240px;
}
.scard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.scard__icon { width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; background: var(--bg-alt); color: var(--navy); margin-bottom: 1.1rem; }
.scard__icon svg { width: 26px; height: 26px; }
.scard h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: .5rem; }
.scard p { font-size: .92rem; color: var(--muted); flex: 1; }
.scard__more { margin-top: 1.1rem; font-size: .86rem; font-weight: 700; color: var(--red); }

/* Carte image (occupe 2 colonnes) */
.scard--feature {
  grid-column: span 2;
  padding: 0; min-height: 320px;
  overflow: hidden;
  color: #fff;
  border: 0;
}
.scard--feature .scard__bg { position: absolute; inset: 0; }
.scard--feature .scard__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.scard--feature:hover .scard__bg img { transform: scale(1.05); }
.scard--feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,31,58,.82) 10%, rgba(11,31,58,.35) 70%, transparent); }
.scard--feature .scard__body { position: relative; z-index: 1; margin-top: auto; padding: 2.2rem; }
.scard--feature h3 { color: #fff; font-size: 1.5rem; }
.scard--feature p { color: rgba(255,255,255,.85); max-width: 36ch; }
.scard--feature .scard__more { color: #fff; }

/* ==========================================================================
   SECTION SOURIRE (émotion / preuve)
   ========================================================================== */
.smile { position: relative; }
.smile__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.smile__media { aspect-ratio: 3 / 4; box-shadow: var(--shadow); filter: grayscale(0); }
.smile__quote { }
.smile__quote .mark { font-family: var(--font-display); font-size: 4rem; line-height: .5; color: var(--red); display: block; margin-bottom: 1rem; }
.smile__quote p { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: clamp(1.4rem, 2.8vw, 2.1rem); line-height: 1.3; color: var(--navy); }
.smile__quote cite { display: block; margin-top: 1.6rem; font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: .9rem; color: var(--muted); letter-spacing: .04em; }

/* ==========================================================================
   PRESTATIONS (page) — catalogue visuel type collection
   ========================================================================== */
.catalog { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2.2rem); }

.pcard {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  scroll-margin-top: 110px;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.pcard__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  font-family: var(--font-body); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--red); padding: .35rem .7rem; border-radius: 99px;
  box-shadow: 0 6px 16px -6px rgba(190,22,34,.6);
}
.pcard__body { padding: 1.8rem clamp(1.4rem, 2.4vw, 2rem) 2rem; display: flex; flex-direction: column; flex: 1; }
.pcard__num { font-family: var(--font-display); font-style: italic; font-size: .95rem; color: var(--red); margin-bottom: .5rem; }
.pcard h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: .55rem; }
.pcard p { color: var(--muted); font-size: .95rem; flex: 1; }
.pcard p strong { color: var(--ink); }
.pcard__cta { margin-top: 1.3rem; display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .9rem; color: var(--navy); text-decoration: none; transition: gap .3s var(--ease), color .3s; }
.pcard__cta:hover { gap: .9rem; color: var(--red); }

/* ==========================================================================
   ENGAGEMENTS / ÉTAPES
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem; transition: transform .4s var(--ease); }
.step__num { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--red); display: block; margin-bottom: .9rem; }
.step h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: .45rem; }
.step p { font-size: .89rem; color: var(--muted); }

/* Variante sur fond navy : verre dépoli + accent doré */
.section--navy .step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-top: 2px solid var(--gold);
}
.section--navy .step:hover { transform: translateY(-5px); background: rgba(255,255,255,.08); }
.section--navy .step__num { color: var(--gold-soft); }
.section--navy .step h3 { color: #fff; }
.section--navy .step p { color: rgba(255,255,255,.72); }

/* ==========================================================================
   AVIS / PREUVE SOCIALE
   ========================================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; }
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.review__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 1rem; }
.review__stars svg { width: 18px; height: 18px; }
.review p { color: var(--ink); font-size: .98rem; flex: 1; }
.review__who { margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--line); font-weight: 700; font-size: .9rem; color: var(--navy); }
.review__who span { display: block; font-weight: 400; font-size: .82rem; color: var(--muted); }
.reviews__foot { text-align: center; margin-top: 2.2rem; font-size: .92rem; color: var(--muted); }
.reviews__foot strong { color: var(--navy); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { text-align: center; border-top: 1px solid rgba(194,163,107,.28); }
.cta-band h2 { margin-bottom: .7rem; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 52ch; margin: 0 auto 2rem; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .9rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 4rem); margin-top: 2.6rem; }
.contact__info { display: grid; gap: 1.7rem; align-content: start; }
.contact__block h3 { font-family: var(--font-body); font-size: .72rem; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: var(--red); margin-bottom: .45rem; }
.contact__block p, .contact__block a { color: var(--ink); font-size: 1rem; text-decoration: none; }
.contact__block a:hover { color: var(--red); }
.contact__block small { color: var(--muted); }
.contact__hours { border-collapse: collapse; width: 100%; max-width: 330px; }
.contact__hours td { padding: .42rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.contact__hours td:last-child { text-align: right; font-weight: 700; color: var(--navy); }

.contact__form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.5vw, 2.6rem); box-shadow: var(--shadow-sm); }
.contact__form h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 1.4rem; }
.form__row { margin-bottom: 1.1rem; }
.form__row label { display: block; font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: .38rem; }
.form__row input, .form__row select, .form__row textarea {
  width: 100%; font-family: var(--font-body); font-size: .97rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: .82rem 1rem; transition: border-color .3s, box-shadow .3s; resize: vertical;
}
.form__row input:focus, .form__row select:focus, .form__row textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(16,42,76,.1); }
.form__hint { margin-top: .9rem; font-size: .8rem; color: var(--muted); text-align: center; }

/* FAQ */
.faq { margin-top: clamp(3rem, 6vw, 4.5rem); max-width: 820px; }
.faq h2 { margin-bottom: 1.6rem; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); margin-bottom: .7rem; overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; padding: 1.05rem 3rem 1.05rem 1.3rem; font-weight: 700; color: var(--navy); font-size: .98rem; position: relative; transition: background .25s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: 1.35rem; font-weight: 300; color: var(--red); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { background: var(--bg); }
.faq details p { padding: 0 1.3rem 1.1rem; color: var(--muted); font-size: .95rem; }

/* Carte / map — encadré élégant et compact */
.map-card {
  max-width: 920px; margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  line-height: 0;
}
.map-card iframe { width: 100%; height: clamp(260px, 34vw, 360px); border: 0; display: block; filter: saturate(.92); }
.map-foot {
  max-width: 920px; margin: 1.3rem auto 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .9rem;
  font-size: .94rem; font-weight: 600; color: var(--navy);
}
.map-foot .btn { padding: .7rem 1.5rem; font-size: .86rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy-deep); color: #fff; padding: clamp(3rem, 5vw, 4.5rem) 0 1.6rem; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer__brand .nav__name { color: #fff; font-size: 1.6rem; }
.footer__brand .nav__name em { color: var(--gold-soft); }
.footer__brand p { margin-top: .8rem; font-weight: 300; font-size: .95rem; color: rgba(255,255,255,.7); max-width: 32ch; }
.footer__flag { display: flex; align-items: center; gap: .55rem; font-size: .86rem !important; }
.flag { display: inline-flex; width: 20px; height: 13px; border-radius: 2px; overflow: hidden; flex: none; }
.flag i { flex: 1; }
.flag i:nth-child(1) { background: #002395; } .flag i:nth-child(2) { background: #fff; } .flag i:nth-child(3) { background: #ED2939; }
.footer__col h4 { font-family: var(--font-body); font-size: .72rem; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.footer__col a, .footer__col span { display: block; color: rgba(255,255,255,.75); text-decoration: none; font-size: .92rem; padding: .26rem 0; transition: color .3s; }
.footer__col a:hover { color: #fff; }
.footer__legal { padding-top: 1.4rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer__legal a { color: inherit; } .footer__legal a:hover { color: #fff; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .scard--feature { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__item:nth-child(2) { border-right: 0; }
  .trustbar__item { border-bottom: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .hero__grid, .feature, .contact__grid, .smile__grid { grid-template-columns: 1fr; }
  .feature--reverse > .feature__media { order: 0; }
  .hero__visual { max-width: 460px; margin-inline: auto; }
  .hero__chip { left: 0; }
  .smile__media { max-width: 360px; }

  .nav__burger { display: flex; }
  /* Le backdrop-filter crée un "containing block" qui piège le menu fixed.
     On le retire sur mobile dans TOUS les états (y compris .is-scrolled),
     sinon le menu se replace mal dès qu'on a défilé. */
  .nav, .nav.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
  /* Le logo et le bouton restent cliquables/visibles au-dessus de l'overlay */
  .nav__logo, .nav__burger { position: relative; z-index: 101; }
  .nav__links {
    position: fixed; inset: 0; z-index: 100;
    background: var(--bg);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 1.8rem;
    transform: translateY(-100%); visibility: hidden;
    transition: transform .45s var(--ease), visibility 0s .45s;
  }
  .nav__links.is-open { transform: translateY(0); visibility: visible; transition: transform .45s var(--ease); }
  .nav__links a { font-size: 1.3rem; opacity: 1; }
  .nav__links a:not(.nav__cta)::after { display: none; }
  .nav__cta { margin-top: .4rem; padding: .8rem 1.8rem; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .scard--feature { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .trustbar__grid { grid-template-columns: 1fr; }
  .trustbar__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .catalog { grid-template-columns: 1fr; }
}
