/* --- 1. Variables & Reset --- */
:root {
  --color-background: #f9f5f1;
  --color-beige: #e8dccf;
  --color-terracotta: #c96f5a;
  --color-titles: #4a3b35;
  --color-text: #333333;
  --color-accent: #d89c8a;
  --color-white: #ffffff;

  --font-title: "Libre Baskerville", serif;
  --font-text: "Inter", sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  --border-radius: 12px;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-text);
  line-height: 1.6;
  font-size: 16px;
  opacity: 1;
  animation: pageFadeIn 0.8s ease-in-out 0.05s both;
}

/* --- 2. Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  color: var(--color-titles);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

.section-title {
  /* margin-bottom: var(--spacing-lg); */
  position: relative;
  display: inline-block;
}

.text-center {
  text-align: center;
}
.text-white {
  color: var(--color-white);
}

/* --- 3. Layout Utilities --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: var(--spacing-lg) 0;
}
.bg-beige {
  background-color: var(--color-beige);
}
.bg-terracotta {
  background-color: var(--color-terracotta);
}
.bg-background {
  background-color: var(--color-background);
}
.bg-titles {
  background-color: var(--color-titles);
}
.max-width-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.mt-2 {
  margin-top: var(--spacing-md);
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

/* --- 4. Components --- */

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: white;
}
.btn-primary:hover {
  background-color: var(--color-titles);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}
.btn-secondary:hover {
  background-color: var(--color-terracotta);
  color: white;
}

.btn-outline {
  border: 2px solid var(--color-terracotta);
  background-color: var(--color-terracotta);
  color: var(--color-white);
}
.btn-outline:hover {
  background-color: var(--color-titles);
  border-color: var(--color-titles);
  color: var(--color-white);
}
.btn-white {
  background-color: white;
  color: var(--color-terracotta);
}
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: var(--color-white);
  background: transparent;
}
.btn-outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-terracotta);
}
.btn.small {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

/* Navbar */
#navbar {
  position: sticky;
  top: 0;
  background: rgba(249, 245, 241, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: barSlideDown 0.9s ease-out 0.18s both;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: min(1400px, 96vw);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-titles);
  text-decoration: none;
}

.nav-menu ul {
  display: none; /* Mobile first hidden */
  list-style: none;
}
.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--color-background);
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

/* Top info banner */
.top-info-bar {
  background: var(--color-beige);
  border-bottom: 1px solid rgba(74, 59, 53, 0.15);
  font-size: 0.9rem;
  color: var(--color-titles);
  animation: barSlideDown 0.8s ease-out 0.1s both;
}
.top-info-inner {
  width: min(1400px, 96vw);
  margin: 0 auto;
  padding: 0.65rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}
.top-info-address {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 500;
}
.top-info-address-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-titles);
}
.top-info-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}
.top-info-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(74, 59, 53, 0.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-titles);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.top-info-icon svg {
  display: block;
}
.top-info-icon:hover,
.top-info-icon:focus-visible {
  color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  background: rgba(201, 111, 90, 0.08);
}
.top-info-phone {
  text-decoration: none;
  color: var(--color-titles);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: none;
  align-items: center;
  gap: 0.35rem;
}
.top-info-phone:hover,
.top-info-phone:focus-visible {
  color: var(--color-terracotta);
}
.top-info-cta {
  padding: 0.6rem 1.6rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal="left"] {
  transform: translateX(-35px);
}
[data-reveal="right"] {
  transform: translateX(35px);
}
[data-reveal="zoom"] {
  transform: scale(0.96);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-img {
    animation: none;
  }
  .btn:hover,
  .btn:focus-visible {
    transform: none;
    box-shadow: none;
  }
  body,
  #navbar,
  .top-info-bar {
    animation: none;
  }
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--color-titles);
  transition: all 0.3s ease;
}

/* Mobile Drawer */
.nav-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-menu.active ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nav-link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}

