/* ================================================================
   Ravalement Façade Pornic — Master stylesheet (production)
   Couleurs : océan profond #1B5E7E (primary), sable #F5F1EA, ardoise #2C3E50
   Concaténation dédupliquée des blocs CSS de toutes les pages.
   ================================================================ */

/* ---- From index.html ---- */
/* ================================================================
   Ravalement Façade Pornic — Ravalement façade Pornic
   Couleurs : océan profond #1B5E7E (primary), sable #F5F1EA, ardoise #2C3E50
   ================================================================ */

:root {
  --primary-color: #1B5E7E;
  --primary-dark: #134A65;
  --primary-light: #E6F0F4;
  --accent: #D9A441;
  --text-color: #2C3E50;
  --text-muted: #5B6C7C;
  --bg: #ffffff;
  --bg-soft: #F5F1EA;
  --border: #E1E6EA;
  --success: #2E7D5B;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(27, 94, 126, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background: var(--bg);
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--text-color);
  line-height: 1.25;
  margin-top: 0;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: 0 0 1rem; }
h3 { font-size: 1.2rem; margin: 0 0 .5rem; }

p { margin: 0 0 1rem; }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--primary-dark);
  color: #fff;
  font-size: .85rem;
  padding: .5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--accent); text-decoration: none; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.5rem;
  gap: 1rem;
}
header > a { display: inline-flex; align-items: center; }
header > a img { height: 72px; width: auto; }
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
header nav a {
  color: var(--text-color);
  font-weight: 500;
  font-size: .95rem;
}
header nav details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}
header nav details summary::-webkit-details-marker { display: none; }
header nav details[open] ul {
  position: absolute;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
  border: 1px solid var(--border);
  min-width: 240px;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-cta a:first-child {
  color: var(--primary-color);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--primary-color);
  color: #fff !important;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none !important;
  transition: background .15s;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--primary-color);
  font-weight: 600;
  display: inline-block;
  text-decoration: none !important;
}
.btn-secondary:hover { background: var(--primary-light); }

/* ---------- Sections ---------- */
section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-eyebrow, .hero-eyebrow, .article-eyebrow {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .08em;
  font-weight: 600;
  margin: 0 0 .5rem;
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4.5rem 1.5rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(27, 94, 126, 0.05), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(217, 164, 65, 0.04), transparent 50%);
}
.hero-content { display: flex; flex-direction: column; }
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.25rem;
  color: var(--text-color);
}
.hero-media img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 30px 60px -15px rgba(27, 94, 126, 0.25),
    0 0 0 1px rgba(27, 94, 126, 0.04);
}
.hero-intro, .hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  line-height: 1.65;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-color);
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .04em;
  margin: 0 0 .75rem;
  width: fit-content;
}
.hero-ctas {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin: 0 0 2rem;
}
.hero-ctas .btn-primary,
.hero-ctas .btn-secondary { padding: 1rem 1.5rem; font-size: 1rem; }
.hero-trust-mini, .hero-trust {
  display: flex;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: .88rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.hero-trust-mini span,
.hero-trust .badges span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.hero-trust-mini strong { color: var(--text-color); font-weight: 600; }
.hero-trust .badges { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1rem; }
  .hero-media img { aspect-ratio: 16 / 10; max-height: 320px; }
  .hero-content h1 { font-size: 1.85rem; }
}

/* ---------- Reassurance band ---------- */
.reassurance-band {
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 2rem 1.5rem;
  max-width: 100%;
  margin: 0;
}
.reassurance-item {
  text-align: center;
  padding: .5rem;
}
.reassurance-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: .25rem;
}
.reassurance-item span {
  font-size: .9rem;
  color: var(--text-muted);
}

/* ---------- Reviews ---------- */
.aggregate-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.aggregate-rating .rating-number {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}
.aggregate-rating .stars { color: var(--accent); font-size: 1.3rem; }
.aggregate-rating .review-count { color: var(--text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.review .stars { color: var(--accent); margin-bottom: .5rem; }
.review blockquote {
  margin: 0 0 1rem;
  font-style: normal;
  color: var(--text-color);
  font-size: .95rem;
}
.review-author { font-size: .9rem; margin: 0; }
.review-source { font-size: .8rem; color: var(--text-muted); margin: .25rem 0 0; }

/* ---------- About ---------- */
.about-section { background: var(--bg-soft); max-width: 100%; }
.about-section > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.about-text > :first-child { margin-top: 0; }
.about-media { margin: 0; position: sticky; top: 100px; }
.about-media figcaption {
  font-size: .85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: .75rem;
  font-style: italic;
}
.image-placeholder {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(27,94,126,0.04) 12px, rgba(27,94,126,0.04) 24px),
    linear-gradient(135deg, var(--primary-light) 0%, #FFF8EC 100%);
  aspect-ratio: 4 / 3;
  box-shadow:
    0 25px 50px -20px rgba(27, 94, 126, 0.25),
    0 0 0 1px rgba(27, 94, 126, 0.06);
}
.image-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.image-placeholder .placeholder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: .5rem;
  color: var(--primary-color);
  z-index: 1;
}
.image-placeholder .placeholder-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: .5rem;
  opacity: .55;
}
.image-placeholder .placeholder-title {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.image-placeholder .placeholder-sub {
  font-size: .85rem;
  color: var(--text-muted);
  max-width: 220px;
  line-height: 1.4;
}
.image-placeholder .placeholder-path {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: .7rem;
  color: var(--text-muted);
  opacity: .6;
  margin-top: .75rem;
  background: rgba(255,255,255,.6);
  padding: .2rem .5rem;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-media { position: static; }
  .image-placeholder { aspect-ratio: 4 / 3; max-height: 360px; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.values-grid > div {
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-color);
  font-size: .95rem;
}

/* ---------- Why us ---------- */
.why-us-section { background: #fff; }
.why-us-intro {
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.why-us-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.why-us-card:hover {
  box-shadow: 0 12px 30px -8px rgba(27, 94, 126, 0.15);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}
.why-us-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.why-us-card h3 {
  color: var(--text-color);
  font-size: 1.05rem;
  margin-bottom: .5rem;
  font-weight: 700;
}
.why-us-card p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-color) !important;
  text-decoration: none !important;
  transition: all .25s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  box-shadow: 0 20px 40px -15px rgba(27, 94, 126, 0.22);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
  border: 1px solid rgba(27, 94, 126, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
  transition: transform .3s ease, background .3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.05) rotate(-3deg);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}
.service-card h3 {
  color: var(--text-color);
  font-size: 1.15rem;
  margin: 0 0 .6rem;
  font-weight: 700;
  line-height: 1.3;
}
.service-card p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  flex-grow: 1;
}
.service-card .service-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--primary-color);
  font-weight: 600;
  font-size: .88rem;
  transition: gap .25s ease;
}
.service-card:hover .service-cta { gap: .7rem; }
.service-card .service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .25rem .55rem;
  border-radius: 6px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ---------- Simulateur diagnostic ---------- */
