/* HERO EDITORIAL CENTRE */
.hero-centre {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: calc(var(--header-h-mobile) + 28px) 20px 24px;
}
@media (min-width: 768px) {
  .hero-centre {
    padding: clamp(76px, 8vw, 120px) 32px clamp(28px, 4vw, 48px);
  }
}
.hero-centre__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero-centre__eyebrow::before,
.hero-centre__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.hero-centre__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  font-weight: 400;
  line-height: 1.04;
  color: var(--text);
  letter-spacing: -0.015em;
}
.hero-centre__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero-centre__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.28em;
  background: var(--accent-translucent);
  z-index: -1;
  border-radius: 2px;
}
.hero-centre__sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-2);
  margin: 24px auto 28px;
  max-width: 52ch;
  line-height: 1.55;
}
.hero-centre__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-centre__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.hero-centre__cta .btn { width: 100%; }
@media (min-width: 640px) {
  .hero-centre__cta {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }
  .hero-centre__cta .btn { width: auto; min-width: 200px; }
}
.hero-centre__band {
  width: 100%;
  max-width: 1240px;
  margin: clamp(36px, 6vw, 64px) auto 0;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(42, 42, 38, 0.16);
}
@media (min-width: 768px) {
  .hero-centre__band { aspect-ratio: 21 / 9; border-radius: var(--r-xl); }
}
.hero-centre__band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-centre__band-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(20, 22, 18, 0.6);
  color: #fff;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* AVIS row-sep (preuve d'abord, COMP-2) */
.avis-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.avis-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 32px;
}
@media (min-width: 900px) {
  .avis-head {
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
  }
  .avis-head__meta { text-align: right; }
}
.avis-head__meta-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.avis-head__meta-value {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-top: 4px;
  font-style: italic;
}

.avis-rows {
  display: flex;
  flex-direction: column;
}
.avis-rows__item {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.avis-rows__item:last-child { border-bottom: 1px solid var(--border); }
@media (min-width: 768px) {
  .avis-rows__item {
    grid-template-columns: 0.42fr 1.58fr;
    gap: 40px;
    align-items: start;
  }
}
.avis-rows__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.avis-rows__author {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
}
.avis-rows__date {
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}
.avis-rows__quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--text);
  line-height: 1.45;
}
.avis-rows__quote::before {
  content: "« ";
  color: var(--accent);
}
.avis-rows__quote::after {
  content: " »";
  color: var(--accent);
}
.avis-foot {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.avis-foot a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--accent-translucent);
}
.avis-foot a:hover { text-decoration-color: var(--accent); }
.avis-foot small {
  font-size: 0.82rem;
  color: var(--text-mute);
}

/* SERVICES grid-asym (LAY-6) */
.svc-asym {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .svc-asym {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  .svc-asym__card { grid-column: span 3; }
  .svc-asym__card--wide { grid-column: span 3; }
  .svc-asym__card--lead { grid-column: span 6; }
}
@media (min-width: 1024px) {
  .svc-asym__card { grid-column: span 2; }
  .svc-asym__card--wide { grid-column: span 3; }
  .svc-asym__card--lead { grid-column: span 4; }
}

.svc-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  height: 100%;
}
.svc-card .c-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.svc-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--text);
}
.svc-card p {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text-2);
  flex-grow: 1;
}
.svc-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 14%, var(--surface));
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.svc-card.c-asym--lead .svc-card__icon {
  background: rgba(243, 239, 231, 0.18);
  color: var(--on-dark);
}
.svc-card__icon svg { width: 22px; height: 22px; }

/* PIEGE PROD #10 — boost specificite contraste sur card lead vert sombre */
.svc-card.c-asym--lead,
.svc-card.c-asym--lead h3,
.svc-card.c-asym--lead p,
.svc-card.c-asym--lead .c-num,
.svc-card.c-asym--lead :where(h1,h2,h4,li,span,a,small,strong,em) {
  color: var(--on-dark);
}
.svc-card.c-asym--lead .c-num { color: var(--accent-soft); }
.svc-card.c-asym--lead p { color: rgba(243, 239, 231, 0.85); }

/* REALISATIONS gallery grid-feat (LAY-6) */
.realisations-section {
  background: var(--bg);
}
.gal-feat {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 14px;
}
@media (min-width: 560px) {
  .gal-feat { grid-template-columns: repeat(2, 1fr); }
  .gal-feat__big { grid-column: span 2; }
}
@media (min-width: 900px) {
  .gal-feat {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .gal-feat__big { grid-column: span 2; grid-row: span 2; }
}
.gal-feat figure {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-alt);
  aspect-ratio: 1 / 1;
}
.gal-feat__big {
  aspect-ratio: 1 / 1;
}
@media (min-width: 900px) {
  .gal-feat__big { aspect-ratio: auto; }
  .gal-feat__big figure { aspect-ratio: auto; height: 100%; }
}
.gal-feat figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gal-feat figure:hover img { transform: scale(1.04); }
.gal-feat figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(20, 22, 18, 0.55);
  color: #fff;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.realisations-cta {
  margin-top: 32px;
  text-align: center;
}

