:root {
  --rose: #f7d9da;
  --cream: #fff8f1;
  --sage: #4f7464;
  --midnight: #1a2a2f;
  --text: #2f3437;
  --muted: #6b7174;
  --accent: #d47a7d;
  --radius: 18px;
  --shadow: 0 20px 40px rgba(26, 42, 47, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Mulish", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  border-radius: var(--radius);
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--midnight);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  text-decoration: none;
  color: inherit;
}

sup {
  font-size: 0.65em;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 4rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
  z-index: 10;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .site-header {
    min-height: 50px;
  }

  .header__inner {
    padding: 1.25rem 0;
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn--call {
  border-color: rgba(79, 116, 100, 0.4);
  color: var(--accent);
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.logo__icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.nav {
  display: flex;
  gap: 2rem;
  font-weight: 600;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--sage);
}

/* Menu Déroulant (Dropdown) Desktop */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.dropdown-trigger .arrow {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
  display: inline-block;
  vertical-align: middle;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: white;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(26, 42, 47, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  z-index: 100;
  padding: 0.5rem 0;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-content a {
  color: var(--text);
  padding: 0.65rem 1.25rem;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: var(--cream);
  color: var(--sage);
}

/* Affichage au survol */
.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-trigger .arrow {
  transform: rotate(180deg);
}

.hamburger-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 12;
  flex-direction: column;
  gap: 5px;
}

.hamburger-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--midnight);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--sage) 0%, #3d5a4d 100%);
  color: white;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(79, 116, 100, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 116, 100, 0.35);
}

.btn--ghost {
  background: rgba(79, 116, 100, 0.05);
  color: var(--sage);
  border: 2px solid rgba(79, 116, 100, 0.2);
  box-shadow: 0 4px 12px rgba(79, 116, 100, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn--ghost:hover {
  background-color: var(--sage);
  border-color: var(--sage);
  color: white;
  box-shadow: 0 8px 20px rgba(79, 116, 100, 0.25);
  transform: translateY(-2px);
}

.hero {
  background: linear-gradient(135deg, #FFF5EC 0%, #FFF0F2 50%, #FFFFFF 100%);
  padding-top: 2rem;
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero__text h1 {
  font-size: clamp(2.5rem, 6vw, 3.6rem);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__badges li {
  border-radius: 999px;
  padding: 0.4rem 1rem;
  background: rgba(212, 122, 125, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.1rem;
  color: #4a4f52;
}

.hero__card {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero__quote {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--midnight);
  font-style: italic;
}

.hero__stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem 1rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero__stats span {
  display: block;
  font-size: 1.2rem;
  color: var(--sage);
  font-weight: 700;
}

.hero__stats small {
  display: block;
}

.section {
  background: white;
}

.section--alt {
  background: var(--cream);
}

section[id] {
  scroll-margin-top: 110px;
}

.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.center {
  text-align: center;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.list-check li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
}

.list-check li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 35px rgba(26, 42, 47, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 42, 47, 0.1);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--sage);
}

.card__link::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.card__link:hover::after {
  transform: translateX(4px);
}

.card--accent {
  border: 1px solid rgba(212, 122, 125, 0.3);
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}



.list-tiles {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-tiles li {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1rem;
}

.quotes article {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(26, 42, 47, 0.08);
  font-style: italic;
}

.quotes strong {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  color: var(--sage);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact__details {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.contact__map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.contact__info {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  color: var(--text);
}

.contact__info li {
  margin-bottom: 0.4rem;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-hero {
  background: linear-gradient(135deg, #FFF5EC 0%, #FFF0F2 50%, #FFFFFF 100%);
  padding-top: 3rem;
}

.service-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--sage);
  font-weight: 600;
}

.service-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-panel {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-panel h3 {
  margin-top: 0;
}

.service-panel ul {
  padding-left: 1.25rem;
  color: var(--text);
}

.cta-block {
  text-align: center;
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq {
  margin-top: 2rem;
}

.faq details {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--midnight);
}

.faq p {
  margin-top: 0.5rem;
}

.carousel {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: #f9f9f9;
}

.carousel__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--midnight);
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s ease, background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  z-index: 2;
  user-select: none;
  opacity: 0;
  pointer-events: none;
}

.carousel:hover .carousel__btn {
  opacity: 1;
  pointer-events: auto;
}

.carousel__btn:hover {
  background: var(--sage);
  color: white;
  transform: translateY(-50%) scale(1.08);
}

.carousel__btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel__btn--prev {
  left: 1rem;
}

.carousel__btn--next {
  right: 1rem;
}

.carousel__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.carousel__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel__dot.active {
  background: var(--sage);
  transform: scale(1.2);
  width: 16px;
  border-radius: 4px;
}

.site-footer {
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.site-footer h3 {
  color: white;
  font-family: "Mulish", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer__col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col li {
  margin-bottom: 0.5rem;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--rose);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--rose);
}

@media (max-width: 720px) {
  .hamburger-toggle {
    display: flex;
  }

  .header__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
  }


  .header__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .header__actions .btn {
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #f0f0f0;
    z-index: 11;
  }

  .nav.active {
    display: flex;
  }

  /* Menu déroulant sur Mobile */
  .dropdown {
    width: 100%;
  }

  .dropdown-trigger .arrow {
    display: none;
  }

  .dropdown-content {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    opacity: 1;
    padding: 0.5rem 0 0 1rem;
    min-width: auto;
  }

  .dropdown-content a {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--muted);
  }

  .dropdown-content a:hover {
    background: transparent;
  }

  /* Animation du bouton hamburger actif */
  .hamburger-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .container {
    padding: 2rem 0;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .carousel__btn {
    opacity: 1;
    pointer-events: auto;
  }
}