/* HERO photo immersif (editorial Neo-Editorial) */
.hero{
  position:relative;
  padding:0;
  background:var(--bg);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  align-items:stretch;
}
.hero-content{
  padding:2.2rem 1.4rem 3rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
  order:2;
}
.hero-content > * + *{margin-top:0}
.hero-eyebrow{
  font-family:var(--ff-body);
  font-size:.78rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--accent);
  margin-bottom:1.1rem;
  display:inline-flex;
  align-items:center;
  gap:.6rem;
}
.hero-eyebrow::before{
  content:"";
  width:24px;
  height:1px;
  background:var(--accent);
}
.hero h1{
  font-family:var(--ff-display);
  font-weight:500;
  font-size:clamp(2.6rem, 9vw, 5.2rem);
  line-height:1.02;
  letter-spacing:-0.025em;
  color:var(--text);
  margin:0 0 1.4rem;
}
.hero h1 em{font-style:italic;color:var(--accent);font-weight:500}
.hero-sub{
  font-size:clamp(1.05rem, 2vw, 1.18rem);
  color:var(--text-2);
  line-height:1.55;
  max-width:46ch;
  margin:0 0 1.6rem;
}
.hero-usps{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-bottom:1.8rem;
}
.hero-usps .chip{
  background:rgba(251,247,239,.6);
  border-color:rgba(216,207,192,.7);
}
.hero-cta{
  display:flex;
  flex-direction:column;
  gap:.7rem;
  margin-bottom:1.4rem;
}
.hero-cta .btn{width:100%}
.hero-rating-row{margin-top:.3rem}

.hero-media{
  position:relative;
  min-height:34vh;
  max-height:46vh;
  order:1;
  overflow:hidden;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
}
.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(46,42,36,0) 0%, rgba(46,42,36,.16) 100%);
  pointer-events:none;
}

/* Caption flottant sur la photo (editorial) */
.hero-caption{
  position:absolute;
  bottom:1rem;
  left:1rem;
  right:1rem;
  background:rgba(251,247,239,.92);
  backdrop-filter:blur(8px);
  padding:.7rem 1rem;
  border-radius:var(--r-md);
  font-size:.82rem;
  color:var(--text-2);
  display:flex;
  align-items:center;
  gap:.6rem;
}
.hero-caption svg{width:16px;height:16px;color:var(--accent);flex-shrink:0}

@media (min-width: 880px){
  .hero-grid{
    grid-template-columns:1.05fr 1fr;
    min-height:calc(100dvh - var(--header-h));
  }
  .hero-media{
    max-height:none;
  }
  .hero-content{
    order:1;
    padding:5rem 3rem 5rem 1.5rem;
    max-width:none;
  }
  .hero-media{
    order:2;
    min-height:auto;
  }
  .hero-cta{
    flex-direction:row;
    align-items:center;
  }
  .hero-cta .btn{width:auto}
}
@media(min-width:1100px){
  .hero-content{padding-left:4rem}
}

/* REALISATIONS (galerie masonry) */
.gallery-masonry{
  column-count:1;
  column-gap:.8rem;
}
@media(min-width:580px){.gallery-masonry{column-count:2;column-gap:1rem}}
@media(min-width:980px){.gallery-masonry{column-count:3;column-gap:1.1rem}}

.gallery-item{
  break-inside:avoid;
  margin-bottom:1rem;
  border-radius:var(--r-md);
  overflow:hidden;
  position:relative;
  display:block;
  cursor:pointer;
  background:var(--bg-alt);
}
.gallery-item img{
  width:100%;
  height:auto;
  display:block;
  transition:transform .5s ease;
}
.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(46,42,36,0) 50%, rgba(46,42,36,.4) 100%);
  opacity:0;
  transition:opacity .3s;
}
.gallery-item:hover img{transform:scale(1.04)}
.gallery-item:hover::after{opacity:1}
.gallery-item .caption{
  position:absolute;
  bottom:.8rem;
  left:.9rem;
  right:.9rem;
  color:#fff;
  font-family:var(--ff-display);
  font-size:1.05rem;
  font-weight:500;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .25s, transform .25s;
  pointer-events:none;
  z-index:1;
}
.gallery-item:hover .caption{opacity:1;transform:translateY(0)}

