/* ── Variables ── */
:root {
  --gold: #b8960c;
  --gold-light: #d4af37;
  --dark: #1a1a18;
  --cream: #f5f0e8;
}

/* ── Smooth scroll + ancres sous la navbar ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ── Reset & base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  -webkit-text-size-adjust: 100%;
}

/* Pages sans hero : décalage pour la navbar fixe */
body.has-navbar-offset {
  padding-top: 72px;
}

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

/* ── Barre de navigation ── */
.site-navbar {
  padding: 0.85rem 0;
  z-index: 1030;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

/* Transparente sur le hero */
.site-navbar[data-variant="transparent"] {
  background-color: rgba(26, 20, 10, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Solide après scroll ou sur pages sans hero */
.site-navbar[data-variant="transparent"].scrolled,
.site-navbar[data-variant="solid"] {
  background-color: var(--dark);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: none;
}

.site-navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: #fff !important;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.site-navbar .nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82) !important;
  padding: 0.45rem 0.8rem !important;
  border-radius: 3px;
  transition: color 0.2s;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--gold-light) !important;
}

/* Lien Contact = CTA doré */
.site-navbar .nav-link-cta {
  background: rgba(184, 150, 12, 0.85);
  color: #fff !important;
  margin-left: 0.25rem;
}

.site-navbar .nav-link-cta:hover {
  background: var(--gold-light);
  color: #fff !important;
}

/* Hamburger doré */
.site-navbar .navbar-toggler {
  border-color: rgba(212, 175, 55, 0.5);
  padding: 0.3rem 0.55rem;
  min-width: 44px;
  min-height: 44px;
}

.site-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4);
  outline: none;
}

@media (max-width: 991.98px) {
  .site-navbar[data-variant="transparent"],
  .site-navbar[data-variant="solid"] {
    background-color: var(--dark) !important;
    backdrop-filter: none;
  }
  .site-navbar .navbar-nav .nav-item + .nav-item {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
  .site-navbar .nav-link {
    padding: 0.7rem 0 !important;
  }
  .site-navbar .nav-link-cta {
    display: inline-block;
    margin: 0.5rem 0 0;
    background: var(--gold) !important;
    border-bottom: none !important;
  }
  .site-navbar .navbar-collapse {
    padding: 0.5rem 0 0.75rem;
  }
}

/* ── Footer ── */
.site-footer {
  background-color: var(--dark);
  color: rgba(240, 236, 227, 0.7);
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
  border-top: 3px solid var(--gold-light);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.footer-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(240, 236, 227, 0.55);
}

.footer-desc strong {
  color: rgba(240, 236, 227, 0.8);
  font-weight: 400;
}

.footer-heading {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-links li {
  margin-bottom: 0.5rem;
}

.footer-nav-links a {
  font-size: 0.88rem;
  color: rgba(240, 236, 227, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-links a:hover {
  color: var(--gold-light);
}

.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(240, 236, 227, 0.65);
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}

.footer-contact-link:hover {
  color: var(--gold-light);
}

.footer-contact-link .bi {
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  text-align: center;
}

.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 0.76rem;
  color: rgba(240, 236, 227, 0.35);
  margin: 0;
}

/* ── Page statique générique (blog, contact dédié…) ── */
.page-hero {
  background-color: var(--dark);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  border-bottom: 3px solid var(--gold-light);
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}

/* ── Hero / Bannière ── */
.hero {
  position: relative;
  min-height: 100svh; /* svh : évite le débordement sur iOS Safari */
  min-height: 100vh;  /* fallback */
  background:
    url('../img/hero-bg.png') center center / cover no-repeat;
  background-color: #2c2416;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 20, 10, 0.78) 0%,
    rgba(26, 20, 10, 0.55) 100%
  );
}

.hero-content {
  color: #fff;
  padding: clamp(2rem, 8vw, 4rem) 1rem;
  width: 100%;
}

.hero-tagline {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: clamp(0.7rem, 2.5vw, 1rem);
  color: var(--gold-light);
  margin-bottom: 1rem;
  word-break: break-word;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  margin-bottom: 1.4rem;
  word-break: break-word;
}

.hero-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 2px;
  background: var(--gold-light);
  margin: 0.8rem auto 0;
}

.hero-region {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 2.5vw, 1.2rem);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.5rem;
  word-break: break-word;
}

