/* sections.css — styles propres a chaque section */

/* ========== HERO-SPLIT (impose) ========== */
.hero{padding-top:calc(var(--header-h-mobile) + 24px);}
@media (min-width:768px){.hero{padding-top:calc(var(--header-h) + 12px);}}

.hero-split{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
  padding:24px 20px 40px;
}
@media (min-width:768px){
  .hero-split{
    grid-template-columns:1.05fr .95fr;
    gap:clamp(28px,4.5vw,64px);
    padding:48px 28px 80px;
  }
}
.hero-split__inner{order:1;}
.hero-split__media{
  order:0;
  width:100%;
  aspect-ratio:16/10;
  border-radius:var(--r-lg);
  overflow:hidden;
  position:relative;
}
@media (min-width:768px){
  .hero-split__inner{order:0;}
  .hero-split__media{order:1;aspect-ratio:4/5;}
}
.hero-split__media img{width:100%;height:100%;object-fit:cover;display:block;}
.hero-split__media .photo-tag{
  position:absolute;
  left:14px;bottom:14px;
}

.hero-eyebrow{
  font-family:var(--ff-ui);
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--accent);
  margin-bottom:14px;
  display:inline-flex;align-items:center;gap:10px;
}
.hero-eyebrow::before{content:"";width:30px;height:1px;background:currentColor;}

.hero-title{
  font-family:var(--ff-display);
  font-size:clamp(2.3rem,5.6vw,4rem);
  line-height:1.05;
  letter-spacing:-0.008em;
  margin:0 0 18px;
  color:var(--text);
}
.hero-title em{font-style:italic;color:var(--accent);}

.hero-sub{
  font-size:clamp(1rem,1.4vw,1.12rem);
  color:var(--text-2);
  margin:0 0 22px;
  max-width:48ch;
}

.hero-chips{
  display:flex;flex-wrap:wrap;gap:8px;margin-bottom:24px;
}

