/* ============================================
   STYLE.CSS — BGR Couverture & Construction
   ============================================ */

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 0.75rem; }
p:last-child { margin-bottom: 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: 56px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }

@media (max-width: 640px) {
  body { font-size: 16px; }
  h1   { font-size: 36px; }
  h2   { font-size: 28px; }
  h3   { font-size: 20px; }
}

/* === LAYOUT === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.section--alt         { background-color: var(--paper-2); }
.section--accent-soft { background-color: var(--accent-soft); }

@media (max-width: 640px) {
  .section {
    padding-top: var(--section-py-sm);
    padding-bottom: var(--section-py-sm);
  }
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 640px) {
  .section__header { flex-direction: column; align-items: flex-start; }
}

/* === UTILITIES === */
.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.5rem;
}

.accent { color: var(--accent); }

.img-placeholder {
  background: linear-gradient(135deg, #e8dfd0 0%, #cfc3ae 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.img-placeholder span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: rgba(246, 242, 235, 0.75);
  padding: 4px 10px;
  border-radius: 4px;
  text-align: center;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--accent {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn--full { width: 100%; justify-content: center; }

/* === CHIPS === */
.chip {
  display: inline-block;
  padding: 4px 12px;
  border: 1.5px solid var(--ink-faint);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.6);
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 235, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138, 131, 120, 0.3);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(28, 26, 23, 0.08);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}
.navbar__logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar__logo-sub {
  display: block;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--ink-soft);
  margin-top: 3px;
  font-family: var(--font-body);
}
.navbar__logo img {
  display: block;
  height: 44px;
  width: auto;
}
@media (max-width: 480px) {
  .navbar__logo img { height: 38px; }
}
.navbar__links {
  display: flex;
  gap: 0.125rem;
  margin: 0;
  padding: 0;
  margin-left: auto;
}
.navbar__links a {
  display: block;
  padding: 6px 11px;
  font-size: 14px;
  color: var(--ink-soft);
  border-radius: 6px;
  transition: var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active {
  color: var(--ink);
  background: rgba(28, 26, 23, 0.06);
}
.navbar__phone {
  font-size: 14px;
  padding: 9px 18px;
  flex-shrink: 0;
}
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
.navbar__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 960px) {
  .navbar__links { display: none; }
  .navbar__phone  { display: none; }
  .navbar__burger { display: flex; }

  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(138, 131, 120, 0.3);
    padding: 1rem var(--container-pad) 1.5rem;
    gap: 0.125rem;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(28, 26, 23, 0.08);
  }
  .navbar__links.open li { list-style: none; }
  .navbar__links.open li a {
    display: block;
    padding: 10px 12px;
    font-size: 16px;
  }
}

/* === HERO === */
.hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero__title {
  font-size: 54px;
  line-height: 1.07;
}
.hero__text {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero__chips {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.hero__media { aspect-ratio: 4/3; }
.hero__media .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: var(--radius-lg);
}

@media (max-width: 960px) {
  .hero { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__title { font-size: 44px; }
  .hero__media { order: -1; }
  .hero__media .img-placeholder { min-height: 280px; }
}
@media (max-width: 640px) {
  .hero__title { font-size: 36px; }
  .hero__media .img-placeholder { min-height: 220px; }
}

/* === SERVICES === */
.services__intro { margin-bottom: 2.5rem; }
.services__intro h2 { margin-top: 0.25rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.25rem;
  background: var(--paper);
  border: 1.5px solid rgba(28, 26, 23, 0.12);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(28, 26, 23, 0.09);
}
.service-card__icon { width: 48px; height: 48px; color: var(--accent); }
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 16px; font-weight: 600; margin: 0; }
.service-card p  { font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.45; }

@media (max-width: 1060px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

/* === POURQUOI BGR === */
.pourquoi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.pourquoi__intro { display: flex; flex-direction: column; gap: 1rem; }
.pourquoi__intro h2 { font-size: 42px; line-height: 1.08; }
.pourquoi__intro p  { color: var(--ink-soft); font-size: 16px; }

.pourquoi__values { display: flex; flex-direction: column; gap: 0.75rem; }
.value-card {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(28, 26, 23, 0.12);
  border-radius: var(--radius);
}
.value-card strong { display: block; margin-bottom: 0.25rem; font-size: 15px; }
.value-card p { font-size: 13px; color: var(--ink-soft); margin: 0; }

@media (max-width: 800px) {
  .pourquoi__grid { grid-template-columns: 1fr; gap: 2rem; }
  .pourquoi__intro h2 { font-size: 32px; }
}

/* === RÉALISATIONS === */
.realisations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.realisation-card .img-placeholder {
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.realisation-card .img-placeholder:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 24px rgba(28, 26, 23, 0.12);
}

@media (max-width: 800px) {
  .realisations__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .realisations__grid { grid-template-columns: 1fr; }
}

/* === CERTIFICATIONS === */
.certifs__intro { margin-bottom: 2rem; }
.certifs__intro h2 { margin-top: 0.25rem; }

.certifs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.certif-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--paper);
  border: 1.5px solid rgba(28, 26, 23, 0.12);
  border-radius: var(--radius);
  gap: 0.5rem;
}
.certif-item strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.certif-item span {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .certifs__grid { grid-template-columns: repeat(2, 1fr); }
}

