/* ===== HERO EDITORIAL CENTRE (HERO-EDITORIAL-CENTRE) ===== */
.hero-wrapper {
  padding-top: var(--header-h-mobile);
}
.hero-centre {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px,8vw,100px) clamp(20px,4vw,48px) clamp(24px,4vw,40px);
}
.hero-centre__eyebrow {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-centre__eyebrow::before,
.hero-centre__eyebrow::after {
  content: "";
  width: 20px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.hero-centre__title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.02;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -.01em;
}
.hero-centre__title em {
  font-style: italic;
  color: var(--accent);
}
.hero-centre__sub {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: var(--text-2);
  margin: 20px auto 28px;
  max-width: 52ch;
  line-height: 1.65;
}
.hero-centre__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-centre__band {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: clamp(28px, 5vw, 52px);
}
.hero-centre__band img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== RÉALISATIONS (teaser masonry LAY-5) ===== */
.realisations-section { background: var(--bg); }
.realisations-section .section-head { text-align: center; }
.realisations-section .section-head .section-eyebrow { justify-content: center; }
.realisations-section .section-head .section-eyebrow::before { display: none; }

.gal-masonry {
  column-count: 3;
  column-gap: 12px;
  margin-bottom: 32px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  cursor: pointer;
  border-radius: var(--r-md);
  overflow: hidden;
}
.gal-item img {
  width: 100%;
  display: block;
  border-radius: var(--r-md);
  transition: transform .4s ease;
}
.gal-item:hover img { transform: scale(1.04); }
.gal-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  border-radius: var(--r-md);
}
.gal-item:hover .gal-item__overlay { opacity: 1; }
.gal-item__tag {
  font-family: var(--ff-ui);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  background: color-mix(in srgb, #fff 20%, transparent);
  padding: .25rem .6rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.gal-cta { text-align: center; }

/* ===== SERVICES (LAY-5, grid-3, card stripe) ===== */
.services-section { background: var(--bg-alt); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-top: 8px;
}
.svc-card {
  /* c-stripe */
  border-left: 4px solid var(--accent);
  background: color-mix(in srgb, var(--text) 3%, var(--bg));
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 24px 22px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.svc-card:hover {
  box-shadow: 0 4px 18px color-mix(in srgb, var(--accent) 18%, transparent);
  transform: translateY(-3px);
}
@media (prefers-reduced-motion: reduce) {
  .svc-card { transition: none; }
  .svc-card:hover { transform: none; }
}
.svc-num {
  font-family: var(--ff-display);
  font-size: .85rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 8px;
}
.svc-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.svc-card p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.55;
  max-width: none;
}

/* ===== À PROPOS ===== */
.apropos-section { background: var(--bg); }
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.apropos-text p {
  font-size: 1.02rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 16px;
}
.apropos-text p::first-letter {
  font-family: var(--ff-display);
  font-size: 2.8em;
  float: left;
  line-height: .82;
  margin: .05em .12em 0 0;
  color: var(--accent);
}
.apropos-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.apropos-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-2);
}
.apropos-list li::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 5.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}
.apropos-media {
  position: relative;
}
.apropos-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}
.apropos-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary);
  color: #E8F0EC;
  font-family: var(--ff-display);
  font-size: .92rem;
  font-style: italic;
  padding: .5rem 1rem;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* ===== AVIS (LAY-5, cards, 1 avis vide) ===== */
.avis-section { background: var(--bg-alt); }
.avis-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.avis-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.avis-card--honest {
  background: color-mix(in srgb, var(--accent) 6%, var(--bg));
  border-color: color-mix(in srgb, var(--accent) 24%, transparent);
}
.avis-card--cta {
  background: var(--primary);
  border-color: var(--primary);
  align-items: center;
  text-align: center;
}
.avis-card--cta :where(h3, p, span) { color: #E8F0EC; }
.avis-card--cta h3 {
  font-size: 1rem;
  color: #E8F0EC;
}
.avis-card--cta p {
  font-size: .9rem;
  color: color-mix(in srgb, #E8F0EC 75%, #4A8B7F);
  max-width: 28ch;
  margin: 0 auto;
}
.avis-card blockquote {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  max-width: none;
}
.avis-card blockquote::before { content: "\201C"; }
.avis-card blockquote::after  { content: "\201D"; }
.avis-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.avis-author-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-2);
}
.avis-date {
  font-size: .78rem;
  color: var(--text-mute);
}
.avis-lien-google {
  text-align: center;
  margin-top: 28px;
}
.avis-lien-google a {
  font-size: .92rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--primary);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-sep {
  width: 1px;
  background: color-mix(in srgb, #E8F0EC 16%, #1F3531);
  display: none;
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--accent-2);
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: color-mix(in srgb, #E8F0EC 55%, #4A8B7F);
}

/* ===== FAQ ===== */
.faq-section { background: var(--bg); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform .3s ease;
  display: grid;
  place-items: center;
}
.faq-chevron::after {
  content: "";
  display: block;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s ease;
  margin-top: -4px;
}
.faq-trigger[aria-expanded="true"] .faq-chevron::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq-answer {
  padding: 0 0 20px;
  font-size: .98rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 64ch;
}

/* ===== ZONE ===== */
.zone-section { background: var(--bg-alt); }
.zone-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.zone-status { margin-bottom: 20px; }
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}
.zone-chip {
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}
.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  padding-top: 62%;
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--bg); }
.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-method {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-method__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-method__icon svg { width: 22px; height: 22px; }
.contact-method__label {
  font-family: var(--ff-ui);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-mute);
  margin-bottom: 2px;
}
.contact-method__val {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.contact-method__val a { color: var(--text); text-decoration: none; }
.contact-method__val a:hover { color: var(--accent); }

/* Page réalisations */
.realisations-page-grid {
  column-count: 3;
  column-gap: 14px;
}
.realisations-page-grid .gal-item {
  margin-bottom: 14px;
}
