/* HERO — HERO-GRILLE-7-5 (impose) */
.hero-grid75{
  max-width:1240px;margin:0 auto;
  padding:clamp(44px,7vw,100px) 20px;
  display:grid;
  grid-template-columns:7fr 5fr;
  gap:clamp(28px,4vw,64px);
  align-items:center;
}
.hero-grid75__eyebrow{
  font-family:var(--ff-ui);
  text-transform:uppercase;letter-spacing:0.16em;
  font-size:0.78rem;color:var(--accent);
  margin-bottom:18px;
  display:inline-flex;align-items:center;gap:10px;
  font-weight:600;
}
.hero-grid75__eyebrow::before{content:"";width:32px;height:1px;background:var(--accent);}
.hero-grid75__title{
  font-family:var(--ff-display);
  font-size:clamp(2.6rem,5.8vw,4.6rem);
  line-height:1.03;
  color:var(--text);
  font-weight:500;
  letter-spacing:-0.005em;
}
.hero-grid75__title em{font-style:italic;color:var(--accent);position:relative;display:inline-block;}
.hero-grid75__title em::after{
  content:"";position:absolute;left:-3px;right:-3px;bottom:6%;height:0.32em;
  background:var(--accent-soft);z-index:-1;
  transform:skewX(-8deg);
}
.hero-grid75__sub{
  font-family:var(--ff-body);
  font-size:clamp(1.02rem,1.6vw,1.18rem);
  color:var(--text-2);
  margin:18px 0 28px;
  max-width:48ch;
  line-height:1.6;
}
.hero-grid75__cta{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:28px;
}
.hero-grid75__cta .btn{width:100%;}
.hero-grid75__meta{
  display:flex;flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.hero-grid75__media{
  width:100%;
  aspect-ratio:4/5;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  box-shadow:var(--shadow-deep);
}
.hero-grid75__media img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
.hero-grid75__frame-tag{
  position:absolute;
  bottom:18px;left:18px;
  background:var(--bg);
  color:var(--text);
  font-family:var(--ff-ui);
  font-size:0.74rem;
  text-transform:uppercase;
  letter-spacing:0.14em;
  font-weight:600;
  padding:8px 12px;
  border-radius:6px;
  box-shadow:var(--shadow-soft);
}
.hero-grid75__frame-tag em{
  font-family:var(--ff-display);
  font-style:italic;
  color:var(--accent);
  text-transform:none;
  letter-spacing:0;
  font-size:0.86rem;
  margin-right:6px;
}

@media (max-width:900px){
  .hero-grid75{
    grid-template-columns:1fr;
    gap:24px;
    padding:calc(var(--header-h-mobile) + 24px) 20px 40px;
  }
  .hero-grid75__media{aspect-ratio:16/10;order:-1;}
  .hero-grid75__cta{flex-direction:column;}
  .hero-grid75__cta .btn{width:100%;}
}
@media (min-width:901px){
  .hero-grid75__cta{flex-direction:row;flex-wrap:wrap;}
  .hero-grid75__cta .btn{width:auto;}
}

/* STATS STRIP */
.stats-strip{
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:36px 0 !important;
}
.stats-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  text-align:center;
}
@media (min-width:640px){
  .stats-grid{grid-template-columns:repeat(3, minmax(0,1fr));gap:20px;}
}
.stat-item{
  display:flex;flex-direction:column;align-items:center;gap:8px;
  padding:0 8px;
}
.stat-number{
  font-family:var(--ff-display);
  font-size:clamp(2rem,4.5vw,2.8rem);
  color:var(--accent);
  font-weight:500;
  font-style:italic;
  line-height:1;
}
.stat-label{
  font-family:var(--ff-ui);
  font-size:0.82rem;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:var(--text-2);
  font-weight:500;
}
@media (min-width:640px){
  .stat-item+.stat-item{
    border-left:1px solid var(--border);
  }
}

/* SECTION HEAD common */
.section-head{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:36px;
  max-width:720px;
}
.section-head h2 em{font-style:italic;color:var(--accent);}
.section-head p{
  font-size:1.05rem;
  color:var(--text-2);
  max-width:60ch;
  line-height:1.65;
}

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

