/* Padding standard des sections (mobile-first) */
section{padding:56px 0;}
@media(min-width:768px){section{padding:88px 0;}}

.section-head{margin-bottom:36px;max-width:680px;}
.section-head .eyebrow{margin-bottom:14px;}
.section-head h2{margin-bottom:14px;}
.section-head p{font-size:1.02rem;line-height:1.65;color:var(--text-2);max-width:54ch;}

/* HERO-SPLIT (impose par da_choice) */
.hero{
  background:var(--bg);
  padding-top:24px;
}
.hero-split{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  max-width:1240px;
  margin:0 auto;
  padding:0 20px 32px;
  align-items:center;
}
.hero-split__eyebrow{margin-bottom:16px;}
.hero-split__title{
  font-family:var(--ff-display);
  font-size:clamp(2.2rem,7vw,3.6rem);
  line-height:1.06;
  letter-spacing:-.015em;
  color:var(--text);
  margin-bottom:18px;
}
.hero-split__title em{
  font-style:normal;
  color:var(--accent);
  position:relative;
  display:inline-block;
  white-space:nowrap;
}
.hero-split__title em::after{
  content:"";position:absolute;left:0;right:0;bottom:6%;
  height:.32em;background:color-mix(in srgb,var(--accent) 18%,transparent);
  z-index:-1;border-radius:3px;
}
.hero-split__sub{
  font-family:var(--ff-body);
  font-size:1.05rem;
  line-height:1.6;
  color:var(--text-2);
  margin-bottom:26px;
  max-width:48ch;
}
.hero-split__cta{display:flex;flex-direction:column;gap:11px;margin-bottom:24px;}
.hero-split__cta .btn{width:100%;}
.hero-split__meta{
  display:flex;flex-wrap:wrap;gap:14px 22px;
  font-family:var(--ff-ui);font-size:.86rem;color:var(--text-2);
}
.hero-split__meta-item{display:flex;align-items:center;gap:8px;}
.hero-split__meta-item svg{width:16px;height:16px;color:var(--accent);flex-shrink:0;}