/* === ZONE === */
.zone__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.zone__content { display: flex; flex-direction: column; gap: 1rem; }
.zone__content h2 { margin-top: 0.25rem; line-height: 1.15; }
.zone__content p   { color: var(--ink-soft); }
.zone__content p a { color: var(--accent); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.zone__note {
  font-size: 14px !important;
  font-style: italic;
  color: var(--ink-faint) !important;
}
.zone__map {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(28, 26, 23, 0.12);
}
#map { width: 100%; height: 100%; }

@media (max-width: 800px) {
  .zone__grid { grid-template-columns: 1fr; gap: 2rem; }
  .zone__map  { height: 300px; }
}

/* === BLOG === */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.article-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(28, 26, 23, 0.12);
  background: var(--paper);
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(28, 26, 23, 0.09);
}
.article-card__img { height: 180px; border-radius: 0; }
.article-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  flex: 1;
}
.article-card__cat { font-size: 12px; color: var(--ink-faint); font-weight: 500; }
.article-card h3 { font-size: 16px; font-weight: 600; line-height: 1.35; flex: 1; }
.article-card__link { font-size: 13px; color: var(--accent); font-weight: 500; margin-top: 0.25rem; }
.article-card__link:hover { text-decoration: underline; }

@media (max-width: 800px) {
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .blog__grid { grid-template-columns: 1fr; }
}

/* === CONTACT === */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact__intro {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 96px;
}
.contact__intro h2 { font-size: 42px; line-height: 1.08; margin-top: 0.25rem; }
.contact__intro > p { color: var(--ink-soft); }

.contact__coords {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(28, 26, 23, 0.12);
  padding-top: 1.25rem;
}
.contact__coord {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: var(--ink);
  transition: color var(--transition);
}
a.contact__coord:hover { color: var(--accent); }
.contact__coord-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.contact__coord-value { font-size: 17px; font-weight: 500; }