.simulateur-block {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  color: #fff;
  box-shadow: 0 25px 60px -20px rgba(27, 94, 126, 0.4);
  position: relative;
  overflow: hidden;
}
.simulateur-block::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.15), transparent 60%);
  pointer-events: none;
}
.simu-header { text-align: center; margin-bottom: 2rem; position: relative; }
.simu-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: .03em;
  backdrop-filter: blur(8px);
}
.simu-header h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 .75rem;
  letter-spacing: -0.01em;
}
.simu-header > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}
.simu-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  margin: 2rem auto 1.5rem;
  max-width: 600px;
  overflow: hidden;
}
.simu-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #FFD876);
  border-radius: 999px;
  transition: width .4s cubic-bezier(.4, 0, .2, 1);
}
.simu-steps {
  background: rgba(255, 255, 255, 0.97);
  color: var(--text-color);
  border-radius: 14px;
  padding: 2rem;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.25);
}
.simu-step { display: none; }
.simu-step.active { display: block; animation: simuFadeIn .35s ease; }
@keyframes simuFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.simu-step-label {
  color: var(--primary-color);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 .5rem;
}
.simu-step h4 {
  font-size: 1.25rem;
  margin: 0 0 1.5rem;
  color: var(--text-color);
  line-height: 1.3;
}
.simu-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.simu-option {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  transition: all .2s ease;
  width: 100%;
}
.simu-option:hover {
  border-color: var(--primary-color);
  background: var(--primary-light);
  transform: translateY(-2px);
}
.simu-option.selected {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #fff;
}
.simu-option.selected .simu-opt-text small { color: rgba(255,255,255,0.8); }
.simu-opt-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.simu-opt-text { display: flex; flex-direction: column; gap: .15rem; }
.simu-opt-text strong { font-size: .95rem; font-weight: 600; }
.simu-opt-text small { font-size: .8rem; color: var(--text-muted); line-height: 1.3; }
.simu-back {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: .9rem;
  padding: .55rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transition: all .2s;
}
.simu-back:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.simu-back:disabled { opacity: 0; cursor: default; pointer-events: none; }

/* Result */
.simu-result-step .simu-step-label {
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.simu-result-step h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.simu-result-step #simu-result-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.simu-price {
  background: var(--primary-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}
.simu-price-label {
  margin: 0 0 .5rem;
  font-size: .85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
}
.simu-price-value {
  margin: 0 0 .75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--primary-color);
}
.simu-price-note {
  margin: 0;
  font-size: .8rem;
  color: var(--text-muted);
  font-style: italic;
}
.simu-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.btn-link {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-family: inherit;
  font-size: .9rem;
  cursor: pointer;
  text-decoration: underline;
  padding: .5rem;
}
.btn-link:hover { color: var(--primary-dark); }

@media (max-width: 600px) {
  .simulateur-block { padding: 1.75rem 1rem; }
  .simu-steps { padding: 1.25rem; }
  .simu-options { grid-template-columns: 1fr; }
}

/* ---------- Pricing table ---------- */
.pricing-estimative table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #fff;
}
.pricing-estimative th, .pricing-estimative td,
table th, table td {
  border: 1px solid var(--border);
  padding: .85rem 1rem;
  text-align: left;
}
.pricing-estimative th, table th {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
}
.pricing-disclaimer {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- Realisations ---------- */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.realisations-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.realisations-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.realisations-grid h3 { padding: 1rem 1rem .25rem; font-size: 1rem; }
.realisations-grid p { padding: 0 1rem 1rem; font-size: .85rem; color: var(--text-muted); margin: 0; }

.section-cta-row { text-align: center; margin-top: 2rem; }

/* ---------- Zone d'intervention ---------- */
.zone-section { background: var(--bg-soft); max-width: 100%; }
.zone-section > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.zone-map iframe { border-radius: var(--radius); width: 100%; }
.city-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
}
.city-list li { padding: .25rem 0; }
.city-list strong { color: var(--primary-color); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.team-grid article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.team-grid article:hover {
  box-shadow: 0 16px 40px -12px rgba(27, 94, 126, 0.18);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}
.team-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  display: block;
  margin: 0;
  background: var(--bg-soft);
}
.team-grid h3 {
  margin: 1.25rem 1.25rem .25rem;
  font-size: 1.1rem;
  color: var(--text-color);
}
.team-grid .role {
  color: var(--primary-color);
  font-size: .78rem;
  font-weight: 600;
  margin: 0 1.25rem .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.team-grid article > p:last-child {
  margin: 0 1.25rem 1.5rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---------- Contact ---------- */
#contact { background: var(--primary-light); max-width: 100%; }
#contact > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}
.contact-info { font-size: .95rem; }
.contact-info strong { color: var(--primary-color); }
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-weight: 500;
  font-size: .9rem;
}
.contact-form input, .contact-form select, .contact-form textarea {
  padding: .75rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--primary-color);
  border-color: transparent;
}
.form-promise {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}
.form-disclaimer {
  font-size: .8rem;
  color: var(--text-muted);
  margin: .5rem 0 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: .85rem;
  color: var(--text-muted);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.breadcrumb li:not(:last-child)::after { content: " › "; color: var(--text-muted); margin-left: .5rem; }

/* ---------- Local context ---------- */
.local-context p { max-width: 80ch; }

/* ---------- Why us / FAQ ---------- */
.why-us-city ul { padding-left: 1.25rem; }
.why-us-city li { margin-bottom: .75rem; }

#faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
}
#faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--text-color);
}
#faq details[open] summary { color: var(--primary-color); margin-bottom: .75rem; }

