:root {
  --mediteo-orange: #f1592a;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #F7F5F2;
  color: #1E1E1E;
}

/* Offset ancres sous le header fixe */
[id] {
  scroll-margin-top: 120px;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

.container {
  width: 94%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* HEADER — décalage sous le bord écran / encoche */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  /* iOS ancien */
  padding-top: calc(22px + constant(safe-area-inset-top, 0px));
  padding-top: calc(22px + env(safe-area-inset-top, 0px));
  box-sizing: border-box;
  transition: padding-top 0.2s ease;
}

/* En haut de page (scroll ≈ 0) : marge plus forte — corrige le menu qui colle quand la barre d’adresse mobile est visible */
.header.header--at-top {
  padding-top: calc(44px + constant(safe-area-inset-top, 0px));
  padding-top: calc(44px + env(safe-area-inset-top, 0px));
}

.header-bar {
  background: #1e2d1c;
  border-radius: 28px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.header .logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.header .logo img {
  max-height: 52px;
  width: auto;
  height: auto;
  display: block;
}

.main-nav {
  position: relative;
}

.nav-toggle {
  display: none !important;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.nav-toggle::before {
  content: "\2630";
}

.nav-toggle.is-open::before {
  content: "\00d7";
}

.nav-toggle__bar {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a,
.nav-dropdown__trigger {
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}

.nav-list > li > a:hover,
.nav-dropdown__trigger:hover,
.nav-item--dropdown:hover .nav-dropdown__trigger {
  color: #fff;
}

/* Contact : encadré orange (variable --mediteo-orange) */
.nav-list__item--cta > a {
  padding: 0.5rem 1.2rem 0.55rem;
  border: 2px solid var(--mediteo-orange);
  border-radius: 12px;
  box-sizing: border-box;
}

.nav-list__item--cta > a:hover {
  background: rgba(241, 89, 42, 0.22);
  color: #fff;
}

.nav-list__item--cta > a:focus-visible {
  outline: 2px solid var(--mediteo-orange);
  outline-offset: 3px;
}

.nav-dropdown__caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.nav-item--dropdown:hover .nav-dropdown__caret,
.nav-item--dropdown.is-open .nav-dropdown__caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 280px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #162218;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1100;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  font-family: 'Montserrat', sans-serif;
  display: block;
  padding: 12px 20px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
}

.nav-dropdown li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 1024px) {
  .nav {
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex !important;
    order: 3;
    margin-left: auto;
  }

  .main-nav {
    width: 100%;
    order: 4;
  }

  .main-nav .nav-list {
    display: none !important;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .main-nav.is-open .nav-list {
    display: flex !important;
  }

  .main-nav .nav-list > li > a,
  .main-nav .nav-dropdown__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
  }

  .main-nav .nav-dropdown {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin: 4px 0 0;
    box-sizing: border-box;
    border-radius: 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none !important;
  }

  .main-nav .nav-item--dropdown.is-open .nav-dropdown {
    display: block !important;
    transform: none !important;
  }

  .nav-toggle.is-open {
    font-size: 34px;
  }
}

/* HERO */
.hero {
  height: 100vh;
  background: url('../img/hero.jpg') center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  top: 40%;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #6B7D5C;
  color: white;
  text-decoration: none;
}

/* REALISATIONS — même filigrane SVG que la section Services */
.realisations {
  position: relative;
  overflow: visible;
  padding: 72px 0 80px;
  box-sizing: border-box;
}

.realisations__inner {
  position: relative;
  z-index: 2;
}

/* GRID REALISATIONS */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  overflow: hidden;
}

.realisations .grid a.card--project {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card img {
  width: 100%;
  transition: 0.4s;
}

.card:hover img {
  transform: scale(1.1);
}

.overlay-card {
  position: absolute;
  bottom: 0;
  color: white;
  padding: 10px;
}

.card--text {
  display: flex;
  align-items: stretch;
  min-height: 220px;
  background: linear-gradient(155deg, #1a2618 0%, #243524 42%, #1e2d1c 100%);
  border: 1px solid rgba(107, 125, 92, 0.35);
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.card--text:hover {
  border-color: rgba(107, 125, 92, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.card-text__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 22px;
  width: 100%;
}

.card-text__kicker {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8fa382;
}

.card-text__title {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  color: #f7f5f2;
}

.card-text__desc {
  margin: 0 0 18px;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(247, 245, 242, 0.78);
}

.card-text__link {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8c9a8;
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 125, 92, 0.6);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.card-text__link:hover {
  color: #e8eee0;
  border-bottom-color: rgba(184, 201, 168, 0.9);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about img {
  width: 100%;
}

/* Sections paysagiste (prestations, avis) */
.paysagiste-section {
  position: relative;
  overflow: visible;
  padding: 72px 24px 80px;
  box-sizing: border-box;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #244030;
}

/* Section Services : padding, flex, forme décorative */
.paysagiste-section--services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 50px 50px;
}

.paysagiste-section.paysagiste-section--reviews {
  padding-bottom: 100px;
}

.paysagiste-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Filigrane SVG décoratif */
.paysagiste-shape {
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  z-index: 0;
  width: 40vw;
  height: auto;
  opacity: 0.15;
  pointer-events: none;
  border-radius: 0;
  object-fit: contain;
}

/* Services : variante 01 — largeur 35vw */
.paysagiste-shape--01 {
  width: 35vw;
}

/* Avis : filigrane à droite, miroir horizontal (symétrie par rapport aux autres sections) */
.paysagiste-shape--04 {
  left: auto;
  right: 0;
  top: 0;
  bottom: auto;
  transform: scaleX(-1);
  transform-origin: center center;
}

/* Page prestations : 2e forme décorative (coin haut droit, comme template services) */
.paysagiste-shape--07 {
  left: auto;
  right: 0;
  top: 0;
  bottom: auto;
  width: 30vw;
}

@media (max-width: 767px) {
  .paysagiste-section--services {
    padding: 50px 24px 50px;
  }

  .paysagiste-shape--04 {
    width: 70vw;
  }
}

.paysagiste-text-subtitle {
  margin: 0 0 20px;
  max-width: 730px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1e1e1e;
}

.paysagiste-text-subtitle--green {
  color: #729b58;
}

.paysagiste-text-subtitle--center {
  max-width: none;
  text-align: center;
}

.paysagiste-h2 {
  margin: 0 0 25px;
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  font-weight: 700;
  color: #244030;
}

.paysagiste-h2--center {
  text-align: center;
}

.paysagiste-text-accent {
  color: var(--mediteo-orange);
}

.paysagiste-paragraph {
  max-width: 470px;
  margin: 0 0 36px;
  font-weight: 400;
  color: rgba(36, 64, 48, 0.8);
}

.paysagiste-heading-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.paysagiste-heading-block__text {
  display: block;
}

.paysagiste-centered-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  text-align: center;
}

.paysagiste-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 50px 0 0;
  list-style: none;
  align-items: stretch;
}

.paysagiste-services-grid li {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.paysagiste-service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  padding: 28px 22px 26px;
  border: 1px solid #729b58;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 4px 4px 10px 3px rgba(36, 64, 48, 0.08);
  color: #244030;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
}

.paysagiste-service-card:hover {
  box-shadow: 6px 6px 16px rgba(36, 64, 48, 0.12);
  transform: translateY(-2px);
}

.paysagiste-service-card:focus-visible {
  outline: 2px solid #729b58;
  outline-offset: 3px;
}

.paysagiste-service-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 0;
  object-fit: contain;
}

.paysagiste-service-card__title {
  flex-shrink: 0;
  margin: 0 0 14px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 700;
  color: #244030;
}

.paysagiste-service-card__text {
  flex: 1 1 auto;
  margin: 0;
  min-height: 0;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(36, 64, 48, 0.8);
}

.paysagiste-read-more {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 22px;
  font-weight: 600;
  color: #729b58;
}

.paysagiste-read-more__label {
  padding-right: 5px;
}

.paysagiste-read-more__arrow {
  width: 15px;
  height: 15px;
  border-radius: 0;
}

.paysagiste-button-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.paysagiste-btn-secondary {
  display: flex;
  width: 200px;
  padding: 15px 30px;
  justify-content: center;
  align-items: center;
  border: 3px solid #3b6149;
  border-radius: 10px;
  background-color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease;
  color: #3b6149;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: Raleway, sans-serif;
  font-size: 14px;
}

.paysagiste-btn-secondary:hover {
  background-color: #3b6149;
  color: #fff;
}

.paysagiste-btn-secondary:focus-visible {
  outline: 2px solid #244030;
  outline-offset: 3px;
}

/* Témoignages (carrousel) */
.paysagiste-testimonial {
  margin-bottom: 40px;
}

.paysagiste-testimonial__viewport {
  position: relative;
}

.paysagiste-testimonial-slider__slide {
  display: none;
}

.paysagiste-testimonial-slider__slide.is-active {
  display: block;
}

.paysagiste-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 0;
  padding: 30px;
  border: 1px solid #729b58;
  border-radius: 20px;
  background-color: #fff;
  box-sizing: border-box;
}

.paysagiste-slider-content {
  display: flex;
  padding: 8%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.paysagiste-testimonial-quote {
  margin: 0 0 28px;
  padding: 0;
  border: none;
  font-family: Raleway, sans-serif;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.4;
  font-weight: 600;
  color: rgba(36, 64, 48, 0.8);
}

.paysagiste-slide-detail {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.paysagiste-author-name {
  color: #244030;
  font-weight: 700;
  font-size: 1rem;
}

.paysagiste-author-role {
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(36, 64, 48, 0.75);
  margin-top: 4px;
}

.paysagiste-slide-number {
  color: #244030;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 4px;
  font-family: 'Titillium Web', sans-serif;
}

.paysagiste-slide-number__accent {
  color: var(--mediteo-orange);
}

.paysagiste-testimonial-image {
  display: flex;
  height: 300px;
  justify-content: flex-end;
  align-items: stretch;
}

.paysagiste-image-cover {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: 50% 0%;
}

.paysagiste-testimonial__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.paysagiste-arrow {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(36, 64, 48, 0.3);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.paysagiste-arrow:hover {
  background-color: var(--mediteo-orange);
  transform: scale(0.95);
}

.paysagiste-arrow:focus-visible {
  outline: 2px solid #729b58;
  outline-offset: 2px;
}

.paysagiste-arrow--next img {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .paysagiste-heading-block {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .paysagiste-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .paysagiste-section {
    padding: 52px 16px 64px;
  }

  .paysagiste-services-grid {
    grid-template-columns: 1fr;
    padding-right: 1px;
    padding-left: 1px;
  }

  .paysagiste-service-card {
    padding: 24px 18px 22px;
    box-shadow: none;
  }

  .paysagiste-testimonial-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding: 15px;
  }

  .paysagiste-slider-content {
    padding: 8% 0 8%;
  }

  .paysagiste-testimonial-image {
    height: 250px;
    order: -1;
  }

  .paysagiste-testimonial-quote {
    font-size: 18px;
  }

  .paysagiste-slide-detail {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 0;
  background: #1E1E1E;
  color: white;
}

/* FOOTER */
.footer {
  background: #1e2d1c;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 36px 20px 28px;
  position: relative;
  z-index: 50;
}

.footer-nav {
  margin-bottom: 8px;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav__list > li {
  position: relative;
}

.footer-nav__list > li > a,
.footer-nav__trigger {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
}

.footer-nav__list > li > a:hover,
.footer-nav__trigger:hover,
.footer-nav__dropdown:hover .footer-nav__trigger {
  color: #fff;
}

.footer-nav__dropdown .nav-dropdown__caret {
  border-top-color: currentColor;
  opacity: 0.85;
}

/* Sous-menu : ouverture vers le haut */
.footer-nav__submenu.nav-dropdown {
  top: auto;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: #162218;
}

.footer-nav__dropdown:hover .footer-nav__submenu,
.footer-nav__dropdown:focus-within .footer-nav__submenu,
.footer-nav__dropdown.is-open .footer-nav__submenu {
  transform: translateX(-50%) translateY(0);
}

.footer-nav__submenu .nav-dropdown a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .footer-nav__list {
    flex-direction: column;
    gap: 8px;
  }

  .footer-nav__submenu.nav-dropdown {
    left: auto;
    right: 50%;
    transform: translateX(50%) translateY(6px);
  }

  .footer-nav__dropdown:hover .footer-nav__submenu,
  .footer-nav__dropdown:focus-within .footer-nav__submenu,
  .footer-nav__dropdown.is-open .footer-nav__submenu {
    transform: translateX(50%) translateY(0);
  }
}

.footer__copy-block {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.footer__copy-line {
  margin: 0;
}

.footer__copy-line--extra {
  margin-top: 0.15rem;
}

.footer__copy-link,
.footer__copy-link:link,
.footer__copy-link:visited {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer__copy-link:hover {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero {
  height: 100vh;
  background: url('../img/hero.jpg') center/cover no-repeat;
  position: relative;
}
.hero-content {
  position: relative;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

/* PAGE PRESTATIONS (structure type page Services, cartes image + texte) */
.paysagiste-section--page-hero {
  padding: 100px 50px 50px;
}

/* Hero aligné menu : même bande passante que le header (.container 94% / 1400px), sans padding latéral qui décale */
.prestations-page .paysagiste-section--page-hero,
.realisations-page .paysagiste-section--page-hero,
.service-detail-page--hero-menu-width .paysagiste-section--page-hero {
  padding-left: 0;
  padding-right: 0;
}

.prestations-page .paysagiste-section--page-hero .container.paysagiste-content,
.realisations-page .paysagiste-section--page-hero .container.paysagiste-content,
.service-detail-page--hero-menu-width .paysagiste-section--page-hero .container.paysagiste-content {
  width: 94%;
  max-width: 1400px;
}

/* Fil d'Ariane du hero : gauche, même bande que le titre (pages service-detail-page--hero-menu-width) */
.service-detail-page--hero-menu-width .paysagiste-section--page-hero .paysagiste-content > .service-detail-breadcrumb {
  margin-left: 0;
  margin-right: auto;
  max-width: none;
  text-align: left;
}

.service-detail-page--hero-menu-width .paysagiste-section--page-hero .service-detail-breadcrumb__list {
  justify-content: flex-start;
}

.prestations-page__block-hero {
  display: flex;
  width: 100%;
  padding-top: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.prestations-page__block-hero--menu-width {
  align-items: flex-start;
  text-align: left;
}

.prestations-page__block-hero--menu-width .prestations-page__title,
.prestations-page__block-hero--menu-width .paysagiste-paragraph--intro {
  max-width: 100%;
  text-align: left;
}

.prestations-page__title {
  margin: 0 0 24px;
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.05;
  font-weight: 700;
  color: #244030;
  max-width: 800px;
}

.paysagiste-paragraph--intro {
  max-width: 640px;
  margin: 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(36, 64, 48, 0.85);
}

.prestations-page__list {
  padding: 0 0 100px;
}

.prestations-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.prestations-page__service {
  border: 1px solid #729b58;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.prestations-page__media {
  overflow: hidden;
}

.prestations-page__media img {
  display: block;
  width: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px 20px 0 0;
}

.prestations-page__box {
  padding: 5% 10%;
}

.prestations-page__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.prestations-page__head h2 {
  margin: 0;
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #244030;
}

.prestations-page__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.prestations-page__text {
  margin: 0 0 24px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(36, 64, 48, 0.85);
}

.prestations-page__list .paysagiste-btn-secondary {
  width: auto;
  min-width: 160px;
}

@media (max-width: 991px) {
  .prestations-page__grid {
    grid-template-columns: 1fr;
  }

  .prestations-page__media img {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .paysagiste-section--page-hero {
    padding: 50px 24px 40px;
  }

  .prestations-page .paysagiste-section--page-hero,
  .realisations-page .paysagiste-section--page-hero,
  .service-detail-page--hero-menu-width .paysagiste-section--page-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .paysagiste-shape--07 {
    width: min(50vw, 280px);
  }
}

/* PAGE DETAIL PRESTATION (ex. Creation de jardins) */
.service-detail-breadcrumb {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
}

.service-detail-breadcrumb__list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Raleway, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(36, 64, 48, 0.65);
}

.service-detail-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-detail-breadcrumb__label {
  color: rgba(36, 64, 48, 0.78);
  font-weight: 600;
}

.service-detail-breadcrumb__list li:not(:last-child)::after {
  content: "/";
  color: rgba(36, 64, 48, 0.35);
  font-weight: 400;
}

.service-detail-breadcrumb__list a {
  color: #729b58;
  text-decoration: none;
  font-weight: 600;
}

.service-detail-breadcrumb__list a:hover {
  text-decoration: underline;
}

/* Bandeau clair type contact / prestations : fil toujours vert foncé (pas de variante --hero ici) */
.paysagiste-section--page-hero .paysagiste-content > .service-detail-breadcrumb:not(.service-detail-breadcrumb--hero) .service-detail-breadcrumb__list {
  color: rgba(36, 64, 48, 0.78);
}

.paysagiste-section--page-hero .paysagiste-content > .service-detail-breadcrumb:not(.service-detail-breadcrumb--hero) .service-detail-breadcrumb__list a {
  color: #4a7a38;
}

.paysagiste-section--page-hero .paysagiste-content > .service-detail-breadcrumb:not(.service-detail-breadcrumb--hero) .service-detail-breadcrumb__list a:hover {
  color: #335c28;
}

.paysagiste-section--page-hero .paysagiste-content > .service-detail-breadcrumb:not(.service-detail-breadcrumb--hero) .service-detail-breadcrumb__list li[aria-current='page'] {
  color: #244030;
  font-weight: 600;
}

.paysagiste-section--page-hero .paysagiste-content > .service-detail-breadcrumb:not(.service-detail-breadcrumb--hero) .service-detail-breadcrumb__list li:not(:last-child)::after {
  color: rgba(36, 64, 48, 0.42);
}

.service-detail-split-wrap {
  padding-top: 48px;
  padding-bottom: 48px;
}

.service-detail-split-wrap--alt {
  background: rgba(255, 255, 255, 0.65);
}

.service-detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-detail-split--reverse .service-detail-split__media {
  order: 2;
}

.service-detail-split--reverse .service-detail-split__body {
  order: 1;
}

.service-detail-split__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #729b58;
  box-shadow: 0 12px 40px rgba(36, 64, 48, 0.12);
}

.service-detail-split__media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
}

.service-detail-split__media img.service-detail-photo--horizontal {
  min-height: 0;
  height: 600px;
  object-fit: cover;
}

.service-detail-split__media img.service-detail-photo--vertical {
  min-height: 0;
  height: 900px;
  object-fit: cover;
}

/* Taille intrinsèque (pas de recadrage ni hauteur forcée) ; max-width pour l’adaptation mobile */
.service-detail-split__media img.service-detail-photo--natural {
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 0;
  object-fit: unset;
  margin-left: auto;
  margin-right: auto;
}

/* Cadre qui épouse la taille réelle de l’image (pas toute la largeur de la colonne) */
.service-detail-split__media--natural {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.service-detail-split > .service-detail-split__media--natural {
  justify-self: center;
}

.service-detail-h2 {
  margin: 0 0 16px;
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #244030;
}

.service-detail-lead {
  margin: 0 0 16px;
  font-family: Raleway, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(36, 64, 48, 0.92);
}

.service-detail-text {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(36, 64, 48, 0.85);
}

.service-detail-list {
  margin: 0;
  padding-left: 1.15rem;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(36, 64, 48, 0.88);
}

.service-detail-list li {
  margin-bottom: 10px;
}

.service-detail-list li:last-child {
  margin-bottom: 0;
}

.service-detail-steps-section {
  padding-bottom: 96px;
}

.service-detail-steps-head {
  text-align: center;
  margin-bottom: 48px;
}

.service-detail-steps-head .paysagiste-paragraph--intro {
  margin-top: 12px;
}

.service-detail-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.service-detail-step {
  position: relative;
  margin: 0;
  padding: 28px 22px 26px;
  border: 1px solid #729b58;
  border-radius: 20px;
  background: #fff;
  box-sizing: border-box;
}

.service-detail-step__num {
  display: block;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #729b58;
  margin-bottom: 12px;
}

.service-detail-step__title {
  margin: 0 0 12px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #244030;
  line-height: 1.25;
}

.service-detail-step__text {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(36, 64, 48, 0.85);
}

.service-detail-gallery-section {
  padding: 0 24px 100px;
}

.service-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-detail-gallery__item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(114, 155, 88, 0.45);
}

.service-detail-gallery__item img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-detail-gallery__item img.service-detail-photo--horizontal {
  height: 600px;
}

.service-detail-gallery__item img.service-detail-photo--vertical {
  height: 900px;
}

.service-detail-gallery__item img.service-detail-photo--natural {
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 0;
  object-fit: unset;
  margin-left: auto;
  margin-right: auto;
}

.service-detail-gallery__item:has(img.service-detail-photo--natural) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-self: center;
  box-sizing: border-box;
}

.service-detail-related-projects {
  padding: 32px 24px 100px;
  box-sizing: border-box;
}

.service-detail-related-projects__head {
  margin-bottom: 40px;
}

.service-detail-related-projects__head .paysagiste-paragraph--intro {
  margin-top: 12px;
}

.service-detail-project-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-detail-project-card {
  margin: 0;
  min-width: 0;
}

.service-detail-project-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(114, 155, 88, 0.45);
  background: #fff;
  box-shadow: 0 8px 28px rgba(36, 64, 48, 0.08);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-detail-project-card__link:hover {
  box-shadow: 0 12px 36px rgba(36, 64, 48, 0.14);
  border-color: rgba(114, 155, 88, 0.75);
}

.service-detail-project-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(114, 155, 88, 0.12);
}

.service-detail-project-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-project-card__title {
  margin: 0;
  padding: 0.85rem 1rem 0.35rem;
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #244030;
  line-height: 1.25;
}

.service-detail-project-card__lead {
  margin: 0;
  padding: 0 1rem 0.75rem;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(36, 64, 48, 0.85);
  flex: 1;
}

.service-detail-project-card__more {
  margin-top: auto;
  padding: 0 1rem 1rem;
  font-family: Raleway, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #729b58;
}

.service-detail-related-projects__empty {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  font-family: Raleway, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(36, 64, 48, 0.88);
}

.service-detail-related-projects__empty a {
  color: #729b58;
  font-weight: 600;
}

.service-detail-faq-wrap {
  max-width: 720px;
  margin: 32px auto 0;
}

.service-detail-faq-item {
  margin-bottom: 24px;
}

.service-detail-faq-item:last-child {
  margin-bottom: 0;
}

.service-detail-faq-item .service-detail-lead {
  margin-bottom: 8px;
}

.service-detail-entretien-note {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 991px) {
  .service-detail-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-detail-split--reverse .service-detail-split__media,
  .service-detail-split--reverse .service-detail-split__body {
    order: unset;
  }

  .service-detail-steps {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-project-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .service-detail-steps {
    grid-template-columns: 1fr;
  }

  .service-detail-gallery {
    grid-template-columns: 1fr;
  }

  .service-detail-gallery__item img:not(.service-detail-photo--horizontal):not(.service-detail-photo--vertical) {
    height: 200px;
  }

  .service-detail-project-cards {
    grid-template-columns: 1fr;
  }
}

/* PAGE REALISATIONS — liste type Gardener / Projects (bandes image + texte alternées) */
.realisations-page__feed {
  padding: 0 0 24px;
}

.realisations-page__band {
  padding: 48px 24px;
  box-sizing: border-box;
}

.realisations-page__band--alt {
  background: rgba(255, 255, 255, 0.6);
}

.realisations-page__project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  align-items: center;
  margin: 0;
}

.realisations-page__project-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #729b58;
  box-shadow: 0 14px 44px rgba(36, 64, 48, 0.1);
}

.realisations-page__project-media img {
  display: block;
  width: 100%;
  min-height: 300px;
  max-height: 480px;
  object-fit: cover;
}

.realisations-page__project-body {
  padding: 8px 0;
}

.realisations-page__project-title {
  margin: 0 0 16px;
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #244030;
}

/* Typo + vert sur le <a> en dur + !important : bat le style « lien » du navigateur et extensions agressives */
main.realisations-page .realisations-page__project-title > a.realisations-page__project-title-link {
  font-family: 'Titillium Web', sans-serif !important;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: #244030 !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-underline-position: unset;
  border: 0;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

main.realisations-page .realisations-page__project-title > a.realisations-page__project-title-link:link,
main.realisations-page .realisations-page__project-title > a.realisations-page__project-title-link:visited,
main.realisations-page .realisations-page__project-title > a.realisations-page__project-title-link:hover,
main.realisations-page .realisations-page__project-title > a.realisations-page__project-title-link:active {
  color: #244030 !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
}

main.realisations-page .realisations-page__project-title > a.realisations-page__project-title-link:focus:not(:focus-visible) {
  outline: none;
}

main.realisations-page .realisations-page__project-title > a.realisations-page__project-title-link:focus-visible {
  outline: 2px solid #729b58;
  outline-offset: 4px;
  border-radius: 2px;
}

.realisations-page__project-text {
  margin: 0 0 18px;
  font-family: Raleway, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(36, 64, 48, 0.88);
}

.realisations-page__project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.realisations-page__project-tags li {
  font-family: Raleway, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(36, 64, 48, 0.55);
  padding: 5px 12px;
  border: 1px solid rgba(114, 155, 88, 0.4);
  border-radius: 999px;
}

.realisations-page__project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.realisations-page__project-link:hover {
  opacity: 0.85;
}

.realisations-page__project-link:focus-visible {
  outline: 2px solid #729b58;
  outline-offset: 4px;
  border-radius: 4px;
}

.realisations-page__project-link-label {
  font-family: Raleway, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #729b58;
}

@media (min-width: 992px) {
  .realisations-page__project--reverse .realisations-page__project-media {
    order: 2;
  }

  .realisations-page__project--reverse .realisations-page__project-body {
    order: 1;
  }
}

@media (max-width: 991px) {
  .realisations-page__project {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .realisations-page__project--reverse .realisations-page__project-media,
  .realisations-page__project--reverse .realisations-page__project-body {
    order: unset;
  }

  .realisations-page__band {
    padding: 36px 24px;
  }

  .realisations-page__project-media img {
    min-height: 240px;
    max-height: 360px;
  }
}

.realisations-page__closing {
  padding: 48px 24px 64px;
}

.realisations-page__closing-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-family: Raleway, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(36, 64, 48, 0.85);
}

.realisations-page__closing-text a {
  color: #244030;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.realisations-page__closing-text a:hover {
  opacity: 0.88;
}

/* PAGE PROJET (type Gardener single project) */
.container--narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.project-detail__hero {
  position: relative;
  overflow: hidden;
}

.project-detail__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.project-detail__hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-detail__hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(12, 20, 14, 0.5) 0%,
    rgba(12, 20, 14, 0.2) 42%,
    rgba(12, 20, 14, 0.85) 100%
  );
}

.project-detail__hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: min(78vh, 880px);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 110px 24px 56px;
  box-sizing: border-box;
}

.project-detail__hero-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 8px;
}

.project-detail__hero-kicker {
  margin: 0 0 12px;
  font-family: Raleway, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8e0b0;
}

.project-detail__hero-title {
  margin: 0 0 16px;
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
}

.project-detail__hero-lead {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: clamp(0.95rem, 1.9vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.93);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/*
 * Variante hero (photo sombre) : texte clair.
 * Utilisée sur projet.php (fil dans le hero) — jamais sur contact, mentions ou article. Ville : fil sous la photo.
 */
.service-detail-breadcrumb--hero {
  width: 100%;
  text-align: center;
  margin: 0;
}

.service-detail-breadcrumb--hero .service-detail-breadcrumb__list {
  color: rgba(255, 255, 255, 0.82);
}

.service-detail-breadcrumb--hero .service-detail-breadcrumb__list a {
  color: #d4e8bc;
  font-weight: 600;
}

.service-detail-breadcrumb--hero .service-detail-breadcrumb__list a:hover {
  color: #f2f8eb;
}

.service-detail-breadcrumb--hero .service-detail-breadcrumb__list li[aria-current='page'] {
  color: #fff;
}

.service-detail-breadcrumb--hero .service-detail-breadcrumb__list li:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 767px) {
  .project-detail__hero-inner {
    min-height: min(72vh, 720px);
    padding: 96px 20px 40px;
  }
}

/* Ville : mêmes blocs que page projet (project-detail__hero-*) ; fil d'Ariane sous la photo → bloc texte en bas */
.ville-page .project-detail__hero-inner {
  justify-content: flex-end;
}

/* Projets liés (meta_client) sous le CTA ville */
.ville-page__city-projects {
  background: #f7f5f2;
  border-top: 1px solid rgba(36, 64, 48, 0.1);
}

.project-detail__slideshow {
  padding: 40px 24px 56px;
  background: rgba(255, 255, 255, 0.45);
}

.project-detail__slideshow-head {
  margin-bottom: 28px;
}

.project-detail__slideshow-head .paysagiste-text-subtitle {
  text-align: center;
}

.project-detail__slider {
  outline: none;
}

.project-detail__slider:focus-visible {
  outline: 2px solid #729b58;
  outline-offset: 6px;
  border-radius: 4px;
}

.project-detail__slider-viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #729b58;
  box-shadow: 0 18px 48px rgba(36, 64, 48, 0.12);
  background: #1a2618;
}

.project-detail__slider-track {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.project-detail__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.project-detail__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.project-detail__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-detail__slider-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.project-detail__slider-btn {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(114, 155, 88, 0.55);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.project-detail__slider-btn:hover {
  background: #729b58;
  border-color: #729b58;
  transform: scale(0.96);
}

.project-detail__slider-btn:hover img {
  filter: brightness(0) invert(1);
}

.project-detail__slider-btn:focus-visible {
  outline: 2px solid #729b58;
  outline-offset: 2px;
}

.project-detail__slider-btn--next img {
  transform: rotate(180deg);
}

.project-detail__slider-btn--next:hover img {
  transform: rotate(180deg);
}

.project-detail__slider-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.project-detail__slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(36, 64, 48, 0.22);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.project-detail__slider-dot:hover {
  background: rgba(114, 155, 88, 0.55);
}

.project-detail__slider-dot.is-active {
  background: #729b58;
  transform: scale(1.25);
}

.project-detail__slider-dot:focus-visible {
  outline: 2px solid #729b58;
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .project-detail__slider-viewport {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .project-detail__slider-controls {
    gap: 14px;
  }
}

.project-detail__meta-bar {
  padding: 28px 24px 40px;
  border-bottom: 1px solid rgba(114, 155, 88, 0.25);
}

.project-detail__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.project-detail__meta-item {
  margin: 0;
  text-align: center;
}

.project-detail__meta-label {
  margin: 0 0 8px;
  font-family: Raleway, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #729b58;
}

.project-detail__meta-value {
  margin: 0;
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #244030;
}

.project-detail__body {
  padding: 48px 24px 56px;
  font-family: Raleway, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(36, 64, 48, 0.9);
}

.project-detail__body--alt {
  background: rgba(255, 255, 255, 0.55);
}

.project-detail__h2 {
  margin: 0 0 20px;
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #244030;
}

.project-detail__h2--center {
  text-align: center;
}

.project-detail__h3 {
  margin: 0 0 16px;
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: #244030;
}

.project-detail__prose {
  margin: 0 0 18px;
}

.project-detail__prose:last-child {
  margin-bottom: 0;
}

.project-detail__prose p {
  margin: 0 0 16px;
}

.project-detail__prose p:last-child {
  margin-bottom: 0;
}

.project-detail__quote {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 4px solid #729b58;
  background: rgba(114, 155, 88, 0.08);
  border-radius: 0 12px 12px 0;
}

.project-detail__quote p {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #244030;
  font-style: italic;
}

.project-detail__list {
  margin: 20px 0 18px;
  padding-left: 1.2rem;
  color: rgba(36, 64, 48, 0.88);
}

.project-detail__list--bullets li {
  margin-bottom: 10px;
}

.project-detail__list--numbered {
  list-style-position: outside;
  padding-left: 1.35rem;
}

.project-detail__list--numbered li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.project-detail__other {
  padding: 56px 24px 40px;
}

.project-detail__other-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.project-detail__view-all {
  font-family: Raleway, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #729b58;
  text-decoration: none;
  border-bottom: 1px solid rgba(114, 155, 88, 0.45);
  padding-bottom: 2px;
}

.project-detail__view-all:hover {
  color: #5a7d45;
  border-bottom-color: #5a7d45;
}

.project-detail__other-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.project-detail__teaser {
  margin: 0;
}

.project-detail__teaser-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid #729b58;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.project-detail__teaser-link:hover {
  border-color: #5a7d45;
  box-shadow: 0 14px 36px rgba(36, 64, 48, 0.1);
  transform: translateY(-2px);
}

.project-detail__teaser-media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-detail__teaser-body {
  padding: 20px 22px 22px;
}

.project-detail__teaser-title {
  margin: 0 0 10px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #244030;
}

.project-detail__teaser-text {
  margin: 0 0 14px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(36, 64, 48, 0.82);
}

.project-detail__teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Raleway, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #729b58;
}

.project-detail__closing {
  padding: 24px 24px 48px;
}

.project-detail__closing-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-family: Raleway, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(36, 64, 48, 0.82);
}

@media (max-width: 767px) {
  .project-detail__meta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .project-detail__other-grid {
    grid-template-columns: 1fr;
  }

  .project-detail__other-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Blog — Conseils & articles */
.conseils-page__feed {
  padding: 32px 16px 56px;
}

.conseils-page__empty {
  text-align: center;
  font-family: Raleway, sans-serif;
  color: rgba(36, 64, 48, 0.8);
  padding: 2rem 1rem;
}

.conseils-page__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.conseils-card {
  height: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(114, 155, 88, 0.22);
  box-shadow: 0 8px 28px rgba(36, 64, 48, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.conseils-card:hover {
  box-shadow: 0 14px 36px rgba(36, 64, 48, 0.1);
  transform: translateY(-2px);
}

.conseils-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.conseils-card__link:focus-visible {
  outline: 2px solid #729b58;
  outline-offset: 2px;
}

.conseils-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(36, 64, 48, 0.06);
}

.conseils-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.conseils-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.conseils-card__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #244030;
  line-height: 1.3;
}

.conseils-card__excerpt {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(36, 64, 48, 0.78);
  flex: 1;
}

.conseils-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-family: Raleway, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #729b58;
}

.conseils-page__cta {
  margin-top: 0;
}

/* Hub SEO : paysagiste Var — même bande que le menu (.container 94% / 1400px), sans padding latéral de section */
.paysagiste-var-page > .paysagiste-section {
  padding-left: 0;
  padding-right: 0;
}

/* .paysagiste-var__intro sur le hero uniquement (pas sur div.container — sinon width:100% casse 94%/1400px) */
.paysagiste-var-page .paysagiste-section--page-hero .paysagiste-var__intro {
  max-width: none;
  width: 100%;
}

/* Hero : titre + chapô sur toute la largeur du .container (pas 800px / 640px / 730px des styles globaux) */
.paysagiste-var-page .paysagiste-section--page-hero .prestations-page__block-hero--menu-width {
  width: 100%;
  max-width: none;
}

.paysagiste-var-page .paysagiste-section--page-hero .paysagiste-text-subtitle,
.paysagiste-var-page .paysagiste-section--page-hero .prestations-page__title,
.paysagiste-var-page .paysagiste-section--page-hero .paysagiste-paragraph--intro {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

.paysagiste-var-page .paysagiste-var__prose--lead {
  margin-bottom: 1.75rem;
}

.paysagiste-var-page .paysagiste-var__section {
  margin-top: 2.75rem;
}

.paysagiste-var-page .paysagiste-var__section-title {
  margin: 0 0 1rem;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 600;
  color: #244030;
}

.paysagiste-var-page .paysagiste-var__prose {
  margin: 0 0 1rem;
  font-family: Raleway, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(36, 64, 48, 0.9);
}

.paysagiste-var-page .paysagiste-var__prose:last-child {
  margin-bottom: 0;
}

.paysagiste-var-page .paysagiste-var__prose a {
  color: #729b58;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(114, 155, 88, 0.45);
}

.paysagiste-var-page .paysagiste-var__prose a:hover {
  border-bottom-color: #729b58;
}

.paysagiste-var-page .paysagiste-var__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.paysagiste-var-page .paysagiste-var__card {
  margin: 0;
  height: 100%;
}

.paysagiste-var-page .paysagiste-var__card-hit {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(36, 64, 48, 0.12);
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(36, 64, 48, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.paysagiste-var-page .paysagiste-var__card-hit:hover {
  border-color: rgba(114, 155, 88, 0.45);
  box-shadow: 0 12px 32px rgba(36, 64, 48, 0.1);
}

.paysagiste-var-page .paysagiste-var__card-hit:hover .paysagiste-var__card-link {
  color: #729b58;
}

.paysagiste-var-page .paysagiste-var__card-link {
  font-family: Montserrat, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: #244030;
  text-decoration: none;
  line-height: 1.3;
}

.paysagiste-var-page .paysagiste-var__card-excerpt {
  display: block;
  margin: 0.65rem 0 0;
  font-family: Raleway, sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(36, 64, 48, 0.75);
  flex: 1;
}

.paysagiste-var-page .paysagiste-var__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-family: Raleway, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #729b58;
}

.article-page__hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  /* Annule le padding de .paysagiste-section quand les deux classes sont sur la même section */
  padding: 0;
  box-sizing: border-box;
}

.article-page:not(.ville-page) .article-page__hero {
  display: block;
  min-height: 38vh;
  color: inherit;
}

.article-page__hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.article-page__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-page__hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(20, 38, 28, 0.88) 0%,
    rgba(20, 38, 28, 0.35) 55%,
    rgba(20, 38, 28, 0.2) 100%
  );
}