/* STATS strip */
.stats-section {
  background: var(--bg-alt);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border-radius: 22px 4px 22px 4px;
  border: 1px solid var(--border);
}
.stat-number {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-number em {
  font-size: 0.55em;
  color: var(--accent-2);
  font-style: italic;
  margin-left: 4px;
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* A propos */
.apropos-section { background: var(--bg); }
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .apropos-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
  }
}
.apropos-text { max-width: 56ch; }
.apropos-text .lead {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-style: italic;
  line-height: 1.32;
  color: var(--text);
  margin-bottom: 18px;
  font-weight: 400;
}
.apropos-text p {
  font-size: 1.02rem;
  margin-bottom: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.apropos-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.apropos-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--text);
  padding: 8px 0;
}
.apropos-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.apropos-photo {
  position: relative;
  border-radius: 22px 4px 22px 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin: 0 auto;
}
.apropos-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apropos-photo__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-display);
  font-style: italic;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(42, 42, 38, 0.12);
}

/* FAQ */
.faq-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  text-align: left;
  color: var(--text);
  gap: 16px;
  font-weight: 500;
  font-style: italic;
}
.faq-chevron {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: transform var(--t-base), background var(--t-base);
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
  font-style: normal;
}
.faq-trigger[aria-expanded="true"] .faq-chevron {
  background: var(--accent);
  color: var(--on-dark);
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 0 22px;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 64ch;
}
.faq-answer[hidden] { display: none; }

/* ZONE + carte */
.zone-section { background: var(--bg-alt); }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .zone-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
  }
}
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 28px;
}
.zone-chips .chip { background: var(--surface); color: var(--text); border-color: var(--border); }
.zone-chips .chip--main { background: var(--accent); color: var(--on-dark); border-color: var(--accent); }

.horaires {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 18px;
}
.horaires h3 {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}
.horaires-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.horaires-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}
.horaires-row:last-child { border-bottom: 0; }
.horaires-row.is-today {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  margin: 0 -8px;
  padding: 8px 12px;
  border-radius: 8px;
  border-bottom: 0;
  font-weight: 500;
  color: var(--text);
}
.horaires-row.is-today .horaires-day::before {
  content: "» ";
  color: var(--accent);
  font-weight: 600;
}
.horaires-row.is-closed { color: var(--text-mute); }

.dispo-card {
  margin-top: 18px;
  padding: 16px;
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  border-radius: var(--r-md);
  border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text);
}
.dispo-card strong { color: var(--accent); font-weight: 600; }

.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 70%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (min-width: 900px) {
  .map-wrapper { padding-bottom: 100%; }
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONTACT */
.contact-section {
  background: var(--surface-deep);
  color: var(--on-dark);
}
.contact-section .eyebrow { color: var(--accent-soft); }
.contact-section .eyebrow::before { background: var(--accent-soft); }
.contact-section .section-title { color: var(--on-dark); }
.contact-section .section-lead { color: var(--on-dark-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(243, 239, 231, 0.06);
  border-radius: var(--r-md);
  border: 1px solid rgba(243, 239, 231, 0.12);
  transition: background var(--t-base), border-color var(--t-base);
  color: var(--on-dark);
}
.contact-row:hover {
  background: rgba(243, 239, 231, 0.1);
  border-color: var(--accent-soft);
}
.contact-row svg {
  width: 22px;
  height: 22px;
  color: var(--accent-soft);
  flex-shrink: 0;
}
.contact-row span:first-of-type {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--on-dark-2);
  display: block;
}
.contact-row strong {
  font-size: 1.02rem;
  color: var(--on-dark);
  display: block;
  margin-top: 2px;
  font-weight: 500;
}

.contact-form {
  background: rgba(243, 239, 231, 0.04);
  padding: 28px 22px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(243, 239, 231, 0.12);
}
.contact-form .field label { color: var(--on-dark); }
.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
  background: rgba(243, 239, 231, 0.06);
  border-color: rgba(243, 239, 231, 0.22);
  color: var(--on-dark);
}
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder { color: var(--on-dark-2); }
.contact-form .field input:focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus {
  background: rgba(243, 239, 231, 0.12);
  border-color: var(--accent-soft);
}
.contact-form .btn { margin-top: 18px; width: 100%; }

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
@media (min-width: 480px) {
  .contact-cta { flex-direction: row; }
  .contact-cta .btn { flex: 1; }
}

/* PROCESS substitut compose */
/* Section page realisations.html */
.page-hero {
  padding: calc(var(--header-h-mobile) + 48px) 20px 32px;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .page-hero { padding: calc(var(--header-h) + 60px) 32px 48px; }
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 16px 0 12px;
  font-weight: 400;
  color: var(--text);
}
.page-hero p {
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0 auto;
  color: var(--text-2);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: background var(--t-base);
  margin-bottom: 12px;
}
.back-link:hover { background: var(--accent-soft); }

.gal-masonry {
  column-count: 1;
  column-gap: 16px;
}
@media (min-width: 560px) { .gal-masonry { column-count: 2; } }
@media (min-width: 900px) { .gal-masonry { column-count: 3; } }
.gal-masonry figure {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-masonry img { width: 100%; height: auto; display: block; transition: transform var(--t-slow); }
.gal-masonry figure:hover img { transform: scale(1.03); }
.gal-masonry figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(20, 22, 18, 0.55);
  color: #fff;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.page-cta {
  background: var(--accent);
  color: var(--on-dark);
  padding: 56px 0;
  text-align: center;
  margin-top: 56px;
  border-radius: 22px 4px 22px 4px;
}
.page-cta h2 {
  color: var(--on-dark);
  font-style: italic;
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
}
.page-cta .contact-cta { justify-content: center; max-width: 460px; margin: 0 auto; }
.page-cta .contact-cta .btn { flex: 1; }