.hero-split__media{
  position:relative;
  width:100%;
  aspect-ratio:5/4;
  border-radius:var(--r-lg);
  overflow:hidden;
  order:-1;
  box-shadow:0 18px 42px rgba(15,40,30,.16);
}
.hero-split__media img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.hero-split__media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 60%,rgba(15,40,30,.12));
  pointer-events:none;
}
.hero-split__badge-float{
  position:absolute;
  left:14px;bottom:14px;
  display:inline-flex;align-items:center;gap:9px;
  background:rgba(246,248,245,.95);
  border-radius:999px;
  padding:7px 14px;
  font-family:var(--ff-ui);font-size:.82rem;color:var(--text);
  backdrop-filter:blur(6px);
}
.hero-split__badge-float strong{font-weight:700;}
.hero-split__badge-float .stars{color:#E0A82E;}

@media(min-width:880px){
  .hero{padding-top:36px;}
  .hero-split{
    grid-template-columns:1.05fr .95fr;
    gap:56px;
    padding:24px 40px 64px;
  }
  .hero-split__media{order:0;aspect-ratio:5/6;}
  .hero-split__cta{flex-direction:row;flex-wrap:wrap;gap:12px;}
  .hero-split__cta .btn{width:auto;}
}

/* Stats strip */
.stats-strip{
  background:linear-gradient(180deg,var(--bg) 0%,var(--bg-alt) 100%);
  padding:32px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.stats-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  max-width:920px;margin:0 auto;
}
@media(min-width:560px){.stats-grid{grid-template-columns:repeat(3,1fr);}}
.stat-item{
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:6px;
  padding:8px 4px;
}
@media(min-width:560px){
  .stat-item{align-items:flex-start;text-align:left;border-left:1px solid var(--border);padding-left:22px;}
  .stat-item:first-child{border-left:0;padding-left:0;}
}
.stat-number{
  font-family:var(--ff-display);
  font-size:clamp(2rem,5vw,2.6rem);
  font-weight:600;
  color:var(--accent);
  line-height:1;
  letter-spacing:-.01em;
  display:inline-flex;align-items:baseline;gap:4px;
}
.stat-number .stat-suffix{font-size:.6em;color:var(--text);opacity:.85;font-weight:500;}
.stat-label{
  font-family:var(--ff-ui);font-size:.82rem;color:var(--text-2);
  line-height:1.4;
  max-width:24ch;
}

/* Services */
.services{background:var(--bg);}
.svc-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
@media(min-width:640px){.svc-grid{grid-template-columns:repeat(2,1fr);gap:18px;}}
@media(min-width:960px){.svc-grid{grid-template-columns:repeat(3,1fr);gap:22px;}}

.svc-card-num{
  font-family:var(--ff-display);
  font-size:.85rem;font-weight:600;
  color:var(--accent);
  letter-spacing:.16em;
  margin-bottom:4px;
}
.svc-card h3{
  font-family:var(--ff-display);
  font-size:1.22rem;font-weight:600;
  color:var(--text);
  margin-bottom:6px;
  line-height:1.25;
}
.svc-card p{
  color:var(--text-2);
  font-size:.94rem;line-height:1.6;
}
.svc-card-icon{
  width:38px;height:38px;
  color:var(--accent);
  margin-bottom:12px;
}
.svc-card-icon svg{width:100%;height:100%;}

/* A propos */
.about{background:var(--bg-alt);}
.about-grid{
  display:grid;grid-template-columns:1fr;gap:32px;align-items:center;
}
@media(min-width:880px){.about-grid{grid-template-columns:1fr 1fr;gap:64px;}}
.about-text .eyebrow{margin-bottom:16px;}
.about-text h2{margin-bottom:20px;}
.about-text p{font-size:1rem;line-height:1.75;color:var(--text-2);margin-bottom:14px;}
.about-text p strong{color:var(--text);font-weight:600;}
.about-text p:first-of-type::first-letter{
  font-family:var(--ff-display);
  font-size:3.2rem;font-weight:600;
  float:left;line-height:.95;
  margin:4px 10px 0 0;
  color:var(--accent);
}
.about-signature{
  display:flex;align-items:center;gap:14px;
  margin-top:22px;padding-top:22px;
  border-top:1px solid var(--border);
}
.about-sig-avatar{
  width:48px;height:48px;border-radius:50%;
  background:color-mix(in srgb,var(--accent) 18%,var(--bg));
  color:var(--accent);
  display:grid;place-items:center;
  font-family:var(--ff-display);font-weight:600;font-size:1.1rem;
  flex-shrink:0;
}
.about-sig-name{font-family:var(--ff-display);font-weight:600;color:var(--text);line-height:1.2;}
.about-sig-role{font-family:var(--ff-ui);font-size:.82rem;color:var(--text-mute);}
.about-media{
  width:100%;
  aspect-ratio:4/5;
  border-radius:var(--r-lg);
  overflow:hidden;
  box-shadow:0 18px 36px rgba(15,40,30,.14);
}
.about-media img{width:100%;height:100%;object-fit:cover;}

/* Realisations */
.realisations{background:var(--bg);}
.realisations-head{
  display:flex;flex-direction:column;gap:12px;
  align-items:flex-start;margin-bottom:32px;
}
@media(min-width:768px){
  .realisations-head{flex-direction:row;justify-content:space-between;align-items:flex-end;gap:24px;}
  .realisations-head .section-head{margin-bottom:0;}
}
.gal-masonry{
  column-count:1;
  column-gap:14px;
}
@media(min-width:560px){.gal-masonry{column-count:2;}}
@media(min-width:960px){.gal-masonry{column-count:3;}}
.gal-item{
  margin:0 0 14px;
  border-radius:var(--r-md);
  overflow:hidden;
  break-inside:avoid;
  cursor:pointer;
  position:relative;
  background:var(--bg-alt);
  transition:transform var(--t-fast);
}
.gal-item img{
  width:100%;height:auto;display:block;
  transition:transform .5s ease;
}
.gal-item:hover img{transform:scale(1.04);}
.gal-item::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 60%,rgba(15,40,30,.4));
  opacity:0;
  transition:opacity var(--t-fast);
  pointer-events:none;
}
.gal-item:hover::after{opacity:1;}
.gal-item-cta{
  display:flex;flex-direction:column;justify-content:flex-end;
  background:linear-gradient(160deg,var(--accent) 0%,#163F36 100%);
  color:var(--on-accent);
  padding:28px 24px;
  border-radius:var(--r-md);
  min-height:240px;
  cursor:default;
  margin:0 0 14px;
  break-inside:avoid;
}
.gal-item-cta::after{display:none;}
.gal-item-cta:hover{transform:none;}
.gal-item-cta h3{color:var(--on-accent);font-size:1.4rem;margin-bottom:10px;line-height:1.2;}
.gal-item-cta p{color:var(--on-accent-mute);font-size:.92rem;margin-bottom:18px;line-height:1.55;}
.gal-item-cta .btn{align-self:flex-start;}

/* Avis */
.avis{background:var(--bg-alt);}
.avis-cards{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
@media(min-width:768px){.avis-cards{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1080px){.avis-cards{grid-template-columns:repeat(3,1fr);}}
.avis-foot{
  margin-top:28px;text-align:center;
}
.lien-google{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--ff-ui);font-size:.92rem;font-weight:500;
  color:var(--accent);
  padding:10px 0;
}
.lien-google:hover{text-decoration:underline;}
.lien-google svg{width:16px;height:16px;}

/* FAQ */
.faq{background:var(--bg);}
.faq .container{max-width:820px;}

/* Zone */
.zone{background:var(--bg-alt);}
.zone-grid{
  display:grid;grid-template-columns:1fr;gap:32px;
}
@media(min-width:880px){
  .zone-grid{grid-template-columns:1fr 1.1fr;gap:48px;}
}
.zone-info h3{
  font-family:var(--ff-display);font-size:1.05rem;font-weight:600;
  margin-bottom:14px;color:var(--text);
  text-transform:uppercase;letter-spacing:.08em;font-size:.82rem;
  display:flex;align-items:center;gap:10px;
}
.zone-info h3 svg{width:16px;height:16px;color:var(--accent);}
.zone-info h3:not(:first-child){margin-top:32px;}
.zone-chips{display:flex;flex-wrap:wrap;gap:8px;}
.horaires-table{
  display:flex;flex-direction:column;
  background:var(--surface);
  border-radius:var(--r-md);
  padding:6px 18px;
  border:1px solid var(--border);
}
.horaires-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-family:var(--ff-ui);font-size:.92rem;
}
.horaires-row:last-child{border-bottom:0;}
.horaires-row.is-today{color:var(--accent);font-weight:600;}
.horaires-row.is-today .horaires-day::before{
  content:"";display:inline-block;width:6px;height:6px;border-radius:50%;
  background:var(--accent);margin-right:9px;vertical-align:1px;
}
.horaires-row.is-closed{color:var(--text-mute);}
.horaires-day{text-transform:capitalize;}
.horaires-hours{font-variant-numeric:tabular-nums;}

.map-wrapper{
  width:100%;
  border-radius:var(--r-md);overflow:hidden;
  box-shadow:0 10px 28px rgba(15,40,30,.10);
  background:var(--bg-alt);
  position:relative;
  aspect-ratio:4/5;
  min-height:340px;
}
@media(min-width:880px){.map-wrapper{aspect-ratio:auto;height:100%;min-height:460px;}}
.map-wrapper iframe{
  position:absolute;inset:0;width:100%;height:100%;
  border:0;
}

/* Contact */
.contact{background:var(--bg);}
.contact-grid{
  display:grid;grid-template-columns:1fr;gap:36px;
}
@media(min-width:880px){.contact-grid{grid-template-columns:1fr 1fr;gap:56px;}}
.contact-block h3{
  font-family:var(--ff-display);font-size:1.4rem;font-weight:600;
  margin-bottom:14px;color:var(--text);
}
.contact-info{display:flex;flex-direction:column;gap:14px;margin-top:24px;}
.contact-item{
  display:flex;align-items:center;gap:14px;
  font-family:var(--ff-ui);font-size:.95rem;color:var(--text);
  padding:10px 0;
}
.contact-item-icon{
  width:42px;height:42px;border-radius:50%;
  background:color-mix(in srgb,var(--accent) 14%,var(--bg));
  color:var(--accent);
  display:grid;place-items:center;
  flex-shrink:0;
}
.contact-item-icon svg{width:18px;height:18px;}
.contact-item span{display:block;}
.contact-item small{display:block;font-size:.78rem;color:var(--text-mute);margin-top:2px;}
.contact-item a{color:var(--text);transition:color var(--t-fast);}
.contact-item a:hover{color:var(--accent);}
.contact-cta-row{display:flex;flex-direction:column;gap:10px;margin-top:24px;}

/* Realisations page */
.page-hero{
  padding:36px 0 24px;
  background:var(--bg);
  border-bottom:1px solid var(--border);
}
.page-hero .eyebrow{margin-bottom:14px;}
.page-hero h1{font-size:clamp(2rem,5vw,3.2rem);margin-bottom:16px;}
.page-hero p{font-size:1.05rem;color:var(--text-2);max-width:60ch;line-height:1.6;}
.page-hero-back{
  display:inline-flex;align-items:center;gap:6px;
  font-family:var(--ff-ui);font-size:.86rem;color:var(--accent);
  margin-bottom:16px;
}
.page-hero-back:hover{text-decoration:underline;}

.gal-full{padding:48px 0 90px;}
.gal-full .container{max-width:1280px;}

.realisations-cta{
  background:var(--accent);
  color:var(--on-accent);
  border-radius:var(--r-lg);
  padding:36px 28px;
  margin-top:36px;
  text-align:center;
}
.realisations-cta h3{color:var(--on-accent);font-size:1.5rem;margin-bottom:10px;}
.realisations-cta p{color:var(--on-accent-mute);margin-bottom:22px;}
.realisations-cta-buttons{display:flex;flex-direction:column;gap:10px;max-width:340px;margin:0 auto;}
@media(min-width:560px){.realisations-cta-buttons{flex-direction:row;justify-content:center;max-width:none;}}