.article-page:not(.ville-page) .article-page__hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(20, 38, 28, 0.12) 0%,
    rgba(20, 38, 28, 0.35) 100%
  );
}

.article-page__hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 16px 40px;
  max-width: 800px;
}

/* Article : fil sous la photo (fond clair, contrastes marqués) */
.article-page:not(.ville-page) .article-page__breadcrumb--below-hero {
  margin: 0 0 1.25rem;
  text-align: left;
  max-width: none;
  color: rgba(36, 64, 48, 0.78);
}

.article-page:not(.ville-page) .article-page__breadcrumb--below-hero .service-detail-breadcrumb__list {
  justify-content: flex-start;
  color: rgba(36, 64, 48, 0.78);
}

.article-page:not(.ville-page) .article-page__breadcrumb--below-hero .service-detail-breadcrumb__list a {
  color: #4a7a38;
}

.article-page:not(.ville-page) .article-page__breadcrumb--below-hero .service-detail-breadcrumb__list a:hover {
  color: #335c28;
}

.article-page:not(.ville-page) .article-page__breadcrumb--below-hero .service-detail-breadcrumb__list li[aria-current='page'] {
  color: #244030;
  font-weight: 600;
}

.article-page:not(.ville-page) .article-page__breadcrumb--below-hero .service-detail-breadcrumb__list li:not(:last-child)::after {
  color: rgba(36, 64, 48, 0.42);
}

