/* Hero */
.hero {
  padding: var(--sp-8) 0 var(--sp-7);
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; gap: var(--sp-6); }
.hero-content { max-width: 760px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-ui); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--accent-dark);
  background: oklch(94% 0.040 145);
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-4);
}
.hero-eyebrow svg { width: 13px; height: 13px; }
.hero h1 {
  font-size: var(--fs-3xl);
  font-style: italic; font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: var(--sp-4);
}
.hero h1 .accent-wrap {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero h1 .accent-wrap::after {
  content: "";
  position: absolute; left: -2px; right: -2px;
  bottom: 0.08em; height: 0.34em;
  background: var(--accent-soft);
  z-index: -1;
  transform: skew(-1deg);
}
.hero-sub {
  font-family: var(--font-body); font-style: normal;
  font-size: var(--fs-lg);
  color: var(--text-2);
  max-width: 60ch;
  margin-bottom: var(--sp-5);
  line-height: 1.55;
}
.hero-usps { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: var(--sp-5); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: var(--sp-5); }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.2rem 1.4rem;
  font-family: var(--font-ui); font-size: 0.86rem;
  color: var(--text-muted);
}
.hero-meta strong { color: var(--text); font-weight: 500; }

.hero-rating-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.45rem 0.85rem;
  font-family: var(--font-ui); font-size: 0.84rem;
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast);
}
.hero-rating-badge:hover { transform: translateY(-1px); }
.hero-rating-badge strong { font-weight: 600; color: var(--accent-dark); }
.hero-rating-badge .stars { gap: 1px; }
.hero-rating-badge .stars svg { width: 14px; height: 14px; }

/* Hero side : floral SVG decoratif (pas de photo) */
.hero-flora {
  position: relative;
  display: none; /* desktop only via responsive */
}

/* Stats strip */
.stats-strip {
  background: var(--surface-deep);
  color: oklch(92% 0.020 100);
  padding: var(--sp-6) 0;
  position: relative;
}
.stats-strip::before, .stats-strip::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, oklch(60% 0.06 145), transparent);
}
.stats-strip::before { top: 0; }
.stats-strip::after { bottom: 0; }
.stats-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; text-align: center; }
.stat-item { padding: 0.5rem 0; }
.stat-number {
  display: block;
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(2rem, 1.4rem + 2.5vw, 2.8rem);
  color: var(--accent-2); line-height: 1;
  margin-bottom: 0.55rem;
}
.stat-label {
  font-family: var(--font-ui); font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: oklch(80% 0.020 100);
}

/* Services / Prestations */
.services { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); }
.services-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
.services-extra {
  margin-top: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  align-items: center;
}
.services-extra-label {
  font-family: var(--font-ui); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-right: 0.4rem;
}

/* A propos */
.about-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; align-items: start; }
.about-content p { font-size: 1.04rem; line-height: 1.75; max-width: 60ch; }
.about-content p:first-of-type::first-letter {
  font-family: var(--font-display); font-weight: 500;
  font-size: 3.6rem; line-height: 0.95;
  float: left; margin: 0.1rem 0.65rem -0.15rem 0;
  color: var(--accent);
  padding-top: 0.3rem;
}
.about-photo { display: flex; justify-content: center; align-items: flex-start; }
.about-photo .photo-frame { width: 100%; max-width: 420px; }
.about-photo .photo-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Gallery teaser (5 photos mosaic) */
.gallery-teaser {
  background: var(--bg-alt);
}
.gallery-mosaic {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "a a"
    "b c"
    "d e";
}
.gallery-mosaic > a:nth-child(1) { grid-area: a; aspect-ratio: 16/9; }
.gallery-mosaic > a:nth-child(2) { grid-area: b; aspect-ratio: 1/1; }
.gallery-mosaic > a:nth-child(3) { grid-area: c; aspect-ratio: 1/1; }
.gallery-mosaic > a:nth-child(4) { grid-area: d; aspect-ratio: 1/1; }
.gallery-mosaic > a:nth-child(5) { grid-area: e; aspect-ratio: 1/1; }
.gallery-item {
  display: block; position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--surface-deep);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow), filter var(--t-mid);
  filter: saturate(1.05) contrast(1.02);
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.1) contrast(1.04); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, oklch(20% 0.020 145 / 0.35));
  opacity: 0; transition: opacity var(--t-mid);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-cta { margin-top: var(--sp-5); display: flex; justify-content: center; }

