/* HERO-GRILLE-7-5 */
.hero {
  position: relative;
}
.hero-grid75 {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px) 20px clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid75 {
    grid-template-columns: 7fr 5fr;
    padding: clamp(56px, 6vw, 88px) 32px clamp(56px, 6vw, 88px);
  }
}
.hero-grid75__eyebrow {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-grid75__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero-grid75__title {
  font-family: var(--ff-display);
  font-size: clamp(2.3rem, 5.4vw, 4.4rem);
  line-height: 1.03;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.012em;
}
.hero-grid75__title em {
  font-style: italic;
  color: var(--accent);
}
.hero-grid75__sub {
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  color: var(--text-2);
  margin: 18px 0 26px;
  max-width: 46ch;
  line-height: 1.55;
}
.hero-grid75__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.hero-grid75__cta .btn { width: 100%; }
@media (min-width: 560px) {
  .hero-grid75__cta {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
  .hero-grid75__cta .btn { width: auto; }
}
.hero-grid75__media {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  order: -1;
}
@media (min-width: 900px) {
  .hero-grid75__media { aspect-ratio: 4/5; order: 0; }
}
.hero-grid75__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-grid75__tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--accent);
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-grid75__usps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-grid75__usp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.84rem;
  color: var(--accent);
}
.hero-grid75__usp svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Process (substitut "preuve" section avis vide) */
.process {
  background: color-mix(in srgb, var(--accent) 6%, var(--bg));
}
.process__header { max-width: 720px; margin-bottom: 40px; }
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .process__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.process__step {
  background: var(--surface);
  border-radius: 22px 4px 22px 4px;
  padding: 26px 24px;
  border: 1px solid color-mix(in srgb, var(--text) 7%, transparent);
  position: relative;
  height: 100%;
}
.process__step:nth-child(2) { border-radius: 4px 22px 4px 22px; }
.process__num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.process__title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 500;
}
.process__text {
  font-size: 0.96rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* Services (LAY-6 grid-asym) */
.services__header { max-width: 720px; margin-bottom: 40px; }
.svc-asym {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .svc-asym {
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
  }
  .svc-asym .svc-card { grid-column: span 2; }
  .svc-asym .svc-card--wide { grid-column: span 3; }
  .svc-asym .svc-card--lead { grid-column: span 4; }
}
.svc-card {
  background: color-mix(in srgb, var(--text) 4%, var(--bg));
  border-radius: 22px 4px 22px 4px;
  padding: 26px 24px;
  border: 1px solid color-mix(in srgb, var(--text) 7%, transparent);
  min-width: 0;
  height: 100%;
}
.svc-card:nth-child(even) { border-radius: 4px 22px 4px 22px; }
.svc-card--lead {
  background: var(--surface-deep);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}
.svc-card--lead .svc-card__title,
.svc-card--lead .svc-card__text,
.svc-card--lead .svc-card__num {
  color: #fff;
}
.svc-card--lead .svc-card__text { color: rgba(255,255,255,0.82); }
.svc-card--lead .svc-card__num { color: var(--accent-on-dark); }
.svc-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 14%, var(--bg));
  color: var(--accent);
  margin-bottom: 14px;
}
.svc-card--lead .svc-card__icon {
  background: rgba(255,255,255,0.08);
  color: var(--accent-on-dark);
}
.svc-card__icon svg { width: 22px; height: 22px; }
.svc-card__num {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.svc-card__title {
  font-family: var(--ff-display);
  font-size: 1.22rem;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.25;
}
.svc-card__text {
  font-size: 0.96rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* Realisations (LAY-6 grid-feat) */
.realisations__header { max-width: 720px; margin-bottom: 40px; }
.gal-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .gal-feat {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}
.gal-feat .gal-item {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-alt);
}
.gal-feat .gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.gal-feat .gal-item:hover img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .gal-feat .gal-item img { transition: none; }
  .gal-feat .gal-item:hover img { transform: none; }
}
@media (min-width: 768px) {
  .gal-feat__big { grid-column: span 2; grid-row: span 2; }
}
.realisations__more {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
}

/* A propos */
.apropos {
  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: 1.05fr 0.95fr;
    gap: clamp(40px, 5vw, 72px);
  }
}
.apropos__media {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  order: -1;
}
@media (min-width: 900px) {
  .apropos__media { order: 0; aspect-ratio: 4/5; }
}
.apropos__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.apropos__lede {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 18px;
  font-style: italic;
}
.apropos__lede::first-letter {
  font-family: var(--ff-display);
  font-size: 3.6rem;
  float: left;
  line-height: 0.85;
  padding: 4px 10px 0 0;
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
}
.apropos__text { color: var(--text-2); margin-bottom: 12px; line-height: 1.65; }
.apropos__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}
.apropos__point {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
}
.apropos__point svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.apropos__point span {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.45;
}
.apropos__sign {
  margin-top: 24px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.apropos__sign::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}

/* Stats */
.stats {
  background: var(--surface-deep);
  color: #fff;
}
.stats .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}
@media (min-width: 768px) {
  .stats .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}
.stat {
  padding: 14px 0;
}
.stat__num {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 10px;
}
.stat__num em { color: var(--accent-on-dark); font-style: italic; }
.stat__label {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.78);
}

/* FAQ */
.faq__header { max-width: 720px; margin-bottom: 40px; }
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}
.faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--ff-display);
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  color: var(--text);
  text-align: left;
  font-weight: 500;
  line-height: 1.3;
}
.faq-trigger:hover { color: var(--accent); }
.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: transform .3s ease;
  color: var(--accent);
}
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-chevron::before {
  content: "";
  display: block;
  width: 9px; height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}