/* Ville : fil d'Ariane sous la photo hero, même palette que les pages claires */
.ville-page__breadcrumb-strip {
  width: 100%;
  background: #f7f5f2;
  padding: 14px 0 18px;
  border-bottom: 1px solid rgba(36, 64, 48, 0.08);
  box-sizing: border-box;
}

.ville-page .article-page__breadcrumb--below-hero {
  margin: 0;
  text-align: left;
  max-width: none;
  width: 100%;
  color: rgba(36, 64, 48, 0.78);
}

.ville-page .article-page__breadcrumb--below-hero .service-detail-breadcrumb__list {
  justify-content: flex-start;
  color: rgba(36, 64, 48, 0.78);
}

.ville-page .article-page__breadcrumb--below-hero .service-detail-breadcrumb__list a {
  color: #4a7a38;
}

.ville-page .article-page__breadcrumb--below-hero .service-detail-breadcrumb__list a:hover {
  color: #335c28;
}

.ville-page .article-page__breadcrumb--below-hero .service-detail-breadcrumb__list li[aria-current='page'] {
  color: #244030;
  font-weight: 600;
}

.ville-page .article-page__breadcrumb--below-hero .service-detail-breadcrumb__list li:not(:last-child)::after {
  color: rgba(36, 64, 48, 0.42);
}