.svc-card{
  padding:28px 24px;
  display:flex;
  flex-direction:column;
  gap:14px;
  height:100%;
}
.svc-card__num{
  font-family:var(--ff-display);
  font-style:italic;
  color:var(--accent);
  font-size:1.1rem;
  letter-spacing:0.04em;
  opacity:0.85;
}
.svc-card__icon{
  width:54px;height:54px;
  display:grid;place-items:center;
  border-radius:14px;
  background:color-mix(in srgb, var(--accent) 12%, var(--bg));
  color:var(--accent);
  margin-bottom:6px;
}
.svc-card__icon svg{width:30px;height:30px;}
.svc-card h3{
  font-family:var(--ff-display);
  font-size:1.32rem;
  line-height:1.25;
  color:var(--text);
  font-weight:500;
}
.svc-card p{
  font-size:0.96rem;
  color:var(--text-2);
  line-height:1.6;
}
.svc-card ul li{
  font-size:0.9rem;
  color:var(--text-2);
  padding:5px 0 5px 18px;
  position:relative;
}
.svc-card ul li::before{
  content:"";
  position:absolute;left:0;top:14px;
  width:8px;height:1px;background:var(--accent);
}

/* REALISATIONS — gallery grid (impose) */
.gal-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
.gal-item{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  cursor:pointer;
  aspect-ratio:1/1;
}
.gal-item img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
  filter:saturate(1.02) contrast(1.02);
}
.gal-item:hover img{transform:scale(1.05);}
.gal-tag{
  position:absolute;
  top:12px;left:12px;
  background:var(--bg);
  color:var(--accent);
  font-family:var(--ff-ui);
  font-size:0.7rem;
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-weight:600;
  padding:6px 10px;
  border-radius:6px;
}
@media (max-width:768px){.gal-grid{grid-template-columns:repeat(2, minmax(0,1fr));}}
@media (max-width:480px){.gal-grid{grid-template-columns:minmax(0,1fr);gap:12px;}}
@media (prefers-reduced-motion:reduce){.gal-item:hover img{transform:none;}}

.gal-note{
  margin-top:24px;
  padding:18px 22px;
  background:var(--surface);
  border-radius:12px;
  border-left:3px solid var(--accent);
  font-family:var(--ff-ui);
  font-size:0.94rem;
  color:var(--text-2);
  line-height:1.6;
}