/* ---------- Blog article ---------- */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.blog-post .lead { font-size: 1.15rem; color: var(--text-muted); }
.blog-post img { border-radius: var(--radius); margin: 1.5rem 0; }
.blog-post h2 { margin-top: 2.5rem; }
.blog-post h3 { margin-top: 1.5rem; }
.toc {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.toc h2 { font-size: 1.1rem; margin-bottom: .5rem; }
.toc ol { padding-left: 1.25rem; margin: 0; }
.inline-cta {
  background: var(--primary-light);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.inline-cta p { margin: 0; }
.inline-cta .btn-primary { margin-top: .75rem; }
.author-block {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-top: 2.5rem;
}
.author-block img { width: 80px; height: 80px; border-radius: 50%; margin: 0; }
.related-articles { margin-top: 2.5rem; }
.related-articles ul { list-style: none; padding: 0; }
.related-articles li { padding: .5rem 0; border-bottom: 1px solid var(--border); }

.article-header { text-align: left; }
.article-meta { font-size: .85rem; color: var(--text-muted); }

/* ---------- Blog index ---------- */
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none !important;
  color: var(--text-color) !important;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card .blog-card-body { padding: 1.25rem; }
.blog-card h2 { font-size: 1.1rem; margin-bottom: .5rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--text-color);
  color: #fff;
  padding: 3rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  max-width: 100%;
}
footer a { color: #fff; opacity: .85; }
footer a:hover { opacity: 1; color: var(--accent); text-decoration: none; }
footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: .25rem 0; font-size: .9rem; }
footer .footer-brand img { height: 50px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
footer .footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem;
  font-size: .85rem;
  opacity: .8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-legal ul { display: flex; gap: 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  header { flex-wrap: wrap; padding: .75rem 1rem; }
  header > a img { height: 52px; }
  header nav { order: 3; width: 100%; }
  header nav ul { justify-content: center; gap: 1rem; }
  .header-cta { gap: .5rem; }
  .header-cta .btn-primary { padding: .6rem 1rem; font-size: .85rem; }
  section { padding: 2.5rem 1rem; }
  .zone-grid, .contact-grid { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  footer .footer-legal { flex-direction: column; gap: 1rem; text-align: center; }
  footer .footer-legal ul { justify-content: center; }
  .top-bar { font-size: .75rem; gap: .75rem; }
}

/* ---- From index.html ---- */
.exit-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 1rem; }
    .exit-popup-overlay.is-visible { display: flex; }
    .exit-popup { background: #fff; max-width: 480px; width: 100%; border-radius: 12px; padding: 2rem 1.5rem; box-shadow: 0 20px 60px rgba(0,0,0,.25); position: relative; text-align: center; }
    .exit-popup-close { position: absolute; top: .75rem; right: .75rem; width: 36px; height: 36px; border: none; background: transparent; font-size: 1.5rem; cursor: pointer; color: #666; line-height: 1; }
    .exit-popup-eyebrow { color: var(--primary-color); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 .75rem; }
    .exit-popup h2 { font-size: 1.5rem; margin: 0 0 .75rem; line-height: 1.3; }
    .exit-popup-form { display: flex; flex-direction: column; gap: .75rem; text-align: left; }
    .exit-popup-form input { padding: .75rem; font-size: 1rem; border: 1px solid #ccc; border-radius: 6px; width: 100%; }
    .exit-popup-cta { background: var(--primary-color); color: #fff; border: none; padding: .9rem 1rem; font-size: 1rem; font-weight: 600; border-radius: 6px; cursor: pointer; margin-top: .5rem; }
    .exit-popup-cta:hover { background: var(--primary-dark); }
    .exit-popup-decline { background: transparent; border: none; color: #888; font-size: .85rem; text-decoration: underline; cursor: pointer; margin-top: .75rem; }
    .exit-popup-phone { display: block; margin-top: 1rem; color: var(--primary-color); font-weight: 600; text-decoration: none; }

/* ---- From la-bernerie-en-retz.html ---- */
/* ================================================================
   Ravalement Façade Pornic — Ravalement façade Pornic
   Couleurs : océan profond #1B5E7E (primary), sable #F5F1EA, ardoise #2C3E50
   ================================================================ */

:root {
  --primary-color: #1B5E7E;
  --primary-dark: #134A65;
  --primary-light: #E6F0F4;
  --accent: #D9A441;
  --text-color: #2C3E50;
  --text-muted: #5B6C7C;
  --bg: #ffffff;
  --bg-soft: #F5F1EA;
  --border: #E1E6EA;
  --success: #2E7D5B;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(27, 94, 126, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background: var(--bg);
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--text-color);
  line-height: 1.25;
  margin-top: 0;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: 0 0 1rem; }
h3 { font-size: 1.2rem; margin: 0 0 .5rem; }

p { margin: 0 0 1rem; }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--primary-dark);
  color: #fff;
  font-size: .85rem;
  padding: .5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--accent); text-decoration: none; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.5rem;
  gap: 1rem;
}
header > a img { height: 72px; width: auto; }
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
header nav a {
  color: var(--text-color);
  font-weight: 500;
  font-size: .95rem;
}
header nav details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}
header nav details summary::-webkit-details-marker { display: none; }
header nav details[open] ul {
  position: absolute;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
  border: 1px solid var(--border);
  min-width: 240px;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-cta a:first-child {
  color: var(--primary-color);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--primary-color);
  color: #fff !important;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none !important;
  transition: background .15s;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--primary-color);
  font-weight: 600;
  display: inline-block;
  text-decoration: none !important;
}
.btn-secondary:hover { background: var(--primary-light); }

/* ---------- Sections ---------- */
section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-eyebrow, .hero-eyebrow, .article-eyebrow {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .08em;
  font-weight: 600;
  margin: 0 0 .5rem;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.hero img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 480px;
}
.hero-intro, .hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}
.hero-trust-mini, .hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: .95rem;
}
.hero-trust .badges { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Reassurance band ---------- */
.reassurance-band {
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 2rem 1.5rem;
  max-width: 100%;
  margin: 0;
}
.reassurance-item {
  text-align: center;
  padding: .5rem;
}
.reassurance-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: .25rem;
}
.reassurance-item span {
  font-size: .9rem;
  color: var(--text-muted);
}

/* ---------- Reviews ---------- */
.aggregate-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.aggregate-rating .rating-number {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}
.aggregate-rating .stars { color: var(--accent); font-size: 1.3rem; }
.aggregate-rating .review-count { color: var(--text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.review .stars { color: var(--accent); margin-bottom: .5rem; }
.review blockquote {
  margin: 0 0 1rem;
  font-style: normal;
  color: var(--text-color);
  font-size: .95rem;
}
.review-author { font-size: .9rem; margin: 0; }
.review-source { font-size: .8rem; color: var(--text-muted); margin: .25rem 0 0; }

/* ---------- About ---------- */
.about-section { background: var(--bg-soft); max-width: 100%; }
.about-section > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.values-grid > div {
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-color);
  font-size: .95rem;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  display: block;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-color) !important;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none !important;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}
.service-card h3 { color: var(--primary-color); }
.service-card .service-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Pricing table ---------- */
.pricing-estimative table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #fff;
}
.pricing-estimative th, .pricing-estimative td,
table th, table td {
  border: 1px solid var(--border);
  padding: .85rem 1rem;
  text-align: left;
}
.pricing-estimative th, table th {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
}
.pricing-disclaimer {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- Realisations ---------- */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.realisations-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.realisations-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.realisations-grid h3 { padding: 1rem 1rem .25rem; font-size: 1rem; }
.realisations-grid p { padding: 0 1rem 1rem; font-size: .85rem; color: var(--text-muted); margin: 0; }

.section-cta-row { text-align: center; margin-top: 2rem; }

/* ---------- Zone d'intervention ---------- */
.zone-section { background: var(--bg-soft); max-width: 100%; }
.zone-section > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.zone-map iframe { border-radius: var(--radius); width: 100%; }
.city-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
}
.city-list li { padding: .25rem 0; }
.city-list strong { color: var(--primary-color); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-grid article {
  text-align: center;
}
.team-grid img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}
.team-grid h3 { margin-bottom: .25rem; }
.team-grid .role {
  color: var(--primary-color);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: .5rem;
}
.team-grid p { font-size: .9rem; color: var(--text-muted); }