.article-page__intro {
  margin: 0 0 1.75rem;
  max-width: 720px;
}

.article-page:not(.ville-page) .article-page__intro {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.article-page:not(.ville-page) .article-page__kicker {
  margin: 0 0 0.45rem;
  font-family: Raleway, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #729b58;
}

.article-page:not(.ville-page) .article-page__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  color: #244030;
}

.article-page:not(.ville-page) .article-page__date {
  margin: 0.65rem 0 0;
  font-family: Raleway, sans-serif;
  font-size: 0.88rem;
  color: rgba(36, 64, 48, 0.65);
}

.article-page__wrap {
  padding: 48px 16px 32px;
  max-width: 720px;
}

/* Même largeur que le menu : .container (94% / max 1400px) — ne pas utiliser max-width:none ici (écrase .container sur le même élément). */
.article-page:not(.ville-page) .article-page__wrap {
  padding-top: 28px;
  color: #244030;
  max-width: 1400px;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

.ville-page .article-page__wrap {
  max-width: 1400px;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 28px;
  color: #244030;
  box-sizing: border-box;
}

.article-page__prose {
  font-family: Raleway, sans-serif;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(36, 64, 48, 0.92);
}

/* Articles conseils : texte sur toute la largeur du conteneur (aligné menu) + visuels pleine largeur + légendes */
.article-page:not(.ville-page) .article-figure--full {
  width: 100%;
  max-width: none;
  margin: 2.25rem 0;
  padding: 0;
}

.article-page:not(.ville-page) .article-figure--full .paysagiste-article-body__img,
.article-page:not(.ville-page) .article-figure--full img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(30, 45, 28, 0.14);
}