/* ── Section Services ── */
.services-section {
  background-color: var(--cream);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--dark);
  position: relative;
  padding-bottom: 0.8rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold-light);
  margin: 0.6rem auto 0;
}

/* Carte service */
.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  /* Touch target : au moins 44px de zone interactive */
  min-height: 44px;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  color: inherit;
  outline: none;
}

.service-card:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}

.service-img-wrap {
  background-color: #d8d0c2;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

.service-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.service-label {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.8rem, 2.8vw, 0.95rem);
  font-weight: 400;
  color: var(--dark);
  margin: 0.65rem 0 0;
  line-height: 1.4;
  text-align: center;
  padding: 0 0.4rem 0.5rem;
  transition: color 0.2s;
  flex: 1; /* pousse vers le bas si hauteurs inégales */
}

.service-card:hover .service-label,
.service-card:focus-visible .service-label {
  color: var(--gold);
}

/* ── Section À propos ── */
.apropos-section {
  background-color: #fff;
  /* Liseré doré en haut pour séparer visuellement du cream des services */
  border-top: 3px solid var(--gold-light);
}

.apropos-section .section-title {
  color: var(--dark);
}

/* Côté gauche */
.apropos-intro {
  position: relative;
}

.apropos-since {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
}

.apropos-year {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 1.2rem;
  /* Soulignement doré */
  padding-bottom: 0.4rem;
  border-bottom: 3px solid var(--gold-light);
  display: inline-block;
}

.apropos-text {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  line-height: 1.8;
  color: #3a3530;
  margin-bottom: 1rem;
}

/* Badges gratuits */
.apropos-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--dark);
  border-radius: 6px;
  padding: clamp(0.8rem, 2vw, 1.2rem) 0.5rem;
  gap: 0.5rem;
  height: 100%;
}

.apropos-badge-icon {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--gold-light);
}

.apropos-badge span {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.65rem, 1.8vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}

/* Liste catégories */
.apropos-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.apropos-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(184, 150, 12, 0.18);
}

.apropos-list-item--last {
  border-bottom: none;
}

.apropos-list-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.apropos-list-icon .bi {
  font-size: 1.1rem;
  color: var(--gold-light);
}

.apropos-list-body {
  flex: 1;
}

.apropos-list-title {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.apropos-list-body p {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.82rem, 1.6vw, 0.92rem);
  color: #5a5045;
  line-height: 1.65;
  margin: 0;
}

.apropos-list-body em {
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
}

/* ── Section Réalisations ── */
.realisations-section {
  background-color: var(--dark);
  color: #f0ece3;
}

.realisations-section .section-title {
  color: #fff;
}

.realisations-section .section-title::after {
  background: var(--gold-light);
}

/* Carousel */
.carousel-realisation {
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.carousel-realisation-img {
  width: 100%;
  height: clamp(220px, 42vw, 500px);
  object-fit: cover;
  display: block;
  border-radius: 6px;
  /* Placeholder gris-beige si image absente */
  background-color: #4a4030;
}

.carousel-badge {
  display: inline-block;
  background: rgba(184, 150, 12, 0.88);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

/* Flèches carousel : fond doré */
.carousel-realisation .carousel-control-prev,
.carousel-realisation .carousel-control-next {
  width: 44px;
  opacity: 1;
}

.carousel-realisation .carousel-control-prev-icon,
.carousel-realisation .carousel-control-next-icon {
  background-color: rgba(184, 150, 12, 0.75);
  border-radius: 50%;
  padding: 18px;
  background-size: 50% 50%;
  transition: background-color 0.2s;
}

.carousel-realisation .carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-realisation .carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--gold);
}

/* Indicateurs */
.carousel-realisation .carousel-indicators [data-bs-target] {
  background-color: var(--gold-light);
  opacity: 0.5;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  transition: opacity 0.2s;
}

.carousel-realisation .carousel-indicators .active {
  opacity: 1;
}

/* Texte côté */
.realisations-text {
  padding: 0 0.5rem;
}

.realisations-intro {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  color: #f0ece3;
}

.realisations-text p {
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  line-height: 1.8;
  color: rgba(240, 236, 227, 0.85);
  margin-bottom: 1.4rem;
}

.realisations-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.realisations-list li {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.88rem, 1.8vw, 0.97rem);
  color: rgba(240, 236, 227, 0.8);
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.realisations-list li:last-child {
  border-bottom: none;
}

