/* === HERO IMMERSIF (override HERO-SVG impose : 8 photos stock dispo, regle photos non-negociable) === */
.hero-immersif {
  position: relative;
  min-height: clamp(520px, 84vh, 760px);
  display: flex; align-items: flex-end;
  padding: clamp(40px, 7vw, 96px) 24px clamp(48px, 6vw, 88px);
  overflow: hidden;
  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:
    radial-gradient(60% 60% at 15% 10%, rgba(36, 74, 58, 0.32) 0%, transparent 60%),
    radial-gradient(50% 50% at 90% 20%, rgba(185, 138, 74, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(20, 28, 22, 0.14) 0%, rgba(20, 28, 22, 0.7) 100%);
}
.hero-immersif__inner {
  position: relative; z-index: 2;
  max-width: 820px; color: #fff;
  width: 100%;
}
.hero-immersif__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-ui); font-size: 0.76rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--accent-2); margin-bottom: 18px;
}
.hero-immersif__eyebrow::before {
  content: ""; width: 28px; height: 1.5px; background: var(--accent-2); display: block;
}
.hero-immersif__title {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.04; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 18px;
}
.hero-immersif__title em {
  font-style: italic; color: var(--accent-2); font-weight: 500;
}
.hero-immersif__sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.55;
  color: rgba(255,255,255,0.9); max-width: 52ch;
  margin: 0 0 28px;
}
.hero-immersif__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-immersif__rating { margin-bottom: 24px; }

@media (max-width: 600px) {
  .hero-immersif { padding: calc(var(--header-h-mobile) + 24px) 20px 36px; min-height: 88dvh; }
  .hero-immersif__cta { flex-direction: column; align-items: stretch; }
  .hero-immersif__cta .btn { width: 100%; }
}

/* === STATS strip === */
.stats-strip {
  background: color-mix(in srgb, var(--accent) 6%, var(--bg));
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; text-align: center;
}
@media (max-width: 600px) { .stats-grid { gap: 14px; } }
.stat-item { padding: 0 8px; }
.stat-number {
  display: block;
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  color: var(--accent); line-height: 1; margin-bottom: 6px;
}
.stat-label {
  display: block; color: var(--text-2);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 500;
}

/* === AVIS === */
/* row-sep (LAY-6 impose) */
.avis-rows { display: flex; flex-direction: column; }
.avis-rows__item {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.avis-rows__item:last-child { border-bottom: 1px solid var(--border); }
.avis-stars { display: inline-flex; gap: 2px; color: #D7AB79; }
.avis-stars svg { width: 16px; height: 16px; fill: currentColor; }
.avis-quote {
  font-family: var(--ff-display); font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic; color: var(--text); line-height: 1.45;
  margin: 0; max-width: 65ch;
}
.avis-quote--empty {
  font-style: normal; color: var(--text-2); font-size: 1rem;
}
.avis-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-size: 0.85rem; color: var(--text-2);
}
.avis-author { font-weight: 600; color: var(--text); }
.avis-date { color: var(--text-mute); }
.badge-google {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
  color: var(--text-2); font-size: 0.78rem; font-weight: 500;
}
.badge-google svg { width: 13px; height: 13px; }
.avis-cta-row {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  justify-content: space-between;
}
.lien-google {
  color: var(--accent); font-weight: 500; font-size: 0.93rem;
  text-decoration: underline; text-underline-offset: 4px;
}

/* === SERVICES grid-asym (LAY-6 impose) === */
.svc-asym {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 2vw, 22px);
}
.svc-asym__card { grid-column: span 3; }
.svc-asym__card--wide { grid-column: span 6; }
.svc-asym__card--lead { grid-column: span 4; }
.svc-asym__card--side { grid-column: span 2; }
@media (max-width: 768px) {
  .svc-asym { grid-template-columns: 1fr; }
  .svc-asym__card,
  .svc-asym__card--wide,
  .svc-asym__card--lead,
  .svc-asym__card--side { grid-column: 1 / -1; }
}

/* === GALERIE grid-feat (LAY-6 impose) === */
.gal-feat {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr; gap: 12px;
}
.gal-feat__item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--surface);
  cursor: zoom-in;
  transition: transform var(--dur) var(--ease);
}
.gal-feat__item:hover { transform: translateY(-3px); }
.gal-feat__item img {
  width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1/1;
  transition: transform .5s var(--ease);
}
.gal-feat__item:hover img { transform: scale(1.04); }
.gal-feat__big { grid-column: span 2; grid-row: span 2; }
.gal-feat__big img { aspect-ratio: auto; }
@media (max-width: 600px) {
  .gal-feat { grid-template-columns: repeat(2, 1fr); }
  .gal-feat__big { grid-column: span 2; grid-row: span 1; }
  .gal-feat__big img { aspect-ratio: 16/10; }
}