.article-page:not(.ville-page) .article-figure__caption {
  margin: 0.65rem 0 0;
  padding: 0 0.25rem;
  font-family: Raleway, sans-serif;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(36, 64, 48, 0.62);
  text-align: center;
  font-style: italic;
}

/* Pages ville : même logique visuel, largeur du bloc ville */
.ville-page .article-figure--full {
  width: 100%;
  margin: 1.75rem 0;
}

.ville-page .article-figure--full .paysagiste-article-body__img,
.ville-page .article-figure--full img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(30, 45, 28, 0.14);
}

.ville-page .article-figure__caption {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(36, 64, 48, 0.65);
  text-align: center;
  font-style: italic;
}

.paysagiste-article-body p {
  margin: 0 0 1.1em;
}

/* Liens dans le corps : même couleur que le paragraphe, sans soulignement (ville, blog) */
.article-page__prose.paysagiste-article-body a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.article-page__prose.paysagiste-article-body a:hover,
.article-page__prose.paysagiste-article-body a:focus {
  color: inherit;
  text-decoration: none;
}

.article-page__prose.paysagiste-article-body a:focus-visible {
  outline: 2px solid rgba(114, 155, 88, 0.45);
  outline-offset: 2px;
}

.paysagiste-article-body h2 {
  margin: 1.75em 0 0.65em;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: #244030;
}

