/* ===== HERO IMMERSIF (photo plein ecran + voile) ===== */
.hero-immersif {
  position: relative;
  min-height: clamp(560px, 88vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 6vw, 72px) 20px 36px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.hero-immersif__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-immersif__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-immersif::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 26, 18, 0.20) 0%, rgba(20, 26, 18, 0.45) 45%, rgba(20, 26, 18, 0.78) 100%),
    linear-gradient(105deg, rgba(20, 26, 18, 0.55) 0%, rgba(20, 26, 18, 0.10) 55%);
}
.hero-immersif__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-immersif__inner {
    margin: 0;
    max-width: 720px;
    padding-left: clamp(12px, 4vw, 32px);
  }
}
.hero-immersif__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  color: #fff;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-immersif__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1.02;
  color: #fff;
  letter-spacing: -0.005em;
}
.hero-immersif__title em { font-style: italic; color: var(--accent-on-dark); }
.hero-immersif__sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255,255,255,0.92);
  margin: 18px 0 26px;
  max-width: 48ch;
  line-height: 1.55;
}
.hero-immersif__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.hero-immersif__cta .btn { width: 100%; }
@media (min-width: 560px) {
  .hero-immersif__cta { flex-direction: row; flex-wrap: wrap; width: auto; }
  .hero-immersif__cta .btn { width: auto; }
}
.hero-immersif__usps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

/* ===== Stats strip ===== */
.stats-strip {
  background: var(--bg-alt);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  text-align: left;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 0;
}
@media (min-width: 640px) {
  .stat-item:not(:last-child) { border-right: 1px solid var(--border-strong); padding-right: 16px; }
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  color: var(--accent-deep);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.stat-number em { font-style: italic; color: var(--accent-2); }
.stat-label {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===== Services (LAY-2 alt-rows) ===== */
.services-section { background: var(--bg); }
.svc-alt {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 72px);
}
.svc-alt__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
.svc-alt__num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.svc-alt__title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.15;
}
.svc-alt__title em { font-style: italic; color: var(--accent); }
.svc-alt__text {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 48ch;
}
.svc-alt__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-family: var(--ff-ui);
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: gap var(--t-fast), color var(--t-fast);
}
.svc-alt__cta:hover { gap: 12px; color: var(--accent); }
.svc-alt__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.svc-alt__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.svc-alt__svg {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg-alt));
  border-radius: var(--r-lg);
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--accent);
}
.svc-alt__svg svg { width: 100%; height: 100%; max-width: 220px; }
@media (min-width: 768px) {
  .svc-alt__row { grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
  .svc-alt__row:nth-child(even) .svc-alt__media,
  .svc-alt__row:nth-child(even) .svc-alt__svg { order: -1; }
}

/* ===== Realisations / Galerie (LAY-2 masonry) ===== */
.realisations-section { background: var(--bg-alt); }
.gal-masonry {
  column-count: 1;
  column-gap: 14px;
  margin-top: 8px;
}
.gal-masonry .gal-item {
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  background: var(--surface);
}
.gal-masonry .gal-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gal-masonry .gal-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.gal-masonry .gal-item:hover img { transform: scale(1.04); }
@media (min-width: 560px) { .gal-masonry { column-count: 2; } }
@media (min-width: 900px) { .gal-masonry { column-count: 3; } }
@media (prefers-reduced-motion: reduce) {
  .gal-masonry .gal-item:hover { transform: none; }
  .gal-masonry .gal-item:hover img { transform: none; }
}
.realisations-more {
  margin-top: 32px;
  text-align: center;
  display: flex;
  justify-content: center;
}

/* ===== Avis (LAY-2 single) ===== */
.avis-section {
  background: var(--surface);
  text-align: center;
}
.avis-single {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 8px;
}
.avis-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--gold);
  justify-content: center;
  margin-bottom: 18px;
}
.avis-stars svg { width: 22px; height: 22px; }
.avis-single__quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--text);
  margin: 0 auto 20px;
  max-width: 22ch;
}
.avis-single__quote::before { content: "« "; color: var(--accent); }
.avis-single__quote::after { content: " »"; color: var(--accent); }
.avis-single__meta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-ui);
}
.avis-single__author {
  color: var(--text);
  font-weight: 500;
  font-size: 0.96rem;
}
.avis-single__source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--bg-alt);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-2);
}
.avis-single__source svg { width: 14px; height: 14px; }
.avis-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--accent-deep);
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--accent-2);
  padding-bottom: 2px;
}
.avis-more:hover { color: var(--accent); }
.avis-note {
  display: block;
  max-width: 56ch;
  margin: 36px auto 0;
  font-size: 0.84rem;
  color: var(--text-mute);
  font-style: italic;
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-section { background: var(--bg); }
.faq-list { display: flex; flex-direction: column; max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text);
  text-align: left;
  line-height: 1.3;
  font-weight: 500;
}
.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: transform var(--t-fast);
}
.faq-chevron svg { width: 100%; height: 100%; }
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 4px 22px;
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 60ch;
}
.faq-answer a { color: var(--accent-deep); border-bottom: 1px solid var(--accent-2); }