/* Avis pudique */
.avis { background: var(--bg); }
.avis-card {
  max-width: 720px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-5);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.avis-rating-line {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-bottom: var(--sp-4);
  flex-wrap: wrap; justify-content: center;
}
.avis-rating-line .stars svg { width: 22px; height: 22px; }
.avis-rating-line strong {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--accent-dark);
  white-space: nowrap;
}
.avis-rating-line .muted { white-space: nowrap; }
.avis-quotes { display: flex; flex-direction: column; gap: var(--sp-4); margin-top: var(--sp-5); }
.avis-quote {
  position: relative; padding: 0.5rem 0;
  font-family: var(--font-body); font-style: italic; font-size: 1.05rem;
  color: var(--text); line-height: 1.6;
  border-left: 2px solid var(--accent-soft);
  padding-left: 1.05rem; text-align: left;
}
.avis-quote::before {
  content: "“";
  font-family: var(--font-display); font-size: 2.4rem; line-height: 0.8;
  color: var(--accent);
  position: absolute; left: -8px; top: -2px;
  background: var(--surface); padding: 0 4px;
}
.avis-quote footer {
  display: block; margin-top: 0.4rem;
  font-family: var(--font-ui); font-style: normal; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-muted);
}
.avis-link { margin-top: var(--sp-5); display: inline-flex; }

/* FAQ */
.faq { background: var(--bg-alt); }
.faq-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; max-width: 820px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.faq-trigger {
  width: 100%; text-align: left;
  padding: 1.1rem 1.05rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display); font-size: 1.08rem;
  color: var(--text);
  transition: background var(--t-fast), color var(--t-fast);
  min-height: 56px;
}
.faq-trigger:hover { color: var(--accent); background: oklch(98% 0.013 95); }
.faq-trigger[aria-expanded="true"] { color: var(--accent-dark); background: oklch(94% 0.040 145); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--t-mid); }
.faq-chevron::before {
  content: ""; display: block; width: 8px; height: 8px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin: 2px 0 0 4px;
  transition: transform var(--t-mid);
}
.faq-trigger[aria-expanded="true"] .faq-chevron::before { transform: rotate(-135deg); margin-top: 6px; }
.faq-answer { padding: 0 1.05rem 1.1rem; color: var(--text-2); font-size: 0.96rem; line-height: 1.65; }
.faq-answer[hidden] { display: none; }
.faq-answer p { margin: 0 0 0.5rem; }

/* Zone d'intervention */
.zone { background: var(--bg); }
.zone-cols { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
.zone-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 var(--sp-5); padding: 0; list-style: none; }
.dispo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-sm);
  padding: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.dispo-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.dispo-card p { margin: 0; color: var(--text-2); font-size: 0.94rem; }
.dispo-dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa);
  margin-right: 0.45rem;
  box-shadow: 0 0 0 3px oklch(64% 0.155 152 / 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px oklch(64% 0.155 152 / 0.22); }
  50% { box-shadow: 0 0 0 6px oklch(64% 0.155 152 / 0.06); }
}
.map-wrapper {
  position: relative;
  padding-top: 60%;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-alt);
}
.map-wrapper iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Contact */
.contact { background: var(--bg-alt); padding-bottom: calc(var(--sp-8) + 60px); }
.contact-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
.contact-card {
  background: var(--surface-deep); color: oklch(92% 0.020 100);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-5);
  box-shadow: var(--shadow-md);
}
.contact-card h3 { color: oklch(96% 0.018 100); font-size: var(--fs-xl); margin-bottom: 0.4rem; }
.contact-card p.intro { color: oklch(85% 0.020 100); margin-bottom: var(--sp-4); }
.tel-big {
  display: inline-block;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(2rem, 1.5rem + 2vw, 2.6rem);
  color: var(--accent-2);
  text-decoration: none; line-height: 1;
  margin-bottom: var(--sp-3);
}
.tel-big:hover { color: oklch(80% 0.07 145); }
.contact-actions { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: var(--sp-5); }
.contact-meta {
  border-top: 1px solid oklch(45% 0.030 145);
  padding-top: var(--sp-4);
  font-family: var(--font-ui); font-size: 0.86rem;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.contact-meta-row { display: flex; align-items: flex-start; gap: 0.6rem; color: oklch(82% 0.020 100); }
.contact-meta-row svg { width: 16px; height: 16px; color: var(--accent-2); flex-shrink: 0; margin-top: 0.15rem; }
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h3 { font-size: var(--fs-lg); margin-bottom: 0.3rem; }
.contact-form-wrap > p { color: var(--text-2); font-size: 0.92rem; margin-bottom: var(--sp-4); }

/* Page realisations */
.page-realisations { padding: var(--sp-7) 0 var(--sp-8); }
.back-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-ui); font-size: 0.88rem;
  color: var(--text-2); text-decoration: none;
  margin-bottom: var(--sp-4);
}
.back-link:hover { color: var(--accent); }
.back-link svg { width: 14px; height: 14px; }
.masonry {
  display: grid; gap: 0.7rem;
  grid-template-columns: repeat(2, 1fr);
}
.masonry .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.masonry .gallery-item:not(:nth-child(1)) { aspect-ratio: 4/3; }
.note-photos {
  margin-top: var(--sp-6);
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: var(--sp-4);
  border-radius: var(--r-sm);
}
.note-photos p { margin: 0; color: var(--text-2); font-size: 0.94rem; }
.note-photos strong { color: var(--text); }