.paysagiste-article-body h2:first-child {
  margin-top: 0;
}

.paysagiste-article-body h3 {
  margin: 1.35em 0 0.5em;
  font-family: Raleway, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #244030;
}

.paysagiste-article-body ul,
.paysagiste-article-body ol {
  margin: 0 0 1.1em 1.25rem;
  padding: 0;
}

.paysagiste-article-body li {
  margin-bottom: 0.4em;
}

.paysagiste-article-body blockquote {
  margin: 1.5em 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid #729b58;
  background: rgba(114, 155, 88, 0.08);
  font-style: italic;
  color: rgba(36, 64, 48, 0.88);
}

.paysagiste-article-body blockquote p {
  margin: 0;
}

.article-page__back {
  margin: 2rem 0 0;
}

/* Contact — formulaire type Webflow (lignes, pill CTA, cartes glass) */
.contact-page__hero {
  overflow: hidden;
}

.contact-page__breadcrumb {
  margin-bottom: 1.5rem;
}

.contact-page__breadcrumb .service-detail-breadcrumb__list {
  justify-content: center;
  color: rgba(36, 64, 48, 0.78);
}

.contact-page__breadcrumb .service-detail-breadcrumb__list a {
  color: #4a7a38;
}

.contact-page__breadcrumb .service-detail-breadcrumb__list a:hover {
  color: #335c28;
}