/* PROCESS (substitut avis : 0 avis Google) */
.process{
  background:var(--primary);
  color:#E8DDD2;
  position:relative;
}
.process::before{
  content:"";
  position:absolute;inset:0;
  background-image:radial-gradient(120% 80% at 50% 0%, color-mix(in srgb, var(--accent-2) 14%, transparent) 0%, transparent 60%);
  pointer-events:none;
}
.process .container{position:relative;}
.process .section-head h2{color:#fff;}
.process .section-head h2 em{color:var(--accent-2);}
.process .section-head p{color:#C4B19E;}

.process-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
@media (min-width:768px){
  .process-grid{grid-template-columns:repeat(3, minmax(0,1fr));gap:24px;}
}
.process-step{
  padding:28px 26px;
  border:1px solid rgba(255,255,255,0.14);
  border-radius:14px;
  background:rgba(255,255,255,0.04);
  transition:transform .25s, border-color .25s, background .25s;
}
.process-step:hover{transform:translateY(-3px);border-color:rgba(168,84,58,0.5);background:rgba(255,255,255,0.06);}
.process-step__num{
  font-family:var(--ff-display);
  font-style:italic;
  font-size:2.2rem;
  color:var(--accent-2);
  line-height:1;
  margin-bottom:14px;
}
.process-step h3{
  font-family:var(--ff-display);
  color:#fff;
  font-size:1.3rem;
  margin-bottom:8px;
  font-weight:500;
}
.process-step p{color:#C4B19E;font-size:0.96rem;line-height:1.6;}
.process-note{
  margin-top:32px;
  font-family:var(--ff-display);
  font-style:italic;
  font-size:1.05rem;
  color:#D6C7B8;
  text-align:center;
  max-width:60ch;
  margin-left:auto;margin-right:auto;
}
@media (prefers-reduced-motion:reduce){.process-step:hover{transform:none;}}

/* FAQ */
.faq-list{display:flex;flex-direction:column;gap:0;border-top:1px solid var(--border);}
.faq-item{border-bottom:1px solid var(--border);}
.faq-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 0;
  font-family:var(--ff-display);
  font-size:1.18rem;
  font-weight:500;
  color:var(--text);
  text-align:left;
  line-height:1.35;
}
.faq-chevron{
  flex-shrink:0;
  width:32px;height:32px;
  display:grid;place-items:center;
  border-radius:50%;
  background:color-mix(in srgb, var(--accent) 12%, var(--bg));
  color:var(--accent);
  position:relative;
  transition:transform .3s, background .3s;
}
.faq-chevron::before,.faq-chevron::after{
  content:"";position:absolute;
  background:var(--accent);
  border-radius:1px;
  transition:transform .3s;
}
.faq-chevron::before{width:12px;height:2px;}
.faq-chevron::after{width:2px;height:12px;}
.faq-trigger[aria-expanded="true"] .faq-chevron::after{transform:rotate(90deg);}
.faq-trigger[aria-expanded="true"] .faq-chevron{background:var(--accent);}
.faq-trigger[aria-expanded="true"] .faq-chevron::before,
.faq-trigger[aria-expanded="true"] .faq-chevron::after{background:#fff;}
.faq-answer{
  padding-bottom:22px;
  max-width:62ch;
}
.faq-answer p{font-size:1rem;color:var(--text-2);line-height:1.65;}

/* ZONE */
.zone-wrap{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
}
@media (min-width:900px){
  .zone-wrap{grid-template-columns:1fr 1.1fr;gap:48px;align-items:start;}
}
.zone-info h3{
  font-family:var(--ff-display);
  font-size:1.2rem;
  color:var(--text);
  margin-top:20px;
  margin-bottom:12px;
  font-weight:500;
}
.zone-info h3:first-child{margin-top:0;}
.zone-chips{display:flex;flex-wrap:wrap;gap:8px;}
.zone-chips .pill{font-size:0.84rem;padding:7px 13px;}
.zone-chips .pill-main{background:var(--accent);color:#fff;border-color:var(--accent);}

.horaires-table{
  width:100%;
  border-collapse:collapse;
  background:var(--surface);
  border-radius:10px;
  overflow:hidden;
  font-family:var(--ff-ui);
  font-size:0.92rem;
  margin-top:8px;
}
.horaires-table tr{border-bottom:1px solid var(--border);}
.horaires-table tr:last-child{border-bottom:0;}
.horaires-table td{padding:11px 16px;color:var(--text-2);}
.horaires-table td:first-child{color:var(--text);font-weight:500;text-transform:capitalize;}
.horaires-table td:last-child{text-align:right;color:var(--text-2);}
.horaires-table tr.is-today{background:color-mix(in srgb, var(--accent) 10%, var(--surface));}
.horaires-table tr.is-today td{color:var(--text);font-weight:500;}
.horaires-table tr.is-closed td:last-child{color:var(--text-mute);font-style:italic;}

.map-wrapper{
  position:relative;
  width:100%;
  padding-top:62%;
  border-radius:14px;
  overflow:hidden;
  background:var(--surface);
  box-shadow:var(--shadow-card);
}
.map-wrapper iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* CONTACT */
.contact{
  background:var(--primary);
  color:#E8DDD2;
}
.contact .section-head h2{color:#fff;}
.contact .section-head h2 em{color:var(--accent-2);}
.contact .section-head p{color:#C4B19E;}

.contact-wrap{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:36px;
}
@media (min-width:900px){
  .contact-wrap{grid-template-columns:1fr 1fr;gap:48px;align-items:start;}
}
.contact-info{display:flex;flex-direction:column;gap:18px;}
.contact-row{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.contact-row:last-child{border-bottom:0;}
.contact-row__icon{
  flex-shrink:0;
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:10px;
  background:rgba(168,84,58,0.18);
  color:var(--accent-2);
}
.contact-row__icon svg{width:20px;height:20px;}
.contact-row__label{
  font-family:var(--ff-ui);
  font-size:0.74rem;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:#A89684;
  font-weight:600;
  margin-bottom:2px;
}
.contact-row__value{
  font-family:var(--ff-display);
  font-size:1.15rem;
  color:#fff;
  line-height:1.3;
}
.contact-row a.contact-row__value:hover{color:var(--accent-2);}

.tel-big{
  display:block;
  font-family:var(--ff-display);
  font-style:italic;
  font-size:clamp(1.8rem,4vw,2.5rem);
  color:var(--accent-2);
  line-height:1;
  margin-top:8px;
}

.contact-cta{display:flex;flex-direction:column;gap:12px;margin-top:8px;}
.contact-cta .btn{width:100%;}
@media (min-width:600px){
  .contact-cta{flex-direction:row;}
  .contact-cta .btn{width:auto;flex:1;}
}

.form-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:28px 24px;
}
.form-card h3{
  font-family:var(--ff-display);
  color:#fff;
  font-size:1.3rem;
  margin-bottom:6px;
  font-weight:500;
}
.form-card .form-note{color:#A89684;margin-bottom:18px;}
.form-card .field label{color:#C4B19E;}
.form-card .field input,
.form-card .field select,
.form-card .field textarea{
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.16);
  color:#fff;
}
.form-card .field input::placeholder,
.form-card .field textarea::placeholder{color:#8B7A6E;}
.form-card .field input:focus,
.form-card .field select:focus,
.form-card .field textarea:focus{
  background:rgba(255,255,255,0.10);
  border-color:var(--accent-2);
}
.form-card .btn{width:100%;margin-top:6px;}