/* ---------- Contact ---------- */
#contact { background: var(--primary-light); max-width: 100%; }
#contact > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}
.contact-info { font-size: .95rem; }
.contact-info strong { color: var(--primary-color); }
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-weight: 500;
  font-size: .9rem;
}
.contact-form input, .contact-form select, .contact-form textarea {
  padding: .75rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--primary-color);
  border-color: transparent;
}
.form-promise {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}
.form-disclaimer {
  font-size: .8rem;
  color: var(--text-muted);
  margin: .5rem 0 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: .85rem;
  color: var(--text-muted);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.breadcrumb li:not(:last-child)::after { content: " › "; color: var(--text-muted); margin-left: .5rem; }

/* ---------- Local context ---------- */
.local-context p { max-width: 80ch; }

/* ---------- Why us / FAQ ---------- */
.why-us-city ul { padding-left: 1.25rem; }
.why-us-city li { margin-bottom: .75rem; }

#faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
}
#faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--text-color);
}
#faq details[open] summary { color: var(--primary-color); margin-bottom: .75rem; }

/* ---------- Blog article ---------- */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.blog-post .lead { font-size: 1.15rem; color: var(--text-muted); }
.blog-post img { border-radius: var(--radius); margin: 1.5rem 0; }
.blog-post h2 { margin-top: 2.5rem; }
.blog-post h3 { margin-top: 1.5rem; }
.toc {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.toc h2 { font-size: 1.1rem; margin-bottom: .5rem; }
.toc ol { padding-left: 1.25rem; margin: 0; }
.inline-cta {
  background: var(--primary-light);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.inline-cta p { margin: 0; }
.inline-cta .btn-primary { margin-top: .75rem; }
.author-block {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-top: 2.5rem;
}
.author-block img { width: 80px; height: 80px; border-radius: 50%; margin: 0; }
.related-articles { margin-top: 2.5rem; }
.related-articles ul { list-style: none; padding: 0; }
.related-articles li { padding: .5rem 0; border-bottom: 1px solid var(--border); }

.article-header { text-align: left; }
.article-meta { font-size: .85rem; color: var(--text-muted); }

/* ---------- Blog index ---------- */
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none !important;
  color: var(--text-color) !important;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card .blog-card-body { padding: 1.25rem; }
.blog-card h2 { font-size: 1.1rem; margin-bottom: .5rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--text-color);
  color: #fff;
  padding: 3rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  max-width: 100%;
}
footer a { color: #fff; opacity: .85; }
footer a:hover { opacity: 1; color: var(--accent); text-decoration: none; }
footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: .25rem 0; font-size: .9rem; }
footer .footer-brand img { height: 72px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
footer .footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem;
  font-size: .85rem;
  opacity: .8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-legal ul { display: flex; gap: 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  header { flex-wrap: wrap; padding: .75rem 1rem; }
  header nav { order: 3; width: 100%; }
  header nav ul { justify-content: center; gap: 1rem; }
  .header-cta { gap: .5rem; }
  .header-cta .btn-primary { padding: .6rem 1rem; font-size: .85rem; }
  section { padding: 2.5rem 1rem; }
  .zone-grid, .contact-grid { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  footer .footer-legal { flex-direction: column; gap: 1rem; text-align: center; }
  footer .footer-legal ul { justify-content: center; }
  .top-bar { font-size: .75rem; gap: .75rem; }
}


/* ---------- Templates v2 city pages ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-color) !important;
  text-decoration: none !important;
  transition: all .25s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  box-shadow: 0 20px 40px -15px rgba(27, 94, 126, 0.22);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
  border: 1px solid rgba(27, 94, 126, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 1.25rem;
  transition: transform .3s ease, background .3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.05) rotate(-3deg);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}
.service-card h3 { color: var(--text-color); font-size: 1.15rem; margin: 0 0 .6rem; font-weight: 700; line-height: 1.3; }
.service-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.55; margin: 0 0 1.25rem; flex-grow: 1; }
.service-card .service-cta {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: auto; padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--primary-color); font-weight: 600; font-size: .88rem;
  transition: gap .25s ease;
}
.service-card:hover .service-cta { gap: .7rem; }
.service-card .service-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--accent); color: #fff;
  font-size: .68rem; font-weight: 700;
  padding: .25rem .55rem; border-radius: 6px;
  letter-spacing: .03em; text-transform: uppercase;
}

/* ---------- Why us grid (city pages v2) ---------- */
.why-us-section { background: #fff; }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.why-us-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.why-us-card:hover {
  box-shadow: 0 12px 30px -8px rgba(27, 94, 126, 0.15);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}
.why-us-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.why-us-card h3 { color: var(--text-color); font-size: 1.05rem; margin-bottom: .5rem; font-weight: 700; }
.why-us-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.55; margin: 0; }

/* ---------- Full-width pricing block ---------- */
.pricing-full {
  background: var(--bg-soft) !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 4rem 1.5rem !important;
  margin: 0 !important;
}
.pricing-full > * {
  max-width: var(--max-width);
  margin-left: auto !important;
  margin-right: auto !important;
}
.pricing-full table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(27, 94, 126, 0.06);
}
.pricing-full tbody tr:nth-child(odd) { background: rgba(230, 240, 244, 0.35); }
.pricing-full tbody tr:hover { background: var(--primary-light); }

/* ---------- Featured single realisation ---------- */
.realisation-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 12px 40px -15px rgba(27, 94, 126, 0.18);
}
.realisation-featured img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; background: var(--bg-soft); }
.realisation-featured .ralz-body { padding: 2rem; }
.realisation-featured h3 { color: var(--primary-color); font-size: 1.35rem; margin-bottom: .5rem; }
.realisation-featured .ralz-meta { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
@media (max-width: 768px) {
  .realisation-featured { grid-template-columns: 1fr; gap: 0; }
  .realisation-featured .ralz-body { padding: 1.5rem; }
}

/* ---------- Zone d'intervention (city pages, comme homepage) ---------- */
.zone-section {
  background: var(--bg-soft) !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 4rem 1.5rem !important;
  margin: 0 !important;
}
.zone-section > * { max-width: var(--max-width); margin-left: auto !important; margin-right: auto !important; }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.zone-map-placeholder {
  height: 450px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #FFF8EC 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-weight: 600;
  border: 1px dashed rgba(27, 94, 126, 0.25);
}
.city-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1rem; }
.city-list li { padding: .25rem 0; }
.city-list strong { color: var(--primary-color); }
@media (max-width: 768px) {
  .zone-grid { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr; }
}

