/* Sections — styles propres a chaque section */

/* ─── HERO SPLIT ─────────────────────────────────────────── */
.hero-section {
  padding-top: var(--header-h);
  background: var(--bg);
}
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) 24px clamp(40px, 6vw, 72px);
}
.hero-split__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-split__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero-split__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 18px;
}
.hero-split__title em {
  font-style: italic;
  color: var(--accent);
}
.hero-split__sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 48ch;
}
.hero-split__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-split__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-split__media {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--text) 18%, transparent);
}
.hero-split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-split__credit {
  font-size: 0.72rem;
  color: var(--text-mute);
  margin-top: 10px;
  text-align: right;
  font-style: italic;
}

/* ─── SERVICES ALT-ROWS (LAY-2) ──────────────────────────── */
.services-section { background: var(--surface); }
.section-label {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.section-title { margin-bottom: 16px; }
.section-intro {
  color: var(--text-2);
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.svc-alt { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 80px); }
.svc-alt__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}
.svc-alt__row--reverse .svc-alt__media { order: -1; }
.svc-alt__media {
  width: 100%;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
  border-radius: var(--r-xl);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.svc-alt__media svg {
  width: clamp(80px, 14vw, 130px);
  height: clamp(80px, 14vw, 130px);
  color: var(--accent);
}
.svc-alt__num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--accent) 18%, transparent);
  line-height: 1;
  margin-bottom: 12px;
}
.svc-alt__title {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--text);
  margin-bottom: 12px;
}
.svc-alt__desc {
  color: var(--text-2);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.svc-alt__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 0.78rem;
  font-family: var(--ff-ui);
  color: var(--text-2);
  background: var(--border);
  border-radius: var(--r-sm);
  padding: 3px 10px;
}

/* ─── CRÉDIT IMPÔT BLOC ──────────────────────────────────── */
.credit-impot-bloc {
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  border: 2px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  margin-top: clamp(40px, 6vw, 64px);
}
.ci-icon {
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 32px; height: 32px; color: #fff; }
.ci-title {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--text);
  margin-bottom: 6px;
}
.ci-desc {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ─── RÉALISATIONS ───────────────────────────────────────── */
.realisations-section { background: var(--bg); }
.realisations-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: clamp(28px, 4vw, 44px);
  flex-wrap: wrap;
}
.lien-voir-tout {
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.lien-voir-tout:hover { text-decoration: underline; }

/* card déco dans masonry */
.gal-deco-card {
  background: color-mix(in srgb, var(--text) 90%, var(--accent));
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 200px;
  break-inside: avoid;
  margin-bottom: 12px;
}
.gal-deco-card p, .gal-deco-card h4 { color: var(--bg); }
.gal-deco-card h4 { font-family: var(--ff-display); font-size: 1.1rem; }
.gal-deco-card .btn-wa { width: fit-content; font-size: 0.88rem; padding: 10px 16px; }

/* ─── AVIS ───────────────────────────────────────────────── */
.avis-section { background: var(--surface); }
.avis-featured {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 52px);
  margin-bottom: 28px;
  text-align: center;
}
.avis-featured-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.45;
  max-width: 680px;
  margin: 0 auto 24px;
}
.avis-featured-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.avis-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.avis-link-google {
  text-align: center;
  margin-top: 28px;
}
.avis-link-google a {
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.avis-link-google a:hover { color: var(--accent); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section { background: var(--bg); }
.faq-intro {
  color: var(--text-2);
  max-width: 48ch;
  margin-bottom: clamp(28px, 4vw, 44px);
}

/* ─── ZONE INTERVENTION ──────────────────────────────────── */
.zone-section { background: var(--surface); }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.communes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.commune-chip {
  font-size: 0.82rem;
  font-family: var(--ff-ui);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
  border-radius: 20px;
  padding: 4px 12px;
  font-weight: 500;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-section { background: var(--text); }
.contact-section .section-label { color: var(--accent-2); }
.contact-section .section-title,
.contact-section p { color: var(--bg); }
.contact-section .section-intro { color: color-mix(in srgb, var(--bg) 75%, transparent); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: color-mix(in srgb, var(--bg) 10%, transparent);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent-2);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-row p, .contact-row a {
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--bg) 80%, transparent);
  font-style: normal;
  line-height: 1.5;
  text-decoration: none;
}
.contact-row a:hover { color: var(--bg); text-decoration: underline; }
.contact-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.contact-form-wrapper {
  background: color-mix(in srgb, var(--bg) 5%, transparent);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
}
.contact-form-wrapper .form-group label { color: color-mix(in srgb, var(--bg) 85%, transparent); }
.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
  background: color-mix(in srgb, var(--bg) 8%, transparent);
  border-color: color-mix(in srgb, var(--bg) 18%, transparent);
  color: var(--bg);
}
.contact-form-wrapper .form-group input::placeholder,
.contact-form-wrapper .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--bg) 40%, transparent);
}
.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-2) 15%, transparent);
}

/* ─── À PROPOS ───────────────────────────────────────────── */
.apropos-section { background: var(--bg-alt); }
.apropos-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.apropos-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.apropos-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.apropos-text .section-title { margin-bottom: 16px; }
.apropos-lead {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.apropos-lead::first-letter {
  font-family: var(--ff-display);
  font-size: 3rem;
  line-height: .85;
  float: left;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--accent);
}