.contact__form { display: flex; flex-direction: column; gap: 1rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-label { font-size: 13px; font-weight: 500; color: var(--ink-soft); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(28, 26, 23, 0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-faint); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.form-textarea { resize: vertical; min-height: 120px; }

@media (max-width: 960px) {
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact__intro { position: static; }
  .contact__intro h2 { font-size: 32px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* === FOOTER === */
.footer { background: var(--ink); color: var(--paper); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.footer__logo-sub {
  display: block;
  font-size: 8.5px;
  letter-spacing: 2.5px;
  color: rgba(246, 242, 235, 0.45);
  margin-top: 3px;
  font-family: var(--font-body);
  font-weight: 400;
}
.footer__brand p { font-size: 14px; color: rgba(246, 242, 235, 0.55); line-height: 1.65; }
.footer__col strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1rem;
}
.footer__col p { font-size: 14px; color: rgba(246, 242, 235, 0.55); line-height: 1.9; }
.footer__col p a,
.footer__col nav a {
  color: rgba(246, 242, 235, 0.55);
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: color var(--transition);
  margin-bottom: 0.35rem;
}
.footer__col p a:hover,
.footer__col nav a:hover { color: var(--paper); }

.footer__bottom { border-top: 1px solid rgba(246, 242, 235, 0.1); }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.footer__bottom span,
.footer__bottom a { font-size: 13px; color: rgba(246, 242, 235, 0.35); }
.footer__bottom a:hover { color: var(--paper); }

@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* === FLOATING CALL BUTTON (mobile) === */
.call-fab {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(201, 122, 90, 0.45);
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
  align-items: center;
  gap: 8px;
}
.call-fab.visible { display: inline-flex; }
.call-fab:hover { opacity: 0.92; transform: translateX(-50%) translateY(-1px); }

@media (min-width: 961px) {
  .call-fab { display: none !important; }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === TOPBAR URGENCE === */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: 13.5px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.topbar__text { display: inline-flex; align-items: center; gap: 8px; color: rgba(246,242,235,0.9); }
.topbar__link { color: var(--paper); font-weight: 600; white-space: nowrap; transition: color var(--transition); }
.topbar__link:hover { color: var(--accent); }
.topbar__pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(201,122,90,0.6);
  animation: topbarPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes topbarPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,122,90,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(201,122,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,122,90,0); }
}
@media (max-width: 720px) {
  .topbar__text { display: none; }
  .topbar__inner { justify-content: center; }
}

/* === HERO — RÉASSURANCE === */
.hero__note {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 500;
}
.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(28,26,23,0.1);
  border-radius: 100px;
  padding: 7px 16px;
  align-self: flex-start;
}
.hero__stars { color: #e0a458; letter-spacing: 1px; }

/* === CHIFFRES-CLÉS === */
.stats { background: var(--ink); color: var(--paper); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.stat { text-align: center; display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat__label { font-size: 13px; color: rgba(246,242,235,0.65); }
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; }
  .stat__num { font-size: 32px; }
}

/* === CERTIFS — AIDES === */
.certifs__aides {
  margin-top: 0.75rem;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 15px;
}
.certifs__aides strong { color: var(--ink); }

/* === FORM — RÉASSURANCE === */
.form-reassurance {
  text-align: center;
  font-size: 13px;
  color: var(--ink-faint);
  margin: 0.25rem 0 0;
}
.form-reassurance--alt { color: var(--ink-soft); }
.form-reassurance a { color: var(--accent); font-weight: 600; }
.form-reassurance a:hover { text-decoration: underline; }

/* ============================================
   SOUS-PAGES (services, villes, blog)
   ============================================ */

/* Fil d'ariane */
.breadcrumb {
  font-size: 13px;
  color: var(--ink-faint);
  padding-top: 1.5rem;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-current] { color: var(--ink); }

/* Hero de sous-page */
.page-hero { padding: 2.5rem 0 3rem; }
.page-hero .kicker { margin-bottom: 0.75rem; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.08;
  max-width: 20ch;
}
.page-hero__lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 1.25rem;
  line-height: 1.7;
}
.page-hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* Contenu éditorial */
.prose { max-width: 72ch; }
.prose h2 {
  font-size: 28px;
  margin: 2.5rem 0 1rem;
}
.prose h3 {
  font-size: 20px;
  margin: 1.75rem 0 0.75rem;
}
.prose p { color: var(--ink-soft); margin: 0 0 1.1rem; line-height: 1.75; }
.prose ul.prose-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.prose ul.prose-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.prose ul.prose-list li::before {
  content: "↳";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.prose a { color: var(--accent); font-weight: 500; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--ink); }

/* Encadré info / FAQ */
.callout {
  background: var(--accent-soft);
  border: 1.5px solid rgba(201,122,90,0.35);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.callout strong { display: block; margin-bottom: 0.35rem; }
.faq { margin-top: 1.5rem; }
.faq-item {
  border-top: 1px solid rgba(28,26,23,0.12);
  padding: 1.25rem 0;
}
.faq-item h3 { font-size: 17px; margin: 0 0 0.5rem; }
.faq-item p { margin: 0; }

/* Bande CTA de bas de page */
.cta-band { background: var(--ink); color: var(--paper); }
.cta-band__inner {
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--paper); font-size: 30px; max-width: 22ch; }
.cta-band p { color: rgba(246,242,235,0.65); margin-top: 0.5rem; }
.cta-band__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Pages liées */
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.related-card {
  display: block;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border: 1.5px solid rgba(28,26,23,0.12);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.related-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.related-card strong { display: block; font-family: var(--font-display); font-size: 17px; }
.related-card span { font-size: 13px; color: var(--ink-soft); }
@media (max-width: 800px) { .related__grid { grid-template-columns: 1fr; } }

/* === PHOTOS RÉELLES === */
.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.realisation-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.realisation-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.realisation-card img:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 24px rgba(28, 26, 23, 0.12);
}
.realisation-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.9rem 0.6rem;
  background: linear-gradient(to top, rgba(28,26,23,0.78), rgba(28,26,23,0));
  color: var(--paper);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  pointer-events: none;
}
img.article-card__img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.prose-photo {
  margin: 2rem 0;
}
.prose-photo img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.prose-photo figcaption {
  margin-top: 0.6rem;
  font-size: 13px;
  color: var(--ink-soft);
}

/* === FOCUS === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