/* ---------- Local context (en fin de page) ---------- */
.local-context-end {
  background: var(--bg-soft) !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 4rem 1.5rem !important;
  margin: 0 !important;
}
.local-context-end > * { max-width: var(--max-width); margin-left: auto !important; margin-right: auto !important; }
.local-context-end h2 { margin-bottom: 1.5rem; }
.local-context-end p { max-width: 80ch; }

/* ---- From ravalement-facade.html ---- */
/* ================================================================
   Ravalement Façade Pornic — Ravalement façade Pornic
   Couleurs : océan profond #1B5E7E (primary), sable #F5F1EA, ardoise #2C3E50
   ================================================================ */

:root {
  --primary-color: #1B5E7E;
  --primary-dark: #134A65;
  --primary-light: #E6F0F4;
  --accent: #D9A441;
  --text-color: #2C3E50;
  --text-muted: #5B6C7C;
  --bg: #ffffff;
  --bg-soft: #F5F1EA;
  --border: #E1E6EA;
  --success: #2E7D5B;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(27, 94, 126, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background: var(--bg);
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--text-color);
  line-height: 1.25;
  margin-top: 0;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: 0 0 1rem; }
h3 { font-size: 1.2rem; margin: 0 0 .5rem; }

p { margin: 0 0 1rem; }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--primary-dark);
  color: #fff;
  font-size: .85rem;
  padding: .5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--accent); text-decoration: none; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.5rem;
  gap: 1rem;
}
header > a img { height: 72px; width: auto; }
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
header nav a {
  color: var(--text-color);
  font-weight: 500;
  font-size: .95rem;
}
header nav details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}
header nav details summary::-webkit-details-marker { display: none; }
header nav details[open] ul {
  position: absolute;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
  border: 1px solid var(--border);
  min-width: 240px;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-cta a:first-child {
  color: var(--primary-color);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--primary-color);
  color: #fff !important;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none !important;
  transition: background .15s;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--primary-color);
  font-weight: 600;
  display: inline-block;
  text-decoration: none !important;
}
.btn-secondary:hover { background: var(--primary-light); }

/* ---------- Sections ---------- */
section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-eyebrow, .hero-eyebrow, .article-eyebrow {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .08em;
  font-weight: 600;
  margin: 0 0 .5rem;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.hero img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 480px;
}
.hero-intro, .hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}
.hero-trust-mini, .hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: .95rem;
}
.hero-trust .badges { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Reassurance band ---------- */
.reassurance-band {
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 2rem 1.5rem;
  max-width: 100%;
  margin: 0;
}
.reassurance-item {
  text-align: center;
  padding: .5rem;
}
.reassurance-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: .25rem;
}
.reassurance-item span {
  font-size: .9rem;
  color: var(--text-muted);
}

/* ---------- Reviews ---------- */
.aggregate-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.aggregate-rating .rating-number {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}
.aggregate-rating .stars { color: var(--accent); font-size: 1.3rem; }
.aggregate-rating .review-count { color: var(--text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.review .stars { color: var(--accent); margin-bottom: .5rem; }
.review blockquote {
  margin: 0 0 1rem;
  font-style: normal;
  color: var(--text-color);
  font-size: .95rem;
}
.review-author { font-size: .9rem; margin: 0; }
.review-source { font-size: .8rem; color: var(--text-muted); margin: .25rem 0 0; }

/* ---------- About ---------- */
.about-section { background: var(--bg-soft); max-width: 100%; }
.about-section > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.values-grid > div {
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-color);
  font-size: .95rem;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  display: block;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-color) !important;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none !important;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}
.service-card h3 { color: var(--primary-color); }
.service-card .service-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Pricing table ---------- */
.pricing-estimative table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #fff;
}
.pricing-estimative th, .pricing-estimative td,
table th, table td {
  border: 1px solid var(--border);
  padding: .85rem 1rem;
  text-align: left;
}
.pricing-estimative th, table th {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
}
.pricing-disclaimer {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- Realisations ---------- */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.realisations-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.realisations-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.realisations-grid h3 { padding: 1rem 1rem .25rem; font-size: 1rem; }
.realisations-grid p { padding: 0 1rem 1rem; font-size: .85rem; color: var(--text-muted); margin: 0; }

.section-cta-row { text-align: center; margin-top: 2rem; }

/* ---------- Zone d'intervention ---------- */
.zone-section { background: var(--bg-soft); max-width: 100%; }
.zone-section > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.zone-map iframe { border-radius: var(--radius); width: 100%; }
.city-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
}
.city-list li { padding: .25rem 0; }
.city-list strong { color: var(--primary-color); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-grid article {
  text-align: center;
}
.team-grid img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}
.team-grid h3 { margin-bottom: .25rem; }
.team-grid .role {
  color: var(--primary-color);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: .5rem;
}
.team-grid p { font-size: .9rem; color: var(--text-muted); }

/* ---------- Contact ---------- */
#contact { background: var(--primary-light); max-width: 100%; }
#contact > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}
.contact-info { font-size: .95rem; }
.contact-info strong { color: var(--primary-color); }
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-weight: 500;
  font-size: .9rem;
}
.contact-form input, .contact-form select, .contact-form textarea {
  padding: .75rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--primary-color);
  border-color: transparent;
}
.form-promise {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}
.form-disclaimer {
  font-size: .8rem;
  color: var(--text-muted);
  margin: .5rem 0 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: .85rem;
  color: var(--text-muted);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.breadcrumb li:not(:last-child)::after { content: " › "; color: var(--text-muted); margin-left: .5rem; }

/* ---------- Local context ---------- */
.local-context p { max-width: 80ch; }

/* ---------- Why us / FAQ ---------- */
.why-us-city ul { padding-left: 1.25rem; }
.why-us-city li { margin-bottom: .75rem; }

#faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
}
#faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--text-color);
}
#faq details[open] summary { color: var(--primary-color); margin-bottom: .75rem; }

