/* Sections — padding mobile 48px / desktop 80px */
section { padding: 56px 0; position: relative; }
@media (min-width: 768px) { section { padding: 96px 0; } }

/* HERO-SPLIT (texte gauche / photo droite) */
.hero {
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 56px;
  background: var(--bg);
}
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.hero-split__inner { padding: clamp(8px, 2vw, 24px) 0; }
.hero-split__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-split__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero-split__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.04;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0 0 22px;
}
.hero-split__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.hero-split__sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-2);
  margin: 0 0 30px;
  max-width: 48ch;
  line-height: 1.6;
}
.hero-split__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-split__cta .btn { width: 100%; }
@media (min-width: 560px) {
  .hero-split__cta { flex-direction: row; flex-wrap: wrap; }
  .hero-split__cta .btn { width: auto; }
}
.hero-split__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-split__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: .76rem;
  color: var(--text);
  font-weight: 500;
}
.hero-split__pill svg { width: 13px; height: 13px; color: var(--accent); }

.hero-split__media {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
}
.hero-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-split__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 12px;
  background: rgba(244, 236, 222, 0.92);
  color: var(--text);
  font-family: var(--ff-ui);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  border-radius: 999px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; gap: 28px; }
  .hero-split__media { aspect-ratio: 4/3; order: -1; }
  .hero { padding-top: calc(var(--header-h-mobile) + 20px); padding-bottom: 40px; }
}

/* Section heading commune */
.section-head {
  margin-bottom: 44px;
  max-width: 720px;
}
.section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  line-height: 1.1;
}
.section-head p {
  font-size: 1.02rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}

/* STATS strip */
.stats-strip {
  background: var(--primary);
  color: var(--bg);
  padding: 48px 0;
}
.stats-strip .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: left;
}
.stat-item {
  position: relative;
  padding-left: 18px;
  border-left: 2px solid var(--accent-2);
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  display: block;
  color: var(--bg);
  line-height: 1.05;
  margin-bottom: 6px;
}
.stat-number em { font-style: italic; color: var(--accent-2); font-weight: 500; }
.stat-label {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  color: rgba(244, 236, 222, 0.7);
  font-weight: 500;
}
@media (max-width: 900px) {
  .stats-strip .stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}
@media (max-width: 560px) {
  .stats-strip { padding: 40px 0; }
  .stats-strip .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* SERVICES grid-3 */
.services {
  background: var(--bg);
}
.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; }
}

/* REALISATIONS masonry */
.realisations { background: var(--bg-alt); }
.gal-masonry {
  column-count: 3;
  column-gap: 14px;
}
.gal-masonry .gal-item {
  margin: 0 0 14px;
  border-radius: var(--r-md);
  overflow: hidden;
  display: block;
  background: var(--bg);
  break-inside: avoid;
  position: relative;
  cursor: pointer;
  transition: transform var(--t-med);
  border: 0;
  padding: 0;
  width: 100%;
}
.gal-masonry .gal-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease, filter .3s ease;
}
.gal-masonry .gal-item:hover img { transform: scale(1.04); filter: brightness(1.04); }
.gal-masonry .gal-item .gal-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 11px;
  background: rgba(244, 236, 222, 0.94);
  color: var(--text);
  font-family: var(--ff-ui);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s, transform .25s;
}
.gal-masonry .gal-item:hover .gal-tag { opacity: 1; transform: none; }
@media (max-width: 900px) { .gal-masonry { column-count: 2; column-gap: 12px; } }
@media (max-width: 560px) {
  .gal-masonry { column-count: 1; }
  .gal-masonry .gal-item .gal-tag { opacity: 1; transform: none; }
}
.gal-note {
  margin-top: 32px;
  padding: 18px 20px;
  background: color-mix(in srgb, var(--text) 4%, var(--bg));
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: .9rem;
  color: var(--text-2);
  font-style: italic;
}