/* Hero */
.hero-section {
  padding: var(--spacing-lg) 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.hero-content h1 {
  margin-bottom: 0;
}
.hero-subtitle {
  margin: 0;
}
.hero-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  height: 400px; /* Mobile height */
  animation: heroFloat 14s ease-in-out infinite;
}
.hero-image-wrapper {
  margin-top: var(--spacing-sm);
  position: relative;
}
.hero-actions {
  margin-top: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.hero-rating-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

@media (max-width: 600px) {
  .hero-actions {
    justify-content: center;
  }
  .hero-rating-badge {
    position: static;
    margin-top: var(--spacing-sm);
    align-self: center;
  }
  .hero-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes barSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px) scale(1.01);
  }
  100% {
    transform: translateY(0);
  }
}
.lead-paragraph {
  font-size: 1.15rem;
  color: var(--color-titles);
  margin-bottom: 1.5rem;
}

/* Google Rating Box */
.google-rating-box {
  margin: 0;
  padding: 0.8rem 1.1rem;
  background: var(--color-titles);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  color: var(--color-white);
  min-width: 230px;
}
.google-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.google-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.rating-score {
  font-weight: 600;
  font-size: 1.05rem;
}
.rating-score .rating-max {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-left: 0.15rem;
}
.rating-count {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Cards (Lieux) */
.card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card-body h3 {
  margin-bottom: 0;
}
.card-body p {
  margin-bottom: 0;
}
.card-body .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* Motifs Slider */
.motifs-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--spacing-md);
}
.motifs-track-wrapper {
  overflow: hidden;
  flex: 1;
  max-width: 900px;
  margin: 0 auto;
}
.motifs-track {
  display: flex;
  gap: 0;
  transition: transform 0.4s ease;
}
.motif-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-beige);
}
.motif-slide {
  min-width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}
.motif-slide h3 {
  margin-bottom: 0.5rem;
}
.motif-slide p,
.motif-slide ul {
  text-align: left;
}
.motif-slide ul {
  list-style: disc;
  margin: 0 0 0 1.25rem;
  padding: 0;
}
.motif-slide li + li {
  margin-top: 0.35rem;
}
.motifs-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  color: var(--color-terracotta);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.motifs-btn:hover,
.motifs-btn:focus-visible {
  background: var(--color-beige);
  transform: translateY(-1px);
}
.motifs-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Engagements */
.engagements-section {
  padding: 3rem 0;
}
.engagement-item {
  margin-bottom: 2rem;
}
.engagements-section .grid-3 {
  gap: var(--spacing-md);
}
.engagement-card {
  background: var(--color-beige);
  border-radius: 28px;
  padding: 2rem 1.5rem;
  color: var(--color-titles);
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}
.engagement-card h3 {
  margin-bottom: 0.75rem;
}
.engagement-card p {
  color: var(--color-text);
  margin: 0;
}
.engagement-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  box-shadow: inset 0 0 0 1px rgba(233, 220, 207, 0.9);
}
.engagement-icon svg {
  width: 36px;
  height: 36px;
}

/* Pourquoi consulter */
.pourquoi-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}
.pourquoi-grid {
  align-items: stretch;
  gap: var(--spacing-lg);
}
.pourquoi-grid .content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pourquoi-grid .content .pourquoi-detail-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
}
.pourquoi-grid .image-wrapper {
  height: 100%;
  display: flex;
  align-items: stretch;
}
.pourquoi-grid .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pourquoi-detail-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--color-beige);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
}
.pourquoi-detail-card.inline {
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: none;
  border-color: rgba(232, 220, 207, 0.8);
  background: rgba(255, 255, 255, 0.9);
  margin-top: 1.5rem;
}
.pourquoi-detail-card p + p {
  margin-top: 1rem;
}
.pourquoi-cta-panel {
  border-radius: 28px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}
.pourquoi-cta-panel h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.pourquoi-cta-panel p {
  margin-bottom: 1.5rem;
}
.panel-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Images Styling */
.rounded-img {
  border-radius: var(--border-radius);
  width: 100%;
  object-fit: cover;
}
.shadow-img {
  box-shadow: var(--shadow-soft);
}