/* SERVICES alt-rows (LAY-2) */
.services-rows{
  display:flex;
  flex-direction:column;
  gap:0;
}
.service-row{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
  padding:2.4rem 0;
  border-bottom:1px solid var(--border);
  align-items:center;
}
.service-row:first-child{border-top:1px solid var(--border)}
.service-row-num{
  font-family:var(--ff-display);
  font-size:.95rem;
  color:var(--accent);
  letter-spacing:.06em;
  margin-bottom:.6rem;
  display:inline-flex;
  align-items:center;
  gap:.55rem;
}
.service-row-num::before{
  content:"";
  width:18px;
  height:1px;
  background:var(--accent);
}
.service-row h3{
  font-family:var(--ff-display);
  font-size:clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight:500;
  color:var(--text);
  margin:0 0 .7rem 0;
  letter-spacing:-0.01em;
}
.service-row p{
  color:var(--text-2);
  max-width:52ch;
  font-size:1rem;
  line-height:1.6;
}
.service-row ul{
  list-style:none;
  padding:0;
  margin:1rem 0 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.service-row ul li{
  font-size:.82rem;
  color:var(--text-2);
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:999px;
  padding:.3rem .8rem;
}
.service-row .svc-illu{
  border-radius:var(--r-lg);
  overflow:hidden;
  aspect-ratio:4/3;
  position:relative;
  background:var(--bg-alt);
}
.service-row .svc-illu img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.service-row .svc-illu .svc-mark{
  position:absolute;
  top:.8rem;
  left:.8rem;
  background:rgba(251,247,239,.92);
  border-radius:50%;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  color:var(--accent);
}
.service-row .svc-illu .svc-mark svg{width:22px;height:22px}

@media(min-width:880px){
  .service-row{
    grid-template-columns:1fr 1fr;
    gap:4rem;
    padding:4rem 0;
    align-items:center;
  }
  .service-row:nth-child(even) .svc-illu{order:-1}
  .service-row:nth-child(even) .svc-text{padding-left:1rem}
}

/* STATS strip section wrapper */
.stats-section{
  padding:4rem 0 4rem;
}

/* AVIS section */
.avis-section{padding:4.5rem 0}

/* FAQ section wrapper */
.faq-section{padding:5rem 0}

/* ZONE / CONTACT section */
.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2.4rem;
}
@media(min-width:980px){
  .contact-grid{grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
}
.contact-info{
  display:flex;
  flex-direction:column;
  gap:1.8rem;
}
.info-block h4{
  font-family:var(--ff-body);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent);
  margin:0 0 .6rem 0;
}
.info-block p,
.info-block address{
  font-style:normal;
  color:var(--text-2);
  margin:0;
  line-height:1.6;
}
.info-block a{color:var(--text);font-weight:500}
.info-block a:hover{color:var(--accent)}

.info-tel{
  font-family:var(--ff-display);
  font-size:2rem;
  font-weight:500;
  color:var(--text);
  letter-spacing:-0.01em;
  text-decoration:none;
  display:inline-block;
}
.info-tel:hover{color:var(--accent)}

.horaires-table{
  width:100%;
  border-collapse:collapse;
  font-size:.92rem;
}
.horaires-table tr{border-bottom:1px solid var(--border)}
.horaires-table tr:last-child{border-bottom:0}
.horaires-table td{
  padding:.55rem 0;
  color:var(--text-2);
}
.horaires-table td:first-child{
  font-weight:500;
  color:var(--text);
  text-transform:capitalize;
}
.horaires-table td:last-child{text-align:right}
.horaires-table tr.is-today td{color:var(--accent);font-weight:600}
.horaires-table tr.is-today td:first-child{color:var(--accent)}

.map-frame{
  border-radius:var(--r-lg);
  overflow:hidden;
  border:1px solid var(--border);
  position:relative;
  width:100%;
  padding-top:62%;
  background:var(--bg-alt);
}
.map-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.zone-tags{
  display:flex;
  flex-wrap:wrap;
  gap:.4rem;
  margin-top:.8rem;
}
.zone-tags .chip{font-size:.82rem;background:var(--surface)}
