/* ==========================================================================
   BEN Débarras, Direction C "Humain et chaleureux"
   Palette, typographies, composants de base
   ========================================================================== */

:root {
  /* Palette */
  --c-bg: #FAF7F2;
  --c-bg-alt: #F1ECE3;
  --c-card: #FFFFFF;
  --c-sage: #5C7A6A;
  --c-sage-dark: #3F594B;
  --c-sage-light: #A8BBAF;
  --c-terracotta: #C76E4F;
  --c-terracotta-dark: #A55436;
  --c-text: #2A2A28;
  --c-text-soft: #5C5C58;
  --c-border: #E5DFD3;
  --c-border-soft: #EFE9DC;

  /* Typo */
  --f-serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(20, 20, 18, 0.04), 0 2px 6px rgba(20, 20, 18, 0.03);
  --shadow-md: 0 4px 12px rgba(20, 20, 18, 0.06), 0 12px 32px rgba(20, 20, 18, 0.05);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&display=swap');

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--c-sage-dark);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover { color: var(--c-terracotta); }

h1, h2, h3, h4 {
  font-family: var(--f-serif);
  color: var(--c-text);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.4rem); }

p { margin: 0 0 1em; color: var(--c-text-soft); }
p.lead { font-size: 1.15rem; color: var(--c-text); }

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

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-border-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-sage);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links > a,
.nav-link {
  color: var(--c-text);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links > a:hover,
.nav-link:hover { color: var(--c-terracotta); }

.nav-cta { font-size: 0.9rem; padding: 10px 18px; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > .nav-link .caret {
  font-size: 0.7em;
  color: var(--c-text-soft);
  transition: transform 0.18s ease;
}
.nav-dropdown:hover > .nav-link .caret { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--c-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 10px;
  min-width: 320px;
  margin-top: 8px;
  animation: ddFadeIn 0.18s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }

@keyframes ddFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 8px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--c-text);
  text-decoration: none;
  transition: background 0.12s ease;
}
.dropdown-menu a:hover { background: var(--c-bg-alt); color: var(--c-text); }
.dropdown-menu a strong {
  display: block;
  font-weight: 600;
  font-family: var(--f-sans);
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--c-text);
}
.dropdown-menu a span {
  display: block;
  font-size: 0.82rem;
  color: var(--c-text-soft);
  line-height: 1.35;
}

/* Hamburger */
.nav-burger {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.nav-burger span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.22s ease;
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 24px; }
.nav-burger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-burger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-bg);
    padding: 12px 24px 22px;
    border-bottom: 1px solid var(--c-border);
    gap: 0;
    box-shadow: 0 12px 24px rgba(20, 20, 18, 0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links > a,
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--c-border-soft);
    font-size: 1rem;
  }
  .nav-dropdown { position: static; }
  .nav-dropdown > .nav-link { border-bottom: none; padding-bottom: 4px; }
  .nav-dropdown > .nav-link .caret { display: none; }
  .nav-dropdown .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 10px 12px;
    margin: 0;
    min-width: 0;
    background: transparent;
    animation: none;
    border-bottom: 1px solid var(--c-border-soft);
  }
  .dropdown-menu a { padding: 8px 10px; }
  .nav-cta {
    margin-top: 14px;
    width: 100%;
    justify-content: center;
    border-bottom: none !important;
  }
}

/* ==========================================================================
   Boutons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--c-terracotta);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-terracotta-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--c-sage-dark);
  border-color: var(--c-sage-dark);
}
.btn-secondary:hover {
  background: var(--c-sage-dark);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--c-text);
}
.btn-ghost:hover { color: var(--c-terracotta); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-sage-dark);
}
.hero .lead {
  font-size: 1.15rem;
  color: var(--c-text-soft);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--c-text-soft);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust span::before {
  content: "✓";
  color: var(--c-sage);
  font-weight: 700;
}

.hero-illu {
  background: linear-gradient(135deg, var(--c-sage-light) 0%, var(--c-sage) 100%);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-illu::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.18), transparent 50%),
    radial-gradient(circle at 25% 80%, rgba(199, 110, 79, 0.4), transparent 55%);
}
.hero-illu .illu-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(4px);
  padding: 16px 18px;
  border-radius: 10px;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 44px 0 36px; }
  .hero-illu { aspect-ratio: 16/11; max-height: 320px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero { padding: 32px 0 24px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { padding: 11px 18px; font-size: 0.9rem; }
  .hero-trust { gap: 12px 18px; font-size: 0.85rem; }
  .hero-illu { aspect-ratio: 16/10; max-height: 240px; }
  .hero-illu .illu-tag { font-size: 0.92rem; padding: 12px 14px; bottom: 14px; left: 14px; right: 14px; }
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }
  .city-block { padding: 26px 22px; }
  .cta-band { padding: 40px 24px; }
  .reassurance { padding: 18px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .article { padding: 40px 18px; }
  .article h1 { font-size: 1.75rem; }
  .article p, .article ul, .article ol { font-size: 1rem; }
  .nav { padding: 14px 18px; }
  .brand { font-size: 1.15rem; }
  .brand-mark { width: 30px; height: 30px; font-size: 0.85rem; }
  .devis-form { padding: 22px 20px; }
  .price-edu { padding: 24px 22px; }
}

/* ==========================================================================
   Section générique
   ========================================================================== */
.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--c-bg-alt);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-head h2 {
  margin-bottom: 14px;
}

/* ==========================================================================
   Cartes services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--c-border-soft);
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-sage-light);
}
.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  margin-bottom: 14px;
}
.service-card a.read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-sage-dark);
}

/* ==========================================================================
   Process / étapes
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--c-border-soft);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-terracotta);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 1rem;
}
.step h3 {
  font-size: 1.1rem;
  margin-top: 8px;
  margin-bottom: 8px;
}
.step p { font-size: 0.92rem; margin: 0; }

/* ==========================================================================
   Bandeau réassurance
   ========================================================================== */