/* ===== Zone d'intervention ===== */
.zone-section { background: var(--bg-alt); }
.zone-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) {
  .zone-cols { grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
}
.zone-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.zone-info h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 500;
}
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zone-list li {
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--text);
  font-family: var(--ff-ui);
}
.horaires-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.horaires-table table { width: 100%; border-collapse: collapse; }
.horaires-table th,
.horaires-table td {
  padding: 11px 16px;
  text-align: left;
  font-size: 0.92rem;
  font-family: var(--ff-ui);
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.horaires-table tr:last-child th,
.horaires-table tr:last-child td { border-bottom: 0; }
.horaires-table th { color: var(--text-2); font-weight: 500; }
.horaires-table tr.is-today {
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
}
.horaires-table tr.is-today th,
.horaires-table tr.is-today td { color: var(--accent-deep); font-weight: 600; }
.horaires-table tr.is-closed td { color: var(--text-mute); }
.dispo-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--surface);
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: var(--text-2);
}
.dispo-line strong { color: var(--text); font-weight: 600; }
.map-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-wrapper iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

/* ===== A propos (ADDED) ===== */
.about-section { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
}
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) { .about-photo { order: 1; } }
@media (min-width: 900px) { .about-text { order: 0; } }
.about-lede {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 18px;
}
.about-lede::first-letter {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 3.4rem;
  float: left;
  line-height: 0.9;
  color: var(--accent);
  margin: 6px 10px 0 0;
  font-weight: 500;
}
.about-text p { margin-bottom: 14px; }
.about-points {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--text);
}
.about-check {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 14%, var(--bg));
  color: var(--accent-deep);
}
.about-check svg { width: 14px; height: 14px; }
.about-signature {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent-deep);
  font-size: 1.1rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.contact-coords {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-coord {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
}
.contact-coord__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  color: var(--accent-on-dark);
  border-radius: 10px;
}
.contact-coord__icon svg { width: 18px; height: 18px; }
.contact-coord__label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 234, 0.7);
  margin-bottom: 2px;
}
.contact-coord__value {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}
.contact-coord__value a { color: #fff; }
.contact-coord__value a:hover { color: var(--accent-on-dark); }
.contact-cta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 560px) { .contact-cta { flex-direction: row; flex-wrap: wrap; } }

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form .field label { color: rgba(245, 241, 234, 0.78); }
.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.contact-form .field input:focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--accent-on-dark);
}
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder { color: rgba(245, 241, 234, 0.45); }
.contact-form .field select option { color: var(--text); background: var(--bg); }
.contact-form .form-note {
  font-size: 0.82rem;
  color: rgba(245, 241, 234, 0.55);
  margin-top: 4px;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(15, 18, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.lightbox img {
  max-width: 92vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--t-fast);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }
.lb-close { top: 18px; right: 18px; font-size: 1.3rem; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; }
@media (max-width: 560px) {
  .lb-prev, .lb-next { bottom: 18px; top: auto; transform: none; }
  .lb-prev { left: calc(50% - 56px); }
  .lb-next { right: calc(50% - 56px); }
}

/* ===== Mentions modal ===== */
.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(15, 18, 14, 0.70);
  backdrop-filter: blur(4px);
}
.ml-box {
  position: relative;
  background: var(--bg);
  color: var(--text);
  max-width: 520px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  border-radius: var(--r-lg);
  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%;
  background: var(--bg-alt);
  color: var(--text);
  font-size: 1.2rem;
}
.ml-close:hover { background: var(--border-strong); }
.ml-box h2 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--text);
}
.ml-box h3 {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 18px 0 6px;
}
.ml-box p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 6px;
}

/* ===== Page realisations.html ===== */
.page-hero {
  padding: clamp(36px, 5vw, 64px) 0 clamp(28px, 4vw, 48px);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--accent-deep); border-bottom: 1px solid transparent; }
.breadcrumb a:hover { border-color: var(--accent-2); }
.real-cta-block {
  background: var(--surface-deep);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  margin-top: 40px;
  text-align: center;
}
.real-cta-block h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 12px;
}
.real-cta-block h3 em { font-style: italic; color: var(--accent-on-dark); }
.real-cta-block p { color: rgba(245, 241, 234, 0.82); max-width: 48ch; margin: 0 auto 24px; }
.real-cta-block .real-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
@media (min-width: 560px) {
  .real-cta-block .real-cta-row { flex-direction: row; flex-wrap: wrap; }
}