/* ---------- Blog article ---------- */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.blog-post .lead { font-size: 1.15rem; color: var(--text-muted); }
.blog-post img { border-radius: var(--radius); margin: 1.5rem 0; }
.blog-post h2 { margin-top: 2.5rem; }
.blog-post h3 { margin-top: 1.5rem; }
.toc {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.toc h2 { font-size: 1.1rem; margin-bottom: .5rem; }
.toc ol { padding-left: 1.25rem; margin: 0; }
.inline-cta {
  background: var(--primary-light);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.inline-cta p { margin: 0; }
.inline-cta .btn-primary { margin-top: .75rem; }
.author-block {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-top: 2.5rem;
}
.author-block img { width: 80px; height: 80px; border-radius: 50%; margin: 0; }
.related-articles { margin-top: 2.5rem; }
.related-articles ul { list-style: none; padding: 0; }
.related-articles li { padding: .5rem 0; border-bottom: 1px solid var(--border); }

.article-header { text-align: left; }
.article-meta { font-size: .85rem; color: var(--text-muted); }

/* ---------- Blog index ---------- */
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none !important;
  color: var(--text-color) !important;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card .blog-card-body { padding: 1.25rem; }
.blog-card h2 { font-size: 1.1rem; margin-bottom: .5rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--text-color);
  color: #fff;
  padding: 3rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  max-width: 100%;
}
footer a { color: #fff; opacity: .85; }
footer a:hover { opacity: 1; color: var(--accent); text-decoration: none; }
footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: .25rem 0; font-size: .9rem; }
footer .footer-brand img { height: 50px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
footer .footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem;
  font-size: .85rem;
  opacity: .8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-legal ul { display: flex; gap: 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  header { flex-wrap: wrap; padding: .75rem 1rem; }
  header nav { order: 3; width: 100%; }
  header nav ul { justify-content: center; gap: 1rem; }
  .header-cta { gap: .5rem; }
  .header-cta .btn-primary { padding: .6rem 1rem; font-size: .85rem; }
  section { padding: 2.5rem 1rem; }
  .zone-grid, .contact-grid { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  footer .footer-legal { flex-direction: column; gap: 1rem; text-align: center; }
  footer .footer-legal ul { justify-content: center; }
  .top-bar { font-size: .75rem; gap: .75rem; }
}


/* ---------- Service pages v2 (H1 first, timeline, types-emoji) ---------- */
.service-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 1rem;
  text-align: center;
}
.service-hero .hero-eyebrow {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-color);
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .04em;
  margin: 0 0 1rem;
}
.service-hero h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: -.02em;
  margin: 0 0 1rem;
  color: var(--text-color);
}
.service-hero .hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}
.service-hero .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.service-hero .hero-image {
  margin: 2.5rem auto 0;
  border-radius: 14px;
  overflow: hidden;
  max-width: 960px;
  box-shadow: 0 25px 50px -15px rgba(27, 94, 126, 0.25);
}
.service-hero .hero-image img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }

/* Types-grid (3 cards avec emojis) */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.type-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.type-card:hover {
  box-shadow: 0 20px 40px -15px rgba(27, 94, 126, 0.18);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}
.type-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent));
}
.type-card .type-emoji {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.type-card h3 {
  color: var(--text-color);
  font-size: 1.15rem;
  margin: 0 0 .75rem;
  font-weight: 700;
}
.type-card p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.type-card .type-price {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: .9rem;
  padding: .4rem .8rem;
  border-radius: 8px;
}

/* Méthode timeline */
.method-section {
  background: var(--bg-soft);
  max-width: 100%;
  padding: 4rem 1.5rem;
}
.method-section > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.method-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
}
.method-timeline::before {
  content: '';
  position: absolute;
  top: 30px; left: 6%; right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent) 100%);
  opacity: .35;
  z-index: 0;
}
.method-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem 1rem 1.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform .2s, box-shadow .2s;
}
.method-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -10px rgba(27, 94, 126, 0.18);
}
.method-step .step-circle {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(27, 94, 126, 0.3);
}
.method-step .step-icon {
  font-size: 2.25rem;
  line-height: 1;
  margin: .5rem 0 .85rem;
}
.method-step h3 {
  font-size: .95rem;
  color: var(--text-color);
  margin: 0 0 .5rem;
  font-weight: 700;
}
.method-step p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 900px) {
  .method-timeline { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .method-timeline::before { display: none; }
}

/* Pricing adapté par prestation */
.pricing-block {
  background: var(--bg-soft);
  max-width: 100%;
  padding: 4rem 1.5rem;
}
.pricing-block > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.pricing-block table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(27, 94, 126, 0.06);
}
.pricing-block tbody tr:nth-child(odd) { background: rgba(230, 240, 244, 0.35); }
.pricing-block tbody tr:hover { background: var(--primary-light); }
.pricing-block tbody td:last-child { font-weight: 700; color: var(--primary-color); }

/* ---- From ravalement-facade-prix-m2.html ---- */
/* ================================================================
   Ravalement Façade Pornic — Ravalement façade Pornic
   Couleurs : océan profond #1B5E7E (primary), sable #F5F1EA, ardoise #2C3E50
   ================================================================ */

:root {
  --primary-color: #1B5E7E;
  --primary-dark: #134A65;
  --primary-light: #E6F0F4;
  --accent: #D9A441;
  --text-color: #2C3E50;
  --text-muted: #5B6C7C;
  --bg: #ffffff;
  --bg-soft: #F5F1EA;
  --border: #E1E6EA;
  --success: #2E7D5B;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(27, 94, 126, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background: var(--bg);
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--text-color);
  line-height: 1.25;
  margin-top: 0;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: 0 0 1rem; }
h3 { font-size: 1.2rem; margin: 0 0 .5rem; }

p { margin: 0 0 1rem; }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--primary-dark);
  color: #fff;
  font-size: .85rem;
  padding: .5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--accent); text-decoration: none; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.5rem;
  gap: 1rem;
}
header > a img { height: 50px; width: auto; }
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
header nav a {
  color: var(--text-color);
  font-weight: 500;
  font-size: .95rem;
}
header nav details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}
header nav details summary::-webkit-details-marker { display: none; }
header nav details[open] ul {
  position: absolute;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
  border: 1px solid var(--border);
  min-width: 240px;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-cta a:first-child {
  color: var(--primary-color);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--primary-color);
  color: #fff !important;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none !important;
  transition: background .15s;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--primary-color);
  font-weight: 600;
  display: inline-block;
  text-decoration: none !important;
}
.btn-secondary:hover { background: var(--primary-light); }

/* ---------- Sections ---------- */
section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-eyebrow, .hero-eyebrow, .article-eyebrow {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .08em;
  font-weight: 600;
  margin: 0 0 .5rem;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.hero img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 480px;
}
.hero-intro, .hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}
.hero-trust-mini, .hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: .95rem;
}
.hero-trust .badges { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Reassurance band ---------- */
.reassurance-band {
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 2rem 1.5rem;
  max-width: 100%;
  margin: 0;
}
.reassurance-item {
  text-align: center;
  padding: .5rem;
}
.reassurance-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: .25rem;
}
.reassurance-item span {
  font-size: .9rem;
  color: var(--text-muted);
}

/* ---------- Reviews ---------- */
.aggregate-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.aggregate-rating .rating-number {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}
.aggregate-rating .stars { color: var(--accent); font-size: 1.3rem; }
.aggregate-rating .review-count { color: var(--text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.review .stars { color: var(--accent); margin-bottom: .5rem; }
.review blockquote {
  margin: 0 0 1rem;
  font-style: normal;
  color: var(--text-color);
  font-size: .95rem;
}
.review-author { font-size: .9rem; margin: 0; }
.review-source { font-size: .8rem; color: var(--text-muted); margin: .25rem 0 0; }

/* ---------- About ---------- */
.about-section { background: var(--bg-soft); max-width: 100%; }
.about-section > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.values-grid > div {
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-color);
  font-size: .95rem;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  display: block;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-color) !important;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none !important;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}