.faq-answer { padding: 0 0 22px; max-width: 64ch; }
.faq-answer p { color: var(--text-2); line-height: 1.6; }

/* Zone */
.zone__header { max-width: 720px; margin-bottom: 40px; }
.zone__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .zone__grid { grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: stretch; }
}
.zone__info { display: flex; flex-direction: column; gap: 24px; }
.zone__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zone__list li {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
  color: var(--accent);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.86rem;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
}
.horaires-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
}
.horaires-table h4 {
  font-family: var(--ff-display);
  font-size: 1.06rem;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 500;
}
.horaires-table table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.horaires-table td { padding: 6px 0; color: var(--text-2); }
.horaires-table td:first-child { color: var(--text); text-transform: capitalize; }
.horaires-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.horaires-table tr.is-today td {
  color: var(--accent);
  font-weight: 600;
}
.horaires-table tr.is-closed td:last-child { color: var(--text-mute); }
.dispo-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 0.92rem;
  color: var(--text);
}
.dispo-line__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2DBF6C;
  box-shadow: 0 0 0 4px rgba(45,191,108,0.18);
  animation: dispoPulse 2.2s ease-in-out infinite;
}
.dispo-line--closed .dispo-line__dot {
  background: #C45454;
  box-shadow: 0 0 0 4px rgba(196,84,84,0.16);
}
@keyframes dispoPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(45,191,108,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(45,191,108,0.04); }
}
@media (prefers-reduced-motion: reduce) {
  .dispo-line__dot { animation: none; }
}
.zone__map {
  width: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  min-height: 320px;
}
.zone__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* Contact */
.contact {
  background: var(--surface-deep);
  color: #fff;
}
.contact .eyebrow { color: var(--accent-on-dark); }
.contact .eyebrow::before { background: var(--accent-on-dark); }
.contact .section-title { color: #fff; }
.contact .section-title em { color: var(--accent-on-dark); }
.contact .section-lede { color: rgba(255,255,255,0.78); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
}
.contact__info { display: flex; flex-direction: column; gap: 22px; }
.contact__coord {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
}
.contact__coord-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: var(--accent-on-dark);
}
.contact__coord-icon svg { width: 18px; height: 18px; }
.contact__coord-label {
  font-family: var(--ff-ui);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.62);
  display: block;
  margin-bottom: 2px;
}
.contact__coord-value {
  font-family: var(--ff-body);
  font-size: 1.04rem;
  color: #fff;
}
.contact__coord-value a:hover { color: var(--accent-on-dark); }

.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
@media (min-width: 600px) {
  .contact__form { padding: 32px; }
}
.contact__form .field label { color: rgba(255,255,255,0.74); }
.contact__form .field input,
.contact__form .field select,
.contact__form .field textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}
.contact__form .field input::placeholder,
.contact__form .field textarea::placeholder { color: rgba(255,255,255,0.45); }
.contact__form .field input:focus,
.contact__form .field select:focus,
.contact__form .field textarea:focus {
  border-color: var(--accent-on-dark);
  box-shadow: 0 0 0 3px rgba(191,206,194,0.22);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.contact__form button { width: 100%; }

/* Modal mentions */
.ml-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ml-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,18,12,0.55);
}
.ml-box {
  position: relative;
  background: var(--bg);
  border-radius: var(--r-lg);
  max-width: 520px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-lg);
}
.ml-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
}
.ml-close:hover { background: color-mix(in srgb, var(--text) 8%, transparent); }
.ml-box h2 { font-family: var(--ff-display); font-size: 1.4rem; margin-bottom: 14px; color: var(--text); }
.ml-box h3 { font-family: var(--ff-display); font-size: 1.02rem; margin: 14px 0 6px; color: var(--text); font-weight: 500; }
.ml-box p, .ml-box li { color: var(--text-2); font-size: 0.92rem; line-height: 1.5; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(20,18,12,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox img {
  max-width: min(94vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 6px;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(0,0,0,0.5);
  color: #fff;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.4rem;
}
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(0,0,0,0.75); }

/* Tag micro-meta */
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Realisations page */
.page-hero {
  background: var(--bg);
  padding: clamp(40px, 6vw, 80px) 0 clamp(28px, 4vw, 48px);
}
.page-hero .breadcrumb {
  font-family: var(--ff-ui);
  font-size: 0.84rem;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--text);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 14px;
}
.page-hero h1 em { color: var(--accent); }
.page-hero p {
  max-width: 56ch;
  color: var(--text-2);
  font-size: 1.04rem;
}
.gal-masonry {
  column-count: 1;
  column-gap: 14px;
}
@media (min-width: 600px) { .gal-masonry { column-count: 2; } }
@media (min-width: 900px) { .gal-masonry { column-count: 3; } }
.gal-masonry .gal-item {
  display: block;
  margin: 0 0 14px;
  break-inside: avoid;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
}
.gal-masonry img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.gal-masonry .gal-item:hover img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) {
  .gal-masonry img { transition: none; }
  .gal-masonry .gal-item:hover img { transform: none; }
}

.real-cta {
  background: var(--surface-deep);
  color: #fff;
  padding: clamp(40px, 6vw, 72px) 0;
}
.real-cta__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .real-cta__box { grid-template-columns: 1.2fr 1fr; gap: 36px; }
}
.real-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  font-weight: 400;
}
.real-cta__title em { color: var(--accent-on-dark); }
.real-cta__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 600px) {
  .real-cta__cta { flex-direction: row; flex-wrap: wrap; }
  .real-cta__cta .btn { flex: 0 0 auto; }
}