#a-propos {
  background: linear-gradient(
    135deg,
    rgba(232, 220, 207, 0.85),
    rgba(249, 245, 241, 0.95)
  );
}
.about-section {
  align-items: stretch;
  gap: var(--spacing-lg);
}
.about-card {
  background: var(--color-white);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(232, 220, 207, 0.9);
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  border: 2px dashed rgba(201, 111, 90, 0.2);
  pointer-events: none;
}
.about-card p + p {
  margin-top: 1rem;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.info-grid .info-block {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(249, 245, 241, 0.95)
  );
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(201, 111, 90, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  min-height: 120px;
}
.info-grid .info-block h4 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}
.info-grid .info-block small {
  color: rgba(51, 51, 51, 0.7);
}
.about-cta {
  display: inline-flex;
}
.about-cta .btn {
  border-radius: 999px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
#a-propos .image-wrapper {
  border-radius: 36px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}
#a-propos .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.info-highlight {
  background: var(--color-terracotta);
  color: var(--color-white);
}
.info-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: var(--spacing-md);
}
.info-pill {
  background: rgba(249, 245, 241, 0.95);
  border-radius: 28px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  color: var(--color-titles);
}
.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-terracotta);
  margin: 0 auto 1rem;
  box-shadow: inset 0 0 0 4px rgba(201, 111, 90, 0.15);
}
.info-pill h4 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}
.info-pill small {
  display: block;
  margin-top: 0.4rem;
  color: rgba(74, 59, 53, 0.7);
}
.info-highlight .about-cta {
  justify-content: center;
}

/* Listes À propos */
.styled-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
.styled-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.styled-list li::before {
  content: "•";
  color: var(--color-terracotta);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1rem;
  top: 2px;
}
.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-block {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-terracotta);
}

/* Carousel (Simple) */
.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.carousel-track-container {
  position: relative;
  height: 220px;
  width: 100%;
  background: rgba(232, 220, 207, 0.85);
  border-radius: 32px;
  box-shadow: 0 30px 45px rgba(0, 0, 0, 0.12);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-track {
  list-style: none;
  position: relative;
  height: 100%;
  width: 100%;
}
.carousel-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.current-slide {
  opacity: 1;
  z-index: 1;
}
.avis-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.avis-card {
  text-align: center;
  padding: 2rem;
  /* background: var(--color-beige); */
  border-radius: var(--border-radius);
  width: 100%;
}
.avis-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.avis-author {
  font-weight: bold;
  font-family: var(--font-title);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  width: 46px;
  height: 46px;
  z-index: 2;
  color: var(--color-terracotta);
  border-radius: 50%;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev {
  left: 1rem;
}
.next {
  right: 1rem;
}
.carousel-btn:focus-visible,
.carousel-btn:hover {
  background: var(--color-beige);
}

/* FAQ Accordion */
.accordion-item {
  border-bottom: 1px solid var(--color-terracotta);
  margin-bottom: 0.5rem;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-family: var(--font-title);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-titles);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1rem;
}
.accordion-content p {
  padding-bottom: 1rem;
}
.accordion-header[aria-expanded="true"] .icon {
  transform: rotate(45deg);
}
.icon {
  transition: transform 0.3s ease;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0 3rem;
  text-align: center;
  color: var(--color-titles);
}

.footer-divider {
  width: 80%;
  max-width: 720px;
  height: 1px;
  border: 0;
  margin: 0 auto 1rem;
  background-color: rgba(75, 52, 40, 0.4);
}

.footer-note {
  font-size: 0.95rem;
}

.footer-note a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

/* --- 5. Desktop Media Queries --- */
@media (min-width: 950px) {
  h1 {
    font-size: 3rem;
  }

  .nav-container {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 2rem;
  }

  .nav-menu {
    position: static;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-left: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    width: auto;
  }

  .nav-menu ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
  }
  .mobile-toggle {
    display: none;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Hero layout */
  .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: flex-start;
  }
  .hero-img {
    height: 600px;
  }
  .hero-image-wrapper {
    order: 2;
    align-self: flex-start;
    margin-top: 0;
  }
  .hero-content {
    order: 1;
    gap: var(--spacing-md);
  }
  .hero-rating-badge {
    bottom: 1.5rem;
    left: 1.5rem;
  }
  .top-info-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
  }
  .top-info-address {
    justify-content: flex-start;
  }
  .top-info-actions {
    width: auto;
    justify-content: flex-end;
    gap: 1rem;
  }
  .top-info-phone {
    display: inline-flex;
  }
  .top-info-cta {
    width: auto;
  }

  /* Alternance À propos */
  .reverse-mobile {
    grid-template-columns: 1.5fr 1fr;
  }

  .info-blocks {
    flex-direction: row;
  }
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.cta-bandeau {
  padding: var(--spacing-lg) 0;
  background: transparent;
}
.cta-panel {
  background: var(--color-white);
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-beige);
}
.cta-panel p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--color-titles);
}
.motifs-cta {
  margin-top: var(--spacing-lg);
  width: 100%;
  max-width: none;
}
.contact-wrapper {
  align-items: flex-start;
  gap: var(--spacing-lg);
}
.contact-info {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(232, 220, 207, 0.8);
}
.contact-block {
  margin-bottom: 1.5rem;
}
.contact-block h4 {
  margin-bottom: 0.4rem;
}
.contact-details p {
  margin-bottom: 0.3rem;
}
.map-switcher {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.map-tabs {
  display: flex;
  background: rgba(232, 220, 207, 0.6);
  border-radius: 20px;
  padding: 0.3rem;
}
.map-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-titles);
}
.map-tab.active {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}
.map-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}

