/* HERO IMMERSIF (photo plein ecran + voile) */
.hero-immersif {
  position: relative;
  min-height: clamp(560px, 88vh, 780px);
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 6vw, 90px) 20px 60px;
  overflow: hidden;
}
.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(0,30,15,.15) 0%, rgba(0,20,10,.65) 100%),
    radial-gradient(60% 60% at 15% 10%, rgba(41,64,47,.18) 0%, transparent 60%);
}
.hero-immersif__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
}
.hero-immersif__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}
.hero-immersif__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,.6);
}
.hero-immersif__title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  line-height: 1;
  color: #fff;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: -0.012em;
}
.hero-immersif__title em {
  font-style: italic;
  font-weight: 400;
  color: #C5DBC8;
}
.hero-immersif__sub {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  opacity: 0.92;
  margin-bottom: 28px;
  max-width: 56ch;
  color: rgba(255,255,255,.92);
  line-height: 1.5;
}
.hero-immersif__cta { margin-bottom: 26px; }
.hero-immersif .hero-rating-badge { display: inline-flex; }

/* MOT-4 reveal mask */
.reveal-mask { overflow: hidden; }
.reveal-mask > * {
  transform: translateY(105%);
  transition: transform .85s cubic-bezier(.2,.8,.2,1);
  display: block;
}
.reveal-mask.in > * { transform: none; }
[data-reveal]:not(.reveal-mask) {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal]:not(.reveal-mask).in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-mask > *, [data-reveal] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .stagger > * { opacity: 1 !important; transform: none !important; }
}

/* STATS strip */
.stats-strip {
  background: var(--accent);
  padding: 36px 0;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}
.stat-item { text-align: center; padding: 8px 6px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.18); }
.stat-number {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number em { font-style: italic; font-weight: 400; }
.stat-label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,.7);
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-item + .stat-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding-top: 18px; margin-top: 8px; }
}

/* SERVICES (grid-3) */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* APROPOS */
.apropos {
  background: var(--bg-alt);
}
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .apropos-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
  }
}
.apropos-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(34,42,36,.12);
}
.apropos-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.apropos-text p { margin-bottom: 16px; font-size: 1.02rem; line-height: 1.65; }
.apropos-text p::first-letter {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 500;
  float: left;
  line-height: 1;
  padding: 4px 10px 0 0;
  color: var(--accent);
}
.apropos-text p + p::first-letter {
  font-size: inherit;
  float: none;
  padding: 0;
  color: inherit;
}
.apropos-sig {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent);
  margin-top: 14px;
}

/* REALISATIONS (masonry) */
.realisations-section { background: var(--bg); }
.gal-masonry {
  column-count: 3;
  column-gap: 14px;
}
.gal-masonry .gal-item {
  width: 100%;
  margin: 0 0 14px;
  border-radius: var(--r-md);
  overflow: hidden;
  break-inside: avoid;
  display: block;
  cursor: pointer;
  position: relative;
  transition: transform .3s ease;
}
.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 (max-width: 900px) { .gal-masonry { column-count: 2; } }
@media (max-width: 560px) { .gal-masonry { column-count: 1; } }
.realisations-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* AVIS (cards) */
.avis-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.avis-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .avis-cards { grid-template-columns: 1fr; } }
.avis-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.avis-stars {
  display: inline-flex;
  gap: 2px;
  color: #F5A623;
}
.avis-stars svg { width: 17px; height: 17px; }
.avis-card blockquote {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
  flex-grow: 1;
}
.avis-card blockquote::before {
  content: "\201C";
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 0.5;
  display: block;
  margin-bottom: 14px;
}
.avis-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  font-family: var(--ff-ui);
  font-size: 0.85rem;
}
.avis-author { font-weight: 600; color: var(--text); }
.avis-date { color: var(--text-mute); font-size: 0.82rem; }
.avis-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-2);
  font-size: 0.78rem;
}
.avis-google svg { width: 14px; height: 14px; }
.avis-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--accent);
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* FAQ */
.faq-list { max-width: 820px; 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%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
}
.faq-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform .25s ease;
  display: grid; place-items: center;
}
.faq-chevron::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 0 22px;
}
.faq-answer p { color: var(--text-2); font-size: 1rem; line-height: 1.65; max-width: 70ch; }

/* ZONE */
.zone-section { background: var(--bg-alt); }
.zone-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 900px) {
  .zone-cols { grid-template-columns: 1fr 1.1fr; gap: 56px; }
}
.zone-info h3 {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.horaires-table {
  width: 100%;
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  background: var(--bg);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.horaires-table .h-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.horaires-table .h-row:last-child { border-bottom: 0; }
.horaires-table .h-row.is-today {
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
  color: var(--accent);
  font-weight: 600;
}
.horaires-table .h-row.is-closed { color: var(--text-mute); }
.horaires-table .h-day { font-weight: 500; }
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}
.open-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.open-badge.is-open .dot { background: #2ecc71; }
.open-badge.is-open .dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #2ecc71;
  opacity: 0.5;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .open-badge.is-open .dot::after { animation: none; }
}
.map-wrapper {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(34,42,36,.08);
}
.map-wrapper iframe {
  border: 0;
  width: 100%;
  height: 380px;
  display: block;
}

/* CONTACT */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: transform .2s, border-color .2s;
}
.contact-row:hover {
  transform: translateX(4px);
  border-color: var(--accent);
}
.contact-row .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-row .ico svg { width: 22px; height: 22px; }
.contact-row .row-label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  margin-bottom: 2px;
}
.contact-row .row-value {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}