.gal-cta-row { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }

/* === APROPOS === */
.apropos-grid {
  display: grid; gap: clamp(28px, 5vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 800px) { .apropos-grid { grid-template-columns: 1.1fr 0.9fr; } }
.apropos-text p { color: var(--text-2); font-size: 1.02rem; line-height: 1.7; }
.apropos-text p:first-of-type::first-letter {
  font-family: var(--ff-display); font-weight: 600;
  font-size: 3.2rem; line-height: 1; color: var(--accent);
  float: left; padding: 6px 12px 0 0;
}
.apropos-photo {
  border-radius: 22px 4px 22px 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface);
}
.apropos-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 6px; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%; padding: 20px 0; text-align: left;
  background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; color: var(--text);
  font-family: var(--ff-display); font-size: clamp(1.05rem, 1.6vw, 1.18rem); font-weight: 500;
  transition: color var(--dur) var(--ease);
}
.faq-trigger:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0; width: 24px; height: 24px;
  display: grid; place-items: center;
  color: var(--accent);
  transition: transform var(--dur) var(--ease);
}
.faq-chevron::before {
  content: ""; width: 12px; height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 0 22px; color: var(--text-2); }
.faq-answer[hidden] { display: none !important; }
.faq-answer p { margin: 0; line-height: 1.65; }

/* === ZONE === */
.zone-grid {
  display: grid; gap: clamp(24px, 4vw, 40px);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .zone-grid { grid-template-columns: 1.1fr 1fr; } }
.zone-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.zone-hours {
  margin-top: 28px;
  background: color-mix(in srgb, var(--accent) 5%, var(--bg));
  border-radius: var(--r-md);
  padding: 20px; border: 1px solid var(--border);
}
.zone-hours h4 { margin-bottom: 14px; font-family: var(--ff-display); font-size: 1.05rem; }
.zone-hours-table {
  width: 100%; border-collapse: collapse;
}
.zone-hours-table tr { border-bottom: 1px solid var(--border); }
.zone-hours-table tr:last-child { border: 0; }
.zone-hours-table td { padding: 9px 0; font-size: 0.92rem; color: var(--text-2); }
.zone-hours-table td:first-child { text-transform: capitalize; }
.zone-hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.zone-hours-table tr.is-today { color: var(--text); font-weight: 600; }
.zone-hours-table tr.is-today td { color: var(--text); font-weight: 600; }
.zone-hours-table tr.is-closed td:last-child { color: var(--text-mute); font-style: italic; }
.zone-status {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; font-size: 0.92rem; color: var(--text-2);
}
.zone-status .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--text-mute);
}
.zone-status.is-open .dot { background: #1b9b3e; box-shadow: 0 0 0 0 rgba(27, 155, 62, 0.4); animation: pulse-dot 2s infinite; }
.zone-status.is-closed .dot { background: #b94a4a; }
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(27,155,62,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(27,155,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(27,155,62,0); }
}
.map-wrapper {
  position: relative; width: 100%; padding-top: 70%;
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrapper iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* === CONTACT === */
.contact-grid {
  display: grid; gap: clamp(24px, 4vw, 48px);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center;
  padding: 14px 16px; background: color-mix(in srgb, var(--accent) 6%, var(--bg));
  border-radius: var(--r-md); border: 1px solid var(--border);
  text-decoration: none; color: var(--text); min-width: 0;
}
.contact-row:hover { background: color-mix(in srgb, var(--accent) 12%, var(--bg)); color: var(--accent); }
.contact-row__icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 18%, var(--bg));
  color: var(--accent);
  flex-shrink: 0;
}
.contact-row__icon svg { width: 20px; height: 20px; }
.contact-row__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); font-weight: 500; display: block; margin-bottom: 2px; }
.contact-row__value { font-family: var(--ff-display); font-size: 1.05rem; color: var(--text); font-weight: 500; word-break: break-word; }

/* hero bg gradient OKLCH (TEX-6, mais on l'applique en complement du voile photo deja) */

/* dispatch responsive : hero CTA full-width sur mobile (PIEGE PROD #2) */
@media (max-width: 600px) {
  .hero-immersif__cta .btn { width: 100%; }
}