.service-card h3 { color: var(--primary-color); }
.service-card .service-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Pricing table ---------- */
.pricing-estimative table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #fff;
}
.pricing-estimative th, .pricing-estimative td,
table th, table td {
  border: 1px solid var(--border);
  padding: .85rem 1rem;
  text-align: left;
}
.pricing-estimative th, table th {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
}
.pricing-disclaimer {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- Realisations ---------- */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.realisations-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.realisations-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.realisations-grid h3 { padding: 1rem 1rem .25rem; font-size: 1rem; }
.realisations-grid p { padding: 0 1rem 1rem; font-size: .85rem; color: var(--text-muted); margin: 0; }

.section-cta-row { text-align: center; margin-top: 2rem; }

/* ---------- Zone d'intervention ---------- */
.zone-section { background: var(--bg-soft); max-width: 100%; }
.zone-section > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.zone-map iframe { border-radius: var(--radius); width: 100%; }
.city-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
}
.city-list li { padding: .25rem 0; }
.city-list strong { color: var(--primary-color); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-grid article {
  text-align: center;
}
.team-grid img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}
.team-grid h3 { margin-bottom: .25rem; }
.team-grid .role {
  color: var(--primary-color);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: .5rem;
}
.team-grid p { font-size: .9rem; color: var(--text-muted); }

/* ---------- Contact ---------- */
#contact { background: var(--primary-light); max-width: 100%; }
#contact > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}
.contact-info { font-size: .95rem; }
.contact-info strong { color: var(--primary-color); }
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-weight: 500;
  font-size: .9rem;
}
.contact-form input, .contact-form select, .contact-form textarea {
  padding: .75rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--primary-color);
  border-color: transparent;
}
.form-promise {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}
.form-disclaimer {
  font-size: .8rem;
  color: var(--text-muted);
  margin: .5rem 0 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: .85rem;
  color: var(--text-muted);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.breadcrumb li:not(:last-child)::after { content: " › "; color: var(--text-muted); margin-left: .5rem; }

/* ---------- Local context ---------- */
.local-context p { max-width: 80ch; }

/* ---------- Why us / FAQ ---------- */
.why-us-city ul { padding-left: 1.25rem; }
.why-us-city li { margin-bottom: .75rem; }

#faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
}
#faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--text-color);
}
#faq details[open] summary { color: var(--primary-color); margin-bottom: .75rem; }

/* ---------- Blog article ---------- */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.blog-post .lead { font-size: 1.15rem; color: var(--text-muted); }
.blog-post img { border-radius: var(--radius); margin: 1.5rem 0; }
.blog-post h2 { margin-top: 2.5rem; }
.blog-post h3 { margin-top: 1.5rem; }
.toc {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.toc h2 { font-size: 1.1rem; margin-bottom: .5rem; }
.toc ol { padding-left: 1.25rem; margin: 0; }
.inline-cta {
  background: var(--primary-light);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.inline-cta p { margin: 0; }
.inline-cta .btn-primary { margin-top: .75rem; }
.author-block {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-top: 2.5rem;
}
.author-block img { width: 80px; height: 80px; border-radius: 50%; margin: 0; }
.related-articles { margin-top: 2.5rem; }
.related-articles ul { list-style: none; padding: 0; }
.related-articles li { padding: .5rem 0; border-bottom: 1px solid var(--border); }

.article-header { text-align: left; }
.article-meta { font-size: .85rem; color: var(--text-muted); }

/* ---------- Blog index ---------- */
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none !important;
  color: var(--text-color) !important;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card .blog-card-body { padding: 1.25rem; }
.blog-card h2 { font-size: 1.1rem; margin-bottom: .5rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--text-color);
  color: #fff;
  padding: 3rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  max-width: 100%;
}
footer a { color: #fff; opacity: .85; }
footer a:hover { opacity: 1; color: var(--accent); text-decoration: none; }
footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: .25rem 0; font-size: .9rem; }
footer .footer-brand img { height: 50px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
footer .footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem;
  font-size: .85rem;
  opacity: .8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-legal ul { display: flex; gap: 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  header { flex-wrap: wrap; padding: .75rem 1rem; }
  header nav { order: 3; width: 100%; }
  header nav ul { justify-content: center; gap: 1rem; }
  .header-cta { gap: .5rem; }
  .header-cta .btn-primary { padding: .6rem 1rem; font-size: .85rem; }
  section { padding: 2.5rem 1rem; }
  .zone-grid, .contact-grid { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  footer .footer-legal { flex-direction: column; gap: 1rem; text-align: center; }
  footer .footer-legal ul { justify-content: center; }
  .top-bar { font-size: .75rem; gap: .75rem; }
}

/* ---- From contact.html ---- */
/* ================================================================
   Ravalement Façade Pornic — Ravalement façade Pornic
   Couleurs : océan profond #1B5E7E (primary), sable #F5F1EA, ardoise #2C3E50
   ================================================================ */

:root {
  --primary-color: #1B5E7E;
  --primary-dark: #134A65;
  --primary-light: #E6F0F4;
  --accent: #D9A441;
  --text-color: #2C3E50;
  --text-muted: #5B6C7C;
  --bg: #ffffff;
  --bg-soft: #F5F1EA;
  --border: #E1E6EA;
  --success: #2E7D5B;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(27, 94, 126, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background: var(--bg);
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--text-color);
  line-height: 1.25;
  margin-top: 0;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: 0 0 1rem; }
h3 { font-size: 1.2rem; margin: 0 0 .5rem; }

p { margin: 0 0 1rem; }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--primary-dark);
  color: #fff;
  font-size: .85rem;
  padding: .5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--accent); text-decoration: none; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.5rem;
  gap: 1rem;
}
header > a img { height: 72px; width: auto; }
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
header nav a {
  color: var(--text-color);
  font-weight: 500;
  font-size: .95rem;
}
header nav details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}
header nav details summary::-webkit-details-marker { display: none; }
header nav details[open] ul {
  position: absolute;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
  border: 1px solid var(--border);
  min-width: 240px;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-cta a:first-child {
  color: var(--primary-color);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--primary-color);
  color: #fff !important;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none !important;
  transition: background .15s;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--primary-color);
  font-weight: 600;
  display: inline-block;
  text-decoration: none !important;
}
.btn-secondary:hover { background: var(--primary-light); }

/* ---------- Sections ---------- */
section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-eyebrow, .hero-eyebrow, .article-eyebrow {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .08em;
  font-weight: 600;
  margin: 0 0 .5rem;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.hero img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 480px;
}
.hero-intro, .hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}
.hero-trust-mini, .hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: .95rem;
}
.hero-trust .badges { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Reassurance band ---------- */
.reassurance-band {
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 2rem 1.5rem;
  max-width: 100%;
  margin: 0;
}
.reassurance-item {
  text-align: center;
  padding: .5rem;
}
.reassurance-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: .25rem;
}
.reassurance-item span {
  font-size: .9rem;
  color: var(--text-muted);
}

