/* HERO-IMMERSIF */
.hero-immersif {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 7vw, 88px) 0;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  margin-top: 0;
}
.hero-immersif__bg { position: absolute; inset: 0; z-index: 0; }
.hero-immersif__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-immersif::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,30,24,.15) 0%, rgba(20,30,24,.78) 100%),
    linear-gradient(90deg, rgba(20,30,24,.42) 0%, rgba(20,30,24,0) 60%);
}
.hero-immersif .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-immersif__inner { max-width: 760px; color: #fff; }
.hero-immersif__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  color: #fff;
  background: rgba(255,255,255,.14);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero-immersif__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
}
.hero-immersif__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.04;
  color: #fff;
  margin: 0;
  letter-spacing: -.01em;
}
.hero-immersif__title em {
  font-style: italic;
  color: #E6D7A8;
}
.hero-immersif__sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  margin: 18px 0 0;
  max-width: 52ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-immersif__meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-family: var(--ff-ui);
  font-size: .88rem;
  color: rgba(255,255,255,.78);
}
.hero-immersif__meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-immersif__meta svg { width: 14px; height: 14px; opacity: .85; }

@media (max-width: 768px) {
  .hero-immersif { min-height: 84vh; padding: calc(var(--header-h-mobile) + 24px) 0 36px; }
}

/* STATS STRIP */
.stats-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 8px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--border-soft);
}
.stat-number {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-2);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .stats-strip { padding: 48px 0; }
  .stat-number { font-size: 2.6rem; }
  .stat-label { font-size: .8rem; }
}

/* PROCESS (COMP-4) */
.process { background: transparent; }
.section-eyebrow {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--accent); }
.section-head { margin-bottom: 36px; max-width: 720px; }
.section-head h2 { margin: 0; }
.section-head p {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-top: 12px;
  max-width: 56ch;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: process;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  position: relative;
  counter-increment: process;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-step::before {
  content: "0" counter(process);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--accent);
  line-height: 1;
}
.process-step h3 { margin: 0; font-size: 1.15rem; }
.process-step p { margin: 0; color: var(--text-2); font-size: .95rem; line-height: 1.55; }

/* SERVICES (grid-3 + riso) */
.services { background: transparent; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* REALISATIONS (gal-grid + lightbox) */
.realisations { background: var(--bg-alt); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gal-grid figure {
  margin: 0;
  cursor: zoom-in;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.gal-grid figure:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,.10); }
.gal-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gal-grid { grid-template-columns: 1fr; gap: 12px; } }

/* AVIS (cards style) */
.avis { background: transparent; }
.avis-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .avis-cards { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
}
.avis-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.avis-card.is-feature {
  background: var(--surface-deep);
}
.avis-card.is-feature,
.avis-card.is-feature :where(p, span, blockquote, .avis-name, .avis-date, small) {
  color: #F3EFE7;
}
.avis-card.is-feature .avis-stars { color: #E6D7A8; }
.avis-stars { display: inline-flex; gap: 2px; color: var(--accent); }
.avis-stars svg { width: 16px; height: 16px; }
.avis-card blockquote {
  margin: 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  white-space: pre-line;
}
.avis-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; align-items: center; margin-top: auto; }
.avis-name { font-family: var(--ff-ui); font-size: .92rem; font-weight: 600; color: var(--text); }
.avis-date { font-family: var(--ff-ui); font-size: .78rem; color: var(--text-mute); margin-left: 6px; font-weight: 400; }
.badge-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-2);
}
.badge-google svg { width: 12px; height: 12px; }
.avis-card.is-feature .badge-google {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: #E6E2D8;
}
.avis-card.is-meta blockquote {
  font-style: normal;
  font-family: var(--ff-body);
  font-size: .96rem;
  color: var(--text-2);
  line-height: 1.55;
}
.avis-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: .95rem;
  color: var(--accent);
}
.avis-link svg { width: 16px; height: 16px; }

/* ZONE + CARTE */
.zone { background: var(--bg-alt); }
.zone-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) {
  .zone-cols { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.zone-block h3 {
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin: 0 0 12px;
}
.zone-block + .zone-block { margin-top: 28px; }
.zone-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.zone-list li {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .9rem;
  font-family: var(--ff-ui);
  color: var(--text);
}
.map-wrapper {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  position: relative;
  aspect-ratio: 4/3;
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 900px) {
  .map-wrapper { aspect-ratio: auto; height: 100%; min-height: 380px; }
}

/* CONTACT */
.contact { background: var(--surface-deep); color: #E6E2D8; }
.contact h2 { color: #fff; }
.contact .section-eyebrow { color: var(--accent-2); }
.contact .section-eyebrow::before { background: var(--accent-2); }
.contact .section-head p { color: rgba(230,226,216,.78); }
.contact-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .contact-cols { grid-template-columns: 1fr 1.05fr; gap: 56px; }
}
.contact-quick { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md);
  text-decoration: none;
}
.contact-row:hover { background: rgba(255,255,255,.09); text-decoration: none; }
.contact-row .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  flex-shrink: 0;
}
.contact-row .icon svg { width: 18px; height: 18px; }
.contact-row .meta { display: flex; flex-direction: column; min-width: 0; }
.contact-row .label { font-family: var(--ff-ui); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(230,226,216,.62); }
.contact-row .value { font-family: var(--ff-display); font-size: 1.15rem; color: #fff; word-break: break-word; }
.contact-row.is-wa .icon { background: var(--wa-green); }

.contact-form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.contact-form-card h3 {
  margin: 0 0 14px;
  font-family: var(--ff-display);
  color: #fff;
  font-size: 1.4rem;
}
.contact-form { display: grid; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-family: var(--ff-ui); font-size: .82rem; color: rgba(230,226,216,.85); font-weight: 500; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: #fff;
  padding: 12px 14px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent-2); background: rgba(0,0,0,.30); }
.form-row { display: grid; gap: 14px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-status { font-size: .9rem; margin-top: 6px; min-height: 1.2em; }
.form-status.ok { color: #B6E2C5; }
.form-status.err { color: #F2B4B4; }

/* HORAIRES + DISPO */
.dispo-block { display: flex; flex-direction: column; gap: 14px; }
.dispo-head { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.dispo-head h3 { margin: 0; }