/* PROCESS (substitut avis) */
.process { background: var(--primary); color: var(--bg); }
.process .section-head h2 { color: var(--bg); }
.process .section-head p { color: rgba(244, 236, 222, 0.74); }
.process .eyebrow { color: var(--accent-2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.process-step {
  background: rgba(244, 236, 222, 0.05);
  border-left: 3px solid var(--accent-2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 24px 22px;
}
.process-step__num {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent-2);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.process-step__title {
  font-family: var(--ff-display);
  font-size: 1.08rem;
  color: var(--bg);
  margin-bottom: 8px;
  font-weight: 600;
}
.process-step__body {
  font-size: .9rem;
  color: rgba(244, 236, 222, 0.78);
  line-height: 1.55;
  margin: 0;
}
.process-note {
  margin-top: 28px;
  font-size: .9rem;
  color: rgba(244, 236, 222, 0.6);
  font-style: italic;
  max-width: 64ch;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* FAQ */
.faq { background: var(--bg); }
.faq-list { margin: 0; padding: 0; max-width: 820px; }
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--ff-display);
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}
.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--t-med), background var(--t-med);
}
.faq-chevron::before, .faq-chevron::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
}
.faq-chevron::before { width: 11px; height: 2px; }
.faq-chevron::after { width: 2px; height: 11px; transition: opacity var(--t-med); }
.faq-trigger[aria-expanded="true"] .faq-chevron { background: var(--accent); }
.faq-trigger[aria-expanded="true"] .faq-chevron::before { background: #fff; }
.faq-trigger[aria-expanded="true"] .faq-chevron::after { opacity: 0; background: #fff; }
.faq-answer {
  padding: 0 4px 20px;
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 60ch;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ZONE */
.zone { background: var(--bg-alt); }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.zone-info h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  margin: 24px 0 12px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.zone-info h3:first-child { margin-top: 0; }
.horaires-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.horaires-table tr { border-top: 1px solid var(--border); }
.horaires-table tr:last-child { border-bottom: 1px solid var(--border); }
.horaires-table td {
  padding: 10px 4px;
  color: var(--text-2);
}
.horaires-table td:first-child { font-family: var(--ff-ui); font-weight: 500; color: var(--text); }
.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); }
.dispo-line {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: .82rem;
  color: var(--text);
  font-weight: 500;
}
.dispo-line .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}
.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .zone-grid { grid-template-columns: 1fr; gap: 30px; }
  .map-wrapper iframe { height: 280px; }
}

/* APROPOS (inside hero or after services) */
.apropos { background: var(--bg); }
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.apropos-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-alt);
}
.apropos-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.apropos-text p { font-size: 1.02rem; line-height: 1.7; color: var(--text-2); margin-bottom: 1em; }
.apropos-text p:first-of-type { font-size: 1.12rem; color: var(--text); }
.apropos-text p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 600;
  float: left;
  line-height: 1;
  margin: 4px 12px 0 0;
  color: var(--accent);
}
.apropos-sign {
  margin-top: 26px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
}
@media (max-width: 900px) {
  .apropos-grid { grid-template-columns: 1fr; gap: 28px; }
  .apropos-photo { aspect-ratio: 4/3; order: -1; }
}

/* CONTACT */
.contact { background: var(--primary); color: var(--bg); padding-bottom: 96px; }
.contact .section-head h2 { color: var(--bg); }
.contact .section-head p { color: rgba(244, 236, 222, 0.7); }
.contact .eyebrow { color: var(--accent-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: start;
}
.tel-big {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--accent-2);
  display: inline-block;
  margin-bottom: 22px;
  line-height: 1;
}
.contact-cta { display: grid; gap: 12px; max-width: 320px; margin-bottom: 32px; }
.contact-cta .btn { width: 100%; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(244, 236, 222, 0.14);
  font-size: .94rem;
  color: rgba(244, 236, 222, 0.85);
}
.contact-row:last-of-type { border-bottom: 1px solid rgba(244, 236, 222, 0.14); }
.contact-row svg { width: 22px; height: 22px; color: var(--accent-2); flex-shrink: 0; }
.contact-row strong { color: var(--bg); font-family: var(--ff-display); font-weight: 600; }

.contact-form {
  background: rgba(244, 236, 222, 0.06);
  padding: 28px;
  border-radius: var(--r-xl);
  display: grid;
  gap: 16px;
}
.contact-form label { color: var(--bg); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(244, 236, 222, 0.96);
  color: var(--text);
  border-color: transparent;
}
.contact-form .btn { width: 100%; }
.contact-form .form-note {
  font-size: .82rem;
  color: rgba(244, 236, 222, 0.62);
  margin: 0;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .contact { padding-bottom: 80px; }
  .contact-form { padding: 22px; }
}