.reassurance {
  background: var(--c-sage-dark);
  color: #fff;
  padding: 24px 0;
}
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  text-align: center;
}
.reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.reassurance-item strong {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.reassurance-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: var(--c-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color 0.18s ease;
}
.faq details[open] {
  border-color: var(--c-sage-light);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--c-terracotta);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after {
  content: "−";
}
.faq p {
  margin: 12px 0 0;
  font-size: 0.95rem;
  color: var(--c-text-soft);
}

/* ==========================================================================
   CTA section
   ========================================================================== */
.cta-band {
  background: var(--c-sage);
  color: #fff;
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 110, 79, 0.35), transparent 50%);
}
.cta-band > * { position: relative; }
.cta-band h2 {
  color: #fff;
  margin-bottom: 14px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 26px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--c-bg-alt);
  padding: 56px 0 24px;
  border-top: 1px solid var(--c-border);
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-grid h4 {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-soft);
  margin-bottom: 14px;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li {
  margin-bottom: 8px;
}
.footer-grid a {
  font-size: 0.9rem;
  color: var(--c-text);
}
.footer-grid p {
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--c-text-soft);
}
.footer-bottom .bendrec-mention {
  font-style: italic;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Pages ville
   ========================================================================== */
.city-hero {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--c-bg-alt) 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-border-soft);
}
.city-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--c-text-soft);
  margin-bottom: 16px;
}
.city-hero .breadcrumb a { color: var(--c-text-soft); }
.city-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4.3vw, 2.9rem);
}
.city-hero .lead {
  max-width: 720px;
  font-size: 1.1rem;
}

.city-block {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--c-border-soft);
  margin-bottom: 24px;
}
.city-block h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.neighbors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.neighbors a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--c-bg-alt);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--c-text);
  border: 1px solid var(--c-border-soft);
  transition: all 0.18s ease;
}
.neighbors a:hover {
  background: var(--c-sage);
  color: #fff;
  border-color: var(--c-sage);
}

/* ==========================================================================
   Formulaire devis
   ========================================================================== */
.devis-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 880px) {
  .devis-wrap { grid-template-columns: 1fr; }
}
.devis-form {
  background: var(--c-card);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--c-text);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: var(--f-sans);
  font-size: 0.95rem;
  background: var(--c-bg);
  color: var(--c-text);
  transition: border-color 0.18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-sage);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Bloc pédagogique prix
   ========================================================================== */
.price-edu {
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.price-edu h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.price-edu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-edu li {
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border-soft);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}
.price-edu li:last-child { border-bottom: none; }
.price-edu li strong {
  color: var(--c-text);
  font-weight: 600;
}
.price-edu li span {
  color: var(--c-text-soft);
  text-align: right;
  max-width: 60%;
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--c-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border-soft);
  overflow: hidden;
  transition: all 0.22s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.blog-card .blog-cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--c-sage-light), var(--c-sage));
  position: relative;
}
.blog-card.cover-2 .blog-cover {
  background: linear-gradient(135deg, #E0AD9C, var(--c-terracotta));
}
.blog-card .blog-content {
  padding: 22px 22px 26px;
}
.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.blog-card .meta {
  font-size: 0.8rem;
  color: var(--c-text-soft);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* Article */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}
.article header {
  margin-bottom: 36px;
  text-align: center;
}
.article header .meta {
  font-size: 0.85rem;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.article h1 {
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  margin-bottom: 18px;
}
.article h2 {
  margin-top: 1.6em;
  font-size: 1.6rem;
}
.article h3 {
  margin-top: 1.4em;
  font-size: 1.2rem;
}
.article p {
  font-size: 1.05rem;
  color: var(--c-text);
  line-height: 1.75;
}
.article ul, .article ol {
  font-size: 1.05rem;
  color: var(--c-text);
  line-height: 1.75;
  padding-left: 1.4em;
}
.article ul li, .article ol li {
  margin-bottom: 8px;
}
.article blockquote {
  border-left: 3px solid var(--c-terracotta);
  margin: 1.4em 0;
  padding: 6px 20px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--c-text);
}

/* ==========================================================================
   Sticky desktop call bubble (bottom right)
   ========================================================================== */
.sticky-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-terracotta);
  color: #fff;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(199, 110, 79, 0.38), 0 2px 6px rgba(20, 20, 18, 0.08);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sticky-phone:hover {
  transform: translateY(-2px);
  background: var(--c-terracotta-dark);
  color: #fff;
  box-shadow: 0 14px 34px rgba(199, 110, 79, 0.42), 0 2px 6px rgba(20, 20, 18, 0.08);
}
.sticky-phone-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 0.9rem;
}
.sticky-phone-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(199, 110, 79, 0.45);
  animation: pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  80% { transform: scale(1.18); opacity: 0; }
  100% { opacity: 0; }
}

/* ==========================================================================
   Sticky mobile call bar
   ========================================================================== */
.mobile-cta {
  display: none;
}
@media (max-width: 720px) {
  .sticky-phone { display: none; }
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: var(--c-card);
    border-top: 1px solid var(--c-border);
    padding: 10px;
    gap: 8px;
    box-shadow: 0 -4px 16px rgba(20, 20, 18, 0.06);
  }
  .mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
  }
  .mobile-cta .call {
    background: var(--c-terracotta);
    color: #fff;
  }
  .mobile-cta .wa {
    background: #25D366;
    color: #fff;
  }
  body { padding-bottom: 70px; }
}

/* Utilitaires */
.text-center { text-align: center; }
.mt-4 { margin-top: 28px; }
.mb-4 { margin-bottom: 28px; }