.hero-cta{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.hero-cta .btn{width:100%;}
@media (min-width:560px){
  .hero-cta{flex-direction:row;flex-wrap:wrap;}
  .hero-cta .btn{width:auto;}
}

/* ========== STATS STRIP ========== */
.stats-strip{
  padding:36px 0;
  background:var(--bg-alt);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.stats-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  text-align:center;
}
@media (min-width:640px){
  .stats-grid{grid-template-columns:repeat(3,1fr);gap:0;}
  .stats-grid .stat-item + .stat-item{border-left:1px solid var(--border);}
}
.stat-item{padding:8px 18px;}
.stat-num{
  display:block;
  font-family:var(--ff-display);
  font-size:clamp(2.2rem,5vw,3.2rem);
  font-weight:500;
  line-height:1;
  color:var(--accent);
  margin-bottom:8px;
}
.stat-num em{font-style:italic;}
.stat-label{
  display:block;
  font-family:var(--ff-ui);
  font-size:.85rem;
  color:var(--text-2);
}

/* ========== SERVICES = alt-rows (LAY-2 impose) ========== */
.services{background:var(--bg);}
.svc-alt{
  display:flex;
  flex-direction:column;
  gap:clamp(40px,5vw,80px);
}
.svc-alt__row{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  align-items:center;
}
@media (min-width:768px){
  .svc-alt__row{grid-template-columns:.95fr 1.05fr;gap:clamp(28px,4vw,64px);}
  .svc-alt__row:nth-child(even) .svc-alt__media{order:-1;}
  .svc-alt__row:nth-child(even) .svc-alt__txt{order:0;}
}
.svc-alt__media{
  width:100%;
  aspect-ratio:4/3;
  border-radius:var(--r-lg);
  overflow:hidden;
  position:relative;
}
.svc-alt__media img{width:100%;height:100%;object-fit:cover;display:block;}
.svc-alt__num{
  font-family:var(--ff-display);
  font-style:italic;
  font-size:1rem;
  color:var(--accent);
  letter-spacing:.04em;
  margin-bottom:8px;
}
.svc-alt__title{
  font-family:var(--ff-display);
  font-size:clamp(1.5rem,2.6vw,2rem);
  margin:0 0 12px;
}
.svc-alt__txt p{color:var(--text-2);max-width:48ch;}
.svc-alt__feats{
  list-style:none;padding:0;margin:14px 0 0;
  display:flex;flex-direction:column;gap:6px;
}
.svc-alt__feats li{
  display:flex;align-items:center;gap:10px;
  font-family:var(--ff-ui);font-size:.92rem;color:var(--text-2);
}
.svc-alt__feats li::before{
  content:"";width:6px;height:6px;border-radius:50%;
  background:var(--accent);flex-shrink:0;
}

/* ========== REALISATIONS / GALERIE = masonry (LAY-2 impose) ========== */
.realisations{background:var(--bg-alt);}
.gal-masonry{
  column-count:1;
  column-gap:14px;
}
@media (min-width:640px){.gal-masonry{column-count:2;}}
@media (min-width:1024px){.gal-masonry{column-count:3;}}
.gal-masonry figure{
  break-inside:avoid;
  margin:0 0 14px;
  border-radius:var(--r-md);
  overflow:hidden;
  cursor:zoom-in;
  position:relative;
  transition:transform .25s var(--ease);
}
.gal-masonry figure:hover{transform:translateY(-3px);}
.gal-masonry img{
  width:100%;height:auto;
  display:block;
  border-radius:var(--r-md);
}
.gal-cta-row{margin-top:32px;text-align:center;}

/* ========== A PROPOS ========== */
.about{background:var(--surface);}
.about-cols{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  align-items:center;
}
@media (min-width:768px){
  .about-cols{grid-template-columns:1.1fr .9fr;gap:clamp(36px,4vw,64px);}
}
.about-txt p{color:var(--text-2);font-size:1.02rem;}
.about-txt p:first-of-type{color:var(--text);font-size:1.08rem;}
.about-points{
  list-style:none;padding:0;
  display:flex;flex-direction:column;gap:6px;
  margin:24px 0 0;
}
.about-media{
  width:100%;
  aspect-ratio:4/5;
  border-radius:var(--r-lg);
  overflow:hidden;
  position:relative;
}
.about-media img{width:100%;height:100%;object-fit:cover;display:block;}
.about-media .photo-tag{position:absolute;left:14px;bottom:14px;}

/* ========== AVIS = single (LAY-2 impose) ========== */
.avis{background:var(--bg);}
.avis-single{
  max-width:780px;
  margin:0 auto;
  text-align:center;
  padding:0 4px;
}
.avis-single__pre{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  font-family:var(--ff-ui);
  font-size:.92rem;
  color:var(--text-2);
}
.avis-single__pre strong{font-weight:600;color:var(--text);}
.avis-single__pre .stars{display:inline-flex;gap:2px;color:#E1A92E;}
.avis-single__quote{
  font-family:var(--ff-display);
  font-style:italic;
  font-weight:500;
  font-size:clamp(1.25rem,2.4vw,1.8rem);
  line-height:1.45;
  color:var(--text);
  margin:0 0 22px;
  position:relative;
}
.avis-single__quote::before,.avis-single__quote::after{
  font-family:var(--ff-display);
  color:var(--accent);
  font-size:2.4em;
  line-height:0;
  vertical-align:middle;
}
.avis-single__quote::before{content:"\201C";margin-right:.1em;}
.avis-single__quote::after{content:"\201D";margin-left:.1em;}
.avis-single__author{
  font-family:var(--ff-ui);
  font-size:.95rem;
  color:var(--text-2);
}
.avis-single__author strong{color:var(--text);font-weight:600;}
.avis-others{
  margin-top:42px;
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
@media (min-width:768px){.avis-others{grid-template-columns:repeat(3,1fr);}}
.avis-card{
  background:color-mix(in srgb,var(--text) 4%,var(--bg));
  border-radius:var(--r-lg);
  padding:24px;
  text-align:left;
  border:1px solid var(--border);
  display:flex;flex-direction:column;gap:12px;
}
.avis-card .stars{display:inline-flex;gap:2px;color:#E1A92E;}
.avis-card blockquote{
  margin:0;
  font-family:var(--ff-body);
  font-size:.96rem;
  color:var(--text);
  line-height:1.55;
}
.avis-card footer{
  font-family:var(--ff-ui);
  font-size:.82rem;
  color:var(--text-2);
  display:flex;flex-wrap:wrap;gap:8px;justify-content:space-between;align-items:center;
  margin-top:auto;
}
.avis-card footer strong{color:var(--text);}
.avis-google-link{
  margin-top:30px;
  text-align:center;
}
.avis-google-link a{
  font-family:var(--ff-ui);
  font-weight:500;
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.badge-google{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  font-family:var(--ff-ui);
  font-size:.72rem;
  font-weight:500;
  letter-spacing:.02em;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--r-pill);
  color:var(--text-2);
}

/* ========== FAQ ========== */
.faq{background:var(--bg-alt);}
.faq-list{
  max-width:780px;
  margin:0 auto;
  padding:0;
}
.faq-item{
  border-bottom:1px solid var(--border);
}
.faq-item:first-child{border-top:1px solid var(--border);}
.faq-trigger{
  width:100%;
  background:transparent;border:0;
  padding:22px 4px;
  cursor:pointer;
  font-family:var(--ff-display);
  font-size:clamp(1.05rem,1.6vw,1.25rem);
  font-weight:500;
  color:var(--text);
  text-align:left;
  display:flex;align-items:center;justify-content:space-between;
  gap:18px;
  line-height:1.35;
}
.faq-chevron{
  flex-shrink:0;
  width:24px;height:24px;
  display:grid;place-items:center;
  position:relative;
  color:var(--accent);
}
.faq-chevron::before,.faq-chevron::after{
  content:"";
  position:absolute;
  background:currentColor;
  border-radius:2px;
  transition:transform .25s var(--ease),opacity .25s var(--ease);
}
.faq-chevron::before{width:12px;height:2px;}
.faq-chevron::after{width:2px;height:12px;}
.faq-trigger[aria-expanded="true"] .faq-chevron::after{transform:scaleY(0);opacity:0;}
.faq-answer{
  padding:0 4px 22px;
  color:var(--text-2);
  max-width:64ch;
}
.faq-answer p:last-child{margin-bottom:0;}

/* ========== ZONE + CARTE ========== */
.zone{background:var(--bg);}
.zone-cols{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
}
@media (min-width:900px){
  .zone-cols{grid-template-columns:1fr 1.05fr;gap:48px;align-items:start;}
}
.zone-info p{color:var(--text-2);}
.zone-chips{
  display:flex;flex-wrap:wrap;gap:8px;
  margin:0 0 26px;padding:0;list-style:none;
}
.zone-chips li{
  font-family:var(--ff-ui);
  font-size:.84rem;
  padding:6px 12px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-pill);
  color:var(--text);
}
.dispo-line{
  display:flex;align-items:center;gap:10px;
  margin:0 0 18px;
  font-family:var(--ff-ui);
  font-size:.92rem;
  color:var(--text);
}
.dispo-dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 4px color-mix(in srgb,var(--accent) 22%,transparent);
  animation:pulse 1.8s ease-in-out infinite;
}
.dispo-dot.is-closed{
  background:#C9483A;
  box-shadow:0 0 0 4px rgba(201,72,58,.22);
  animation:none;
}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 4px color-mix(in srgb,var(--accent) 22%,transparent);}
  50%{box-shadow:0 0 0 8px color-mix(in srgb,var(--accent) 14%,transparent);}
}
@media (prefers-reduced-motion:reduce){.dispo-dot{animation:none;}}