/* Rendez-vous HUB */
.rdv-main {
  min-height: 100vh;
  padding: var(--spacing-lg) 0;
  display: flex;
  align-items: center;
}
.rdv-main .container {
  width: min(1200px, 92vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-lg);
  min-height: calc(100vh - var(--spacing-lg) * 2);
}
.rdv-header {
  text-align: center;
  /* margin: 0 auto var(--spacing-md); */
}
.rdv-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(74, 59, 53, 0.7);
  margin-bottom: 0.65rem;
  font-weight: 600;
}
.rdv-options-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}
.rdv-option-card {
  border: 1px solid rgba(232, 220, 207, 0.9);
  border-radius: calc(var(--border-radius) * 1.5);
  padding: 1.2rem 1.5rem;
  text-align: left;
  text-decoration: none;
  color: var(--color-titles);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(232, 220, 207, 0.5)
  );
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.rdv-option-card:hover,
.rdv-option-card:focus-visible {
  border-color: var(--color-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}
.rdv-option-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(74, 59, 53, 0.7);
  font-weight: 600;
}
.rdv-option-value {
  font-size: 1.3rem;
}
.rdv-card-wrapper {
  margin-top: 0;
}
.rdv-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: stretch;
  overflow: visible;
  padding-bottom: 0;
}
.rdv-card {
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(232, 220, 207, 0.85);
  background: radial-gradient(
      circle at top,
      rgba(232, 220, 207, 0.55),
      transparent 55%
    ),
    linear-gradient(180deg, #fff, rgba(249, 245, 241, 0.7));
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 320px;
}
.rdv-card::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 24px;
  border: 1px dashed rgba(201, 111, 90, 0.2);
  pointer-events: none;
}
.rdv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3),
    rgba(232, 220, 207, 0.15),
    transparent 70%
  );
  opacity: 0.6;
  pointer-events: none;
}
.rdv-card:hover,
.rdv-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.15);
}
.rdv-card-body {
  position: relative;
  z-index: 1;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  height: 100%;
}
.rdv-card-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(74, 59, 53, 0.6);
  font-weight: 600;
}
.rdv-card-body h3 {
  margin: 0;
  line-height: 1.3;
  font-size: 1.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rdv-card-text {
  margin: 0;
  color: rgba(51, 51, 51, 0.72);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.rdv-card-cta {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}
.rdv-help {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(51, 51, 51, 0.8);
}
.rdv-help a {
  color: var(--color-terracotta);
  font-weight: 600;
  text-decoration: none;
}
.rdv-help a:hover,
.rdv-help a:focus-visible {
  text-decoration: underline;
}
.rdv-support {
  /* margin-top: var(--spacing-lg); */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}
.rdv-support .btn {
  flex-shrink: 0;
}

@media (min-width: 780px) {
  .rdv-options-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .rdv-card-grid {
    grid-template-columns: unset;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 1fr);
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}