.contact-page__breadcrumb .service-detail-breadcrumb__list li[aria-current='page'] {
  color: #244030;
  font-weight: 600;
}

.contact-page__breadcrumb .service-detail-breadcrumb__list li:not(:last-child)::after {
  color: rgba(36, 64, 48, 0.42);
}

/* Zone principale : fond doux type template Webflow Gardener */
.contact-page__main {
  padding: 56px 0 104px;
  background: linear-gradient(165deg, #faf8f4 0%, #f0ebe4 48%, #e8e2d8 100%);
  border-top: 1px solid rgba(36, 64, 48, 0.05);
}

.contact-page__container {
  max-width: 1120px;
}

.contact-page__layout {
  display: grid;
  gap: 48px;
  align-items: start;
}

.contact-page__form-column {
  min-width: 0;
}

@media (min-width: 992px) {
  .contact-page__layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 56px 64px;
    align-items: stretch;
  }
}

/* Formulaire : pas de carte « boîte », champs ligne (style éditorial moderne) */
.contact-page__form-panel {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 560px;
}

.contact-page__form-head {
  margin-bottom: 2.25rem;
}

.contact-page__form-title {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 3.2vw, 2rem);
  font-weight: 500;
  color: #1a2e22;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.contact-page__form-lead {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(36, 64, 48, 0.58);
  font-weight: 400;
}