.horaires-table{
  display:grid;
  grid-template-columns:1fr auto;
  gap:0;
  font-family:var(--ff-ui);
  font-size:.92rem;
  background:var(--surface);
  border-radius:var(--r-md);
  border:1px solid var(--border);
  overflow:hidden;
}
.horaires-table .h-day,.horaires-table .h-time{
  padding:11px 16px;
  border-bottom:1px solid var(--border);
  color:var(--text);
}
.horaires-table .h-time{text-align:right;color:var(--text-2);}
.horaires-table > div:nth-last-child(-n+2){border-bottom:0;}
.horaires-table .is-today{background:color-mix(in srgb,var(--accent) 16%,var(--surface));}
.horaires-table .is-today .h-day,.horaires-table .is-today .h-time{color:var(--primary);font-weight:600;}
.horaires-table .is-closed .h-time{color:var(--text-mute);font-style:italic;}

.map-wrapper{
  width:100%;
  border-radius:var(--r-lg);
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--surface);
}
.map-wrapper iframe{
  width:100%;
  height:340px;
  border:0;display:block;
}
@media (min-width:900px){.map-wrapper iframe{height:440px;}}

/* ========== CONTACT (dark surface-deep) ========== */
.contact{
  background:var(--surface-deep);
  color:var(--text-on-dark);
}
.contact .sec-head h2,.contact .sec-head p{color:var(--text-on-dark);}
.contact .sec-head h2 em{color:var(--accent-on-dark);}
.contact .sec-head p{color:color-mix(in srgb,var(--text-on-dark) 78%,transparent);}
.contact-cols{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
}
@media (min-width:900px){
  .contact-cols{grid-template-columns:.85fr 1.15fr;gap:48px;}
}
.contact-rows{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.contact-row{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  background:color-mix(in srgb,var(--text-on-dark) 5%,transparent);
  border:1px solid var(--border-on-dark);
  border-radius:var(--r-md);
  color:var(--text-on-dark);
  text-decoration:none;
  transition:background .2s,border-color .2s;
}
.contact-row:hover{
  background:color-mix(in srgb,var(--accent-on-dark) 16%,transparent);
  border-color:color-mix(in srgb,var(--accent-on-dark) 36%,transparent);
  color:var(--text-on-dark);
}
.contact-row__icon{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:var(--r-md);
  background:color-mix(in srgb,var(--accent-on-dark) 16%,transparent);
  color:var(--accent-on-dark);
  flex-shrink:0;
}
.contact-row__txt{display:flex;flex-direction:column;min-width:0;}
.contact-row__txt .label{
  font-family:var(--ff-ui);
  font-size:.7rem;text-transform:uppercase;letter-spacing:.16em;
  color:color-mix(in srgb,var(--text-on-dark) 64%,transparent);
  margin-bottom:3px;
}
.contact-row__txt .value{
  font-family:var(--ff-display);
  font-size:1.05rem;
  color:var(--text-on-dark);
  line-height:1.3;
  word-break:break-word;
}
.contact-ctas{
  display:flex;flex-direction:column;gap:10px;
  margin-top:20px;
}
.contact-ctas .btn{width:100%;}
@media (min-width:560px){
  .contact-ctas{flex-direction:row;}
  .contact-ctas .btn{width:auto;flex:1;}
}

.contact .form input,.contact .form select,.contact .form textarea{
  background:color-mix(in srgb,var(--text-on-dark) 8%,transparent);
  border-color:var(--border-on-dark);
  color:var(--text-on-dark);
}
.contact .form input::placeholder,.contact .form textarea::placeholder{
  color:color-mix(in srgb,var(--text-on-dark) 45%,transparent);
}
.contact .form label{color:color-mix(in srgb,var(--text-on-dark) 70%,transparent);}
.contact .form input:focus,.contact .form select:focus,.contact .form textarea:focus{
  background:color-mix(in srgb,var(--text-on-dark) 14%,transparent);
  border-color:var(--accent-on-dark);
  box-shadow:0 0 0 4px color-mix(in srgb,var(--accent-on-dark) 24%,transparent);
}

/* ========== Photo-tag pill (sur photos) ========== */
.photo-tag{
  background:color-mix(in srgb,#fff 70%,transparent);
  color:var(--primary);
  border:1px solid color-mix(in srgb,#fff 30%,transparent);
}

/* ========== Realisations page styles ========== */
.real-header{
  padding-top:calc(var(--header-h-mobile) + 28px);
  padding-bottom:28px;
}
@media (min-width:768px){.real-header{padding-top:calc(var(--header-h) + 28px);}}
.breadcrumb{
  font-family:var(--ff-ui);
  font-size:.84rem;
  color:var(--text-mute);
  margin-bottom:18px;
}
.breadcrumb a{color:var(--text-mute);text-decoration:none;}
.breadcrumb a:hover{color:var(--accent);}
.real-title{
  font-family:var(--ff-display);
  font-size:clamp(2rem,4.8vw,3.4rem);
  line-height:1.06;
  margin:0 0 16px;
}
.real-title em{font-style:italic;color:var(--accent);}
.real-lede{
  color:var(--text-2);
  max-width:62ch;
  font-size:1.04rem;
}
.real-section{padding-top:8px;padding-bottom:64px;}
.real-cta-dark{
  background:var(--surface-deep);
  color:var(--text-on-dark);
  text-align:center;
  padding:56px 24px;
  border-radius:var(--r-lg);
  margin:24px 0 0;
}
.real-cta-dark h2{color:var(--text-on-dark);}
.real-cta-dark h2 em{color:var(--accent-on-dark);}
.real-cta-dark p{color:color-mix(in srgb,var(--text-on-dark) 78%,transparent);max-width:48ch;margin:0 auto 22px;}
.real-cta-dark .cta-row{display:flex;flex-direction:column;gap:10px;justify-content:center;align-items:center;}
@media (min-width:560px){.real-cta-dark .cta-row{flex-direction:row;}}