/* ---------- Reviews ---------- */
.aggregate-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.aggregate-rating .rating-number {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}
.aggregate-rating .stars { color: var(--accent); font-size: 1.3rem; }
.aggregate-rating .review-count { color: var(--text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.review .stars { color: var(--accent); margin-bottom: .5rem; }
.review blockquote {
  margin: 0 0 1rem;
  font-style: normal;
  color: var(--text-color);
  font-size: .95rem;
}
.review-author { font-size: .9rem; margin: 0; }
.review-source { font-size: .8rem; color: var(--text-muted); margin: .25rem 0 0; }

/* ---------- About ---------- */
.about-section { background: var(--bg-soft); max-width: 100%; }
.about-section > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.values-grid > div {
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-color);
  font-size: .95rem;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  display: block;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-color) !important;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none !important;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}
.service-card h3 { color: var(--primary-color); }
.service-card .service-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Pricing table ---------- */
.pricing-estimative table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #fff;
}
.pricing-estimative th, .pricing-estimative td,
table th, table td {
  border: 1px solid var(--border);
  padding: .85rem 1rem;
  text-align: left;
}
.pricing-estimative th, table th {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
}
.pricing-disclaimer {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- Realisations ---------- */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.realisations-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.realisations-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.realisations-grid h3 { padding: 1rem 1rem .25rem; font-size: 1rem; }
.realisations-grid p { padding: 0 1rem 1rem; font-size: .85rem; color: var(--text-muted); margin: 0; }

.section-cta-row { text-align: center; margin-top: 2rem; }

/* ---------- Zone d'intervention ---------- */
.zone-section { background: var(--bg-soft); max-width: 100%; }
.zone-section > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.zone-map iframe { border-radius: var(--radius); width: 100%; }
.city-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
}
.city-list li { padding: .25rem 0; }
.city-list strong { color: var(--primary-color); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-grid article {
  text-align: center;
}
.team-grid img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}
.team-grid h3 { margin-bottom: .25rem; }
.team-grid .role {
  color: var(--primary-color);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: .5rem;
}
.team-grid p { font-size: .9rem; color: var(--text-muted); }

/* ---------- Contact ---------- */
#contact { background: var(--primary-light); max-width: 100%; }
#contact > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}
.contact-info { font-size: .95rem; }
.contact-info strong { color: var(--primary-color); }
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-weight: 500;
  font-size: .9rem;
}
.contact-form input, .contact-form select, .contact-form textarea {
  padding: .75rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--primary-color);
  border-color: transparent;
}
.form-promise {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}
.form-disclaimer {
  font-size: .8rem;
  color: var(--text-muted);
  margin: .5rem 0 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: .85rem;
  color: var(--text-muted);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.breadcrumb li:not(:last-child)::after { content: " › "; color: var(--text-muted); margin-left: .5rem; }

/* ---------- Local context ---------- */
.local-context p { max-width: 80ch; }

/* ---------- Why us / FAQ ---------- */
.why-us-city ul { padding-left: 1.25rem; }
.why-us-city li { margin-bottom: .75rem; }

#faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
}
#faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--text-color);
}
#faq details[open] summary { color: var(--primary-color); margin-bottom: .75rem; }

/* ---------- Blog article ---------- */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.blog-post .lead { font-size: 1.15rem; color: var(--text-muted); }
.blog-post img { border-radius: var(--radius); margin: 1.5rem 0; }
.blog-post h2 { margin-top: 2.5rem; }
.blog-post h3 { margin-top: 1.5rem; }
.toc {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.toc h2 { font-size: 1.1rem; margin-bottom: .5rem; }
.toc ol { padding-left: 1.25rem; margin: 0; }
.inline-cta {
  background: var(--primary-light);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.inline-cta p { margin: 0; }
.inline-cta .btn-primary { margin-top: .75rem; }
.author-block {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-top: 2.5rem;
}
.author-block img { width: 80px; height: 80px; border-radius: 50%; margin: 0; }
.related-articles { margin-top: 2.5rem; }
.related-articles ul { list-style: none; padding: 0; }
.related-articles li { padding: .5rem 0; border-bottom: 1px solid var(--border); }

.article-header { text-align: left; }
.article-meta { font-size: .85rem; color: var(--text-muted); }

/* ---------- Blog index ---------- */
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none !important;
  color: var(--text-color) !important;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card .blog-card-body { padding: 1.25rem; }
.blog-card h2 { font-size: 1.1rem; margin-bottom: .5rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--text-color);
  color: #fff;
  padding: 3rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  max-width: 100%;
}
footer a { color: #fff; opacity: .85; }
footer a:hover { opacity: 1; color: var(--accent); text-decoration: none; }
footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: .25rem 0; font-size: .9rem; }
footer .footer-brand img { height: 50px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
footer .footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem;
  font-size: .85rem;
  opacity: .8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-legal ul { display: flex; gap: 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  header { flex-wrap: wrap; padding: .75rem 1rem; }
  header nav { order: 3; width: 100%; }
  header nav ul { justify-content: center; gap: 1rem; }
  .header-cta { gap: .5rem; }
  .header-cta .btn-primary { padding: .6rem 1rem; font-size: .85rem; }
  section { padding: 2.5rem 1rem; }
  .zone-grid, .contact-grid { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  footer .footer-legal { flex-direction: column; gap: 1rem; text-align: center; }
  footer .footer-legal ul { justify-content: center; }
  .top-bar { font-size: .75rem; gap: .75rem; }
}


/* ---------- Contact page v2 ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  display: flex; flex-direction: column;
  background: #fff;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-color) !important;
  text-decoration: none !important;
  transition: all .25s ease;
}
.service-card:hover {
  box-shadow: 0 20px 40px -15px rgba(27, 94, 126, 0.22);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
  border: 1px solid rgba(27, 94, 126, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 1.25rem;
}
.service-card h3 { color: var(--text-color); font-size: 1.15rem; margin: 0 0 .6rem; font-weight: 700; }
.service-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.55; margin: 0 0 .75rem; }
.service-card .service-cta {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: auto; padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--primary-color); font-weight: 600; font-size: .88rem;
}

.why-us-section { background: #fff; }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.why-us-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: all .2s;
}
.why-us-card:hover { box-shadow: 0 12px 30px -8px rgba(27, 94, 126, 0.15); transform: translateY(-3px); border-color: var(--primary-light); }
.why-us-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.why-us-card h3 { color: var(--text-color); font-size: 1.05rem; margin-bottom: .5rem; font-weight: 700; }
.why-us-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.55; margin: 0; }