.contact-page__feedback {
  margin: 0 0 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-family: Raleway, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-page__feedback--solo {
  margin-bottom: 0;
}

.contact-page__feedback--ok {
  background: rgba(255, 255, 255, 0.75);
  color: #1a2e22;
  border: 1px solid rgba(114, 155, 88, 0.35);
  box-shadow: 0 4px 24px rgba(114, 155, 88, 0.1);
}

.contact-page__feedback--err {
  background: rgba(255, 255, 255, 0.8);
  color: #5c2220;
  border: 1px solid rgba(180, 60, 50, 0.25);
}

.contact-page__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-page__form {
  position: relative;
}

.contact-page__form--modern .contact-page__form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.85rem;
}

.contact-page__form-row--split {
  display: grid;
  gap: 1.85rem 2rem;
}

@media (min-width: 640px) {
  .contact-page__form-row--split {
    grid-template-columns: 1fr 1fr;
    gap: 1.85rem 2.5rem;
  }
}

.contact-page__field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-page__field--line {
  gap: 0.5rem;
}

.contact-page__label {
  font-family: Raleway, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(36, 64, 48, 0.45);
}

.contact-page__req {
  color: #729b58;
  font-weight: 700;
}

/* Champs une ligne : bordure basse uniquement (look type Gardener / Webflow) */
.contact-page__input--line {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 36px 14px 2px;
  font-family: Raleway, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a2e22;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(36, 64, 48, 0.22);
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page__input--line::placeholder {
  color: rgba(36, 64, 48, 0.28);
}

.contact-page__input--line:hover {
  border-bottom-color: rgba(36, 64, 48, 0.35);
}

.contact-page__input--line:focus {
  outline: none;
  border-bottom-color: #1e2d1c;
  border-bottom-width: 2px;
  padding-bottom: 13px;
  box-shadow: none;
}

.contact-page__select.contact-page__input--line {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='none' stroke='%23244030' stroke-width='1.5' stroke-linecap='round' d='M1 1.5L7 7l6-5.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  color: #1a2e22;
}

.contact-page__select.contact-page__input--line:invalid {
  color: rgba(36, 64, 48, 0.4);
}

.contact-page__field--message .contact-page__textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.15rem;
  padding: 20px 22px;
  font-family: Raleway, sans-serif;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #1a2e22;
  resize: vertical;
  min-height: 148px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 64, 48, 0.1);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 40px rgba(36, 64, 48, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-page__textarea::placeholder {
  color: rgba(36, 64, 48, 0.38);
}

.contact-page__field--message .contact-page__textarea:hover {
  border-color: rgba(36, 64, 48, 0.16);
  background: rgba(255, 255, 255, 0.88);
}

.contact-page__field--message .contact-page__textarea:focus {
  outline: none;
  border-color: rgba(114, 155, 88, 0.45);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 0 0 3px rgba(114, 155, 88, 0.2),
    0 16px 48px rgba(36, 64, 48, 0.08);
}

.contact-page__form-footer {
  margin-top: 2.25rem;
  padding-top: 0;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-page__legal {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(36, 64, 48, 0.48);
  max-width: 26rem;
}

.contact-page__legal a {
  color: rgba(36, 64, 48, 0.65);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-page__legal a:hover {
  color: #244030;
}

button.contact-page__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 200px;
  margin: 0;
  padding: 16px 40px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: Raleway, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #fff;
  background: #1e2d1c;
  box-shadow: 0 10px 36px rgba(30, 45, 28, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

button.contact-page__submit:hover {
  background: #243524;
  box-shadow: 0 14px 44px rgba(30, 45, 28, 0.35);
  transform: translateY(-2px);
}

button.contact-page__submit:active {
  transform: translateY(0);
}

button.contact-page__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #f0ebe4, 0 0 0 6px rgba(30, 45, 28, 0.45);
}

.contact-page__aside {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-page__info-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(36, 64, 48, 0.06);
}

.contact-page__info-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #3d5c2e;
  box-shadow: 0 8px 24px rgba(36, 64, 48, 0.07);
}

.contact-page__info-icon svg {
  display: block;
  opacity: 0.92;
}

.contact-page__info-title {
  margin: 0 0 0.6rem;
  font-family: "Titillium Web", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2e22;
  letter-spacing: -0.02em;
}

.contact-page__info-text {
  margin: 0 0 1rem;
  font-family: Raleway, sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(36, 64, 48, 0.55);
}

.contact-page__info-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.contact-page__info-phone-line {
  margin: 0;
}

.contact-page__info-link {
  font-family: Raleway, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a2e22;
  text-decoration: none;
  border-bottom: 2px solid rgba(114, 155, 88, 0.45);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.contact-page__info-link:hover {
  color: #4a7a38;
  border-bottom-color: rgba(74, 122, 56, 0.65);
}

.contact-page__info-link--plain {
  border: none;
  cursor: default;
  pointer-events: none;
  border-bottom: none;
}

.contact-page__info-address {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #1a2e22;
  font-weight: 500;
}

.legal-page__body {
  padding-bottom: 72px;
}

.legal-page__prose {
  font-family: Raleway, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(36, 64, 48, 0.92);
}

.legal-page__h2 {
  margin: 2.25rem 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #244030;
}

.legal-page__h2:first-of-type {
  margin-top: 0;
}

.legal-page__prose p {
  margin: 0 0 1rem;
}

.legal-page__prose ul {
  margin: 0 0 1rem 1.15rem;
  padding: 0;
}

.legal-page__prose li {
  margin-bottom: 0.45em;
}

.legal-page__prose a {
  color: #244030;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page__back {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(114, 155, 88, 0.2);
}