.realisations-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
}

/* ── Section Contact ── */
.contact-section {
  background-color: var(--gold-light);
  color: #f0ece3;
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-section .section-title {
  color: #fff;
}

.contact-section .section-title::after {
  background: var(--gold-light);
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-hook {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.contact-sub {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: rgba(240, 236, 227, 0.8);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Cartes de contact */
.contact-channels {
  font-style: normal;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(184, 150, 12, 0.2);
  border-radius: 6px;
  padding: clamp(1.5rem, 4vw, 2.5rem) 1.5rem;
  height: 100%;
  transition: box-shadow 0.25s ease, border-color 0.25s;
}

.contact-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-light);
}

.contact-card-link {
  text-decoration: none;
  display: inline-block;
  border-radius: 50%;
}

.contact-card-link:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.contact-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background 0.25s;
}

.contact-card:hover .contact-icon-wrap {
  background: var(--gold);
}

.contact-icon-wrap .bi {
  font-size: 1.6rem;
  color: var(--gold-light);
  transition: color 0.25s;
}

.contact-card:hover .contact-icon-wrap .bi {
  color: #fff;
}

.contact-type {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Valeur + bouton copier */
.contact-value-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
  color: var(--dark);
  text-decoration: none;
  word-break: break-all;
  line-height: 1.3;
  transition: color 0.2s;
}

.contact-value:hover {
  color: var(--gold);
}

/* Bouton copier */
.btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(184, 150, 12, 0.35);
  border-radius: 4px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  position: relative;
}

.btn-copy:hover {
  background: var(--gold-light);
  color: #fff;
  border-color: var(--gold-light);
}

.btn-copy:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.btn-copy .bi {
  font-size: 0.9rem;
  pointer-events: none;
}

/* Tooltip "Copié !" */
.btn-copy::after {
  content: 'Copié !';
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: var(--dark);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 3px 8px;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
}

.btn-copy.copied::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.btn-copy.copied {
  background: #2e7d52;
  border-color: #2e7d52;
  color: #fff;
}

/* ── Page Blog : en construction ── */
.blog-construction {
  padding: clamp(2.5rem, 6vw, 4rem) 1rem;
}

.blog-construction-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.blog-construction-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.blog-construction-text {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  color: #5a5045;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  min-height: 44px;
}

.blog-btn-solid {
  background: var(--dark);
  color: #fff;
  border: 2px solid var(--dark);
}

.blog-btn-solid:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.blog-btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(26, 20, 10, 0.3);
}

.blog-btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold);
}

/* ── Page Contact : zone d'intervention ── */
.contact-zone-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.contact-zone-text {
  font-size: clamp(0.88rem, 1.8vw, 0.98rem);
  color: #5a5045;
  line-height: 1.75;
}

/* ── Secteurs d'intervention ── */
.secteur-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem 0.5rem;
  background: #fff;
  border: 1px solid #e5ddd0;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.secteur-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 2px 12px rgba(184, 150, 12, 0.12);
  transform: translateY(-2px);
  text-decoration: none;
}

.secteur-card--highlight {
  border-color: var(--gold);
  background: #fffdf4;
}

.secteur-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.secteur-card--list {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.75rem 1.25rem;
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dark);
  border-left: 3px solid transparent;
  gap: 0;
}

.secteur-card--list:hover {
  color: var(--gold);
  border-color: var(--gold-light);
  border-left-color: var(--gold);
  background: #faf7f0;
  box-shadow: none;
  transform: none;
}

.secteur-map {
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.08));
}

.secteur-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.secteur-name {
  font-size: 0.82rem;
  color: var(--dark);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ── Media queries ciblées ── */

/* Très petits écrans : 1 colonne sous 400px */
@media (max-width: 399px) {
  .row > [class*="col-6"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Tablettes paysage / desktop intermédiaire */
@media (min-width: 992px) {
  .service-label {
    font-size: 0.95rem;
  }
}

/* ── Fil d'Ariane (breadcrumb) ── */
.breadcrumb-bar {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 0.45rem 0;
}

.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #bbb;
}

.breadcrumb-item.active {
  color: var(--dark);
}

/* ── Liens de villes ── */
.ville-link {
  display: block;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid #e5ddd0;
  border-radius: 4px;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}

.ville-link:hover {
  border-color: var(--gold-light);
  color: var(--gold);
}
