/* ── Variables ── */
:root {
  --warm-cream: #faf7f2;
  --soft-sand: #f0ebe0;
  --warm-taupe: #c8b8a2;
  --deep-espresso: #2c1f14;
  --accent-rose: #d4847a;
  --accent-sage: #7a9e87;
  --accent-gold: #c9a96e;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--warm-cream);
  color: var(--deep-espresso);
}

/* ── NAV ── */
.navStyle {
  border: 1px solid rgba(200, 184, 162, 0.3);
  box-shadow: 0 2px 32px rgba(44, 31, 20, 0.06);
  backdrop-filter: blur(16px);
  background: rgba(250, 247, 242, 0.92) !important;
  margin-top: 16px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep-espresso);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--accent-rose);
}

.logo-hex img {
  height: 36px;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: bold;
  color: var(--deep-espresso) !important;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem !important;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-rose) !important;
}

.navbar-nav .nav-link.active {
  text-decoration: underline;
  text-decoration-color: var(--accent-rose);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.nav-cta {
  background: var(--deep-espresso) !important;
  color: var(--warm-cream) !important;
  padding: 0.45rem 1.4rem !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em;
}

.nav-cta:hover {
  background: var(--accent-rose) !important;
  color: #fff !important;
}

/* ── OFFCANVAS NAV ── */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
    overflow-y: auto;
  }
  #navbarNav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
  }
  .navbar-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
  }

  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-collapse .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin: 0;
    width: min(90vw, 360px);
  }

  .navbar-collapse .nav-item {
    text-align: center;
    width: 100%;
  }

  .navbar-collapse .nav-link {
    font-size: 1.2rem;
    padding: 1rem 1.25rem !important;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .navbar-collapse .nav-link:hover {
    background: rgba(212, 132, 122, 0.1);
    color: var(--accent-rose) !important;
  }

  .navbar-collapse .nav-link.active {
    background: rgba(212, 132, 122, 0.1);
    color: var(--accent-rose) !important;
    text-decoration: underline;
    text-decoration-color: var(--accent-rose);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  .navbar-collapse .nav-cta {
    margin-top: 2rem;
    font-size: 1rem;
    padding: 1rem 2rem !important;
  }

  /* Close button */
  .nav-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(250, 247, 242, 0.9);
    border: 1px solid rgba(200, 184, 162, 0.4);
    font-size: 1.5rem;
    color: var(--deep-espresso);
    cursor: pointer;
    z-index: 1051;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: block !important;
  }

  .nav-close-btn:hover {
    background: rgba(200, 184, 162, 0.2);
    color: var(--accent-rose);
  }

  @media (min-width: 992px) {
    .nav-close-btn {
      display: none !important;
    }
  }

  /* Backdrop */
  .navbar-collapse::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(44, 31, 20, 0.5);
    z-index: -1;
  }
}

body.no-scroll {
  overflow: hidden;
}

/* ── HERO ── */
.hero-section {
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.hero-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 132, 122, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(122, 158, 135, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Eyebrow tag */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 184, 162, 0.18);
  border: 1px solid rgba(200, 184, 162, 0.4);
  border-radius: 999px;
  padding: 6px 18px 6px 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #7a6252;
  margin-bottom: 1.5rem;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-rose);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--deep-espresso);
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent-rose);
  font-weight: 300;
}

/* ── IMAGE + BADGES WRAPPER ── */
.hero-visual {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.hero-img-frame {
  position: relative;
  display: inline-block;
}

/* Decorative ring behind image */
.hero-img-frame::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  border: 1px solid rgba(200, 184, 162, 0.35);
  animation: morph-border 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes morph-border {
  0%,
  100% {
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  }
  33% {
    border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
  }
  66% {
    border-radius: 50% 50% 60% 40% / 40% 50% 50% 60%;
  }
}

.hero-img-frame img {
  max-height: 600px;
  object-fit: cover;
  border-radius: 50% 50% 48% 52% / 46% 46% 54% 54%;
  position: relative;
  z-index: 1;
  filter: contrast(1.02) saturate(0.95);
}

/* ── FLOATING BADGES ── */
.badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 184, 162, 0.35);
  border-radius: 999px;
  padding: 9px 18px 9px 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--deep-espresso);
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(44, 31, 20, 0.08);
  animation: float-badge 5s ease-in-out infinite;
  cursor: default;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.badge-float:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 16px 40px rgba(44, 31, 20, 0.14);
}

.badge-float .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* Individual badge positions + staggered animations */
.badge-copywriting {
  top: 12%;
  left: -20px;
  animation-delay: 0s;
  animation-duration: 5.2s;
}

.badge-ia {
  top: 44%;
  left: -30px;
  animation-delay: 0.8s;
  animation-duration: 6s;
}

.badge-contenu {
  bottom: 22%;
  left: -15px;
  animation-delay: 1.4s;
  animation-duration: 5.6s;
}

.badge-monetisation {
  top: 10%;
  right: -20px;
  animation-delay: 0.4s;
  animation-duration: 5.8s;
}

.badge-branding {
  top: 42%;
  right: -30px;
  animation-delay: 1.2s;
  animation-duration: 5.4s;
}

.badge-eleves {
  bottom: 20%;
  right: -15px;
  animation-delay: 0.6s;
  animation-duration: 6.2s;
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Badge icon colors */
.icon-rose {
  background: rgba(212, 132, 122, 0.15);
  color: #c0706a;
}
.icon-gold {
  background: rgba(201, 169, 110, 0.15);
  color: #b8902a;
}
.icon-sage {
  background: rgba(122, 158, 135, 0.15);
  color: #5a8a6a;
}
.icon-taupe {
  background: rgba(200, 184, 162, 0.25);
  color: #8a7060;
}
.icon-espresso {
  background: rgba(44, 31, 20, 0.1);
  color: var(--deep-espresso);
}
.icon-blue {
  background: rgba(100, 140, 200, 0.12);
  color: #4a78c0;
}

/* ── STATS STRIP ── */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 28px 0;
  border-top: 1px solid rgba(200, 184, 162, 0.25);
  border-bottom: 1px solid rgba(200, 184, 162, 0.25);
  margin: 0 auto;
  max-width: 560px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--deep-espresso);
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-taupe);
  margin-top: 4px;
}

/* ── CTA BUTTONS ── */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--deep-espresso);
  color: var(--warm-cream);
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  border: 1.5px solid var(--deep-espresso);
}

.btn-primary:hover {
  background: var(--accent-rose);
  border-color: var(--accent-rose);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 132, 122, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--deep-espresso);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(44, 31, 20, 0.2);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  border-color: var(--deep-espresso);
  transform: translateY(-2px);
}

.btn-ghost .arrow {
  transition: transform 0.3s;
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

/* ── ENTRANCE ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-up:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-up:nth-child(2) {
  animation-delay: 0.25s;
}
.fade-up:nth-child(3) {
  animation-delay: 0.4s;
}
.fade-up:nth-child(4) {
  animation-delay: 0.55s;
}
.fade-up:nth-child(5) {
  animation-delay: 0.7s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badges-reveal .badge-float {
  opacity: 0;
  animation:
    badgeReveal 0.6s ease forwards,
    float-badge 5s ease-in-out infinite;
}

.badge-copywriting {
  animation-delay: 0.9s, 0.9s !important;
}
.badge-ia {
  animation-delay: 1.1s, 1.1s !important;
}
.badge-contenu {
  animation-delay: 1.3s, 1.3s !important;
}
.badge-monetisation {
  animation-delay: 1s, 1s !important;
}
.badge-branding {
  animation-delay: 1.2s, 1.2s !important;
}
.badge-eleves {
  animation-delay: 1.4s, 1.4s !important;
}

@keyframes badgeReveal {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ── WHATSAPP ── */
.whatsapp-fixed {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
}

.whatsapp-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-fixed a:hover {
  background: #20ba5a;
  transform: scale(1.1);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .badge-float {
    display: none;
  }
  .hero-img-frame img {
    max-height: 300px;
  }
  .hero-visual {
    padding: 0 20px;
  }
  .hero-stats {
    gap: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .badge-float {
    font-size: 0.72rem;
    padding: 7px 14px 7px 8px;
  }
  .badge-float .badge-icon {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  .badge-copywriting {
    left: -10px;
  }
  .badge-ia {
    left: -15px;
  }
  .badge-contenu {
    left: -10px;
  }
  .badge-monetisation {
    right: -10px;
  }
  .badge-branding {
    right: -15px;
  }
  .badge-eleves {
    right: -10px;
  }
} /* ── ABOUT SECTION ── */
.about-section {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Halos décoratifs */
.about-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(122, 158, 135, 0.07) 0%,
    transparent 68%
  );
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(212, 132, 122, 0.07) 0%,
    transparent 68%
  );
  pointer-events: none;
}

/* ── DIVIDER ORNEMENT ── */
.about-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 2rem;
}

.about-ornament .line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(200, 184, 162, 0.6));
}

.about-ornament .line.right {
  background: linear-gradient(90deg, rgba(200, 184, 162, 0.6), transparent);
}

.about-ornament .lotus {
  width: 36px;
  height: 36px;
  color: var(--accent-rose);
  opacity: 0.85;
}

/* ── SECTION TITLE ── */
.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--deep-espresso);
  margin-bottom: 3rem;
  line-height: 1.1;
}

/* ── MAIN CARD ── */
.about-card {
  background: rgba(250, 247, 242, 0.6);
  border: 1px solid rgba(200, 184, 162, 0.28);
  border-radius: 24px;
  padding: 52px 56px;
  position: relative;
  backdrop-filter: blur(8px);
}

/* Accent corner */
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--accent-rose);
  border-left: 2px solid var(--accent-rose);
  border-radius: 24px 0 0 0;
  opacity: 0.5;
}

.about-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid var(--accent-sage);
  border-right: 2px solid var(--accent-sage);
  border-radius: 0 0 24px 0;
  opacity: 0.5;
}

/* ── CITATION ── */
.about-quote {
  position: relative;
  padding: 0 40px;
  margin-bottom: 40px;
}

.about-quote .quote-mark {
  position: absolute;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-rose);
  opacity: 0.25;
  top: -16px;
  left: 0;
  font-weight: 300;
}

.about-quote .quote-mark.close {
  left: auto;
  right: 0;
  top: auto;
  bottom: -30px;
}

.about-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--deep-espresso);
  margin: 0;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ── DIVIDER INTERNE ── */
.about-inner-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 36px 0;
}

.about-inner-divider .div-line {
  flex: 1;
  height: 1px;
  background: rgba(200, 184, 162, 0.35);
}

.about-inner-divider .div-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm-taupe);
  opacity: 0.6;
}

/* ── PROMESSE BLOC ── */
.about-promise-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: 16px;
}

.about-promise-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent-sage);
}

.about-promise-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: #4a3a2e;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-promise-text strong {
  color: var(--deep-espresso);
  font-weight: 500;
}

/* ── VALEURS PILLS ── */
.about-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(200, 184, 162, 0.35);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--deep-espresso);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: default;
}

.value-pill:hover {
  background: var(--soft-sand);
  border-color: var(--warm-taupe);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 31, 20, 0.07);
}

.value-pill .v-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── DÉCOR GÉOMÉTRIQUE ── */
.geo-shape {
  position: absolute;
  pointer-events: none;
}

.geo-diamond {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(212, 132, 122, 0.3);
  transform: rotate(45deg);
  border-radius: 6px;
}

.geo-circle {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(122, 158, 135, 0.3);
  border-radius: 50%;
}

.geo-1 {
  top: 30px;
  right: 60px;
}

.geo-2 {
  bottom: 60px;
  left: 40px;
}

.geo-3 {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/* ── SCROLL REVEAL (fallback visible when JS absent) ── */
.reveal-about,
.reveal-coaching,
.reveal-prest,
.reveal-contact {
  opacity: 1;
  transform: translateY(0);
}

/* ── SCROLL REVEAL ── */
.js .reveal-about {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.js .reveal-about.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-about.delay-1 {
  transition-delay: 0.15s;
}

.reveal-about.delay-2 {
  transition-delay: 0.3s;
}

.reveal-about.delay-3 {
  transition-delay: 0.45s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-card {
    padding: 32px 24px;
  }
  .about-quote {
    padding: 0 20px;
  }
  .about-title {
    font-size: 2rem;
  }
}
/* ── COACHING SECTION ── */
.coaching-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--warm-cream);
}

/* Halo décoratif */
.coaching-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── IMAGE STACK (gauche) ── */
.coaching-img-stack {
  position: relative;
  height: 440px;
}

/* Grande image (nuit) */
.img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(44, 31, 20, 0.18);
  transition: transform 0.6s ease;
}

/* Petite image (jour) — overlap en bas-droite */
.img-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  z-index: 2;
  border: 4px solid var(--warm-cream);
  box-shadow: 0 16px 48px rgba(44, 31, 20, 0.2);
  transition: transform 0.6s ease;
}

.coaching-img-stack:hover .img-back {
  transform: translate(-4px, -4px) scale(1.01);
}

.coaching-img-stack:hover .img-front {
  transform: translate(4px, 4px) scale(1.02);
}

/* Badge flottant sur l'image */
.img-badge {
  position: absolute;
  top: 20px;
  right: 14%;
  z-index: 3;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 184, 162, 0.35);
  border-radius: 999px;
  padding: 8px 18px 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--deep-espresso);
  box-shadow: 0 8px 28px rgba(44, 31, 20, 0.1);
  animation: float-badge 5s ease-in-out infinite;
}

.img-badge .b-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-rose);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Forme géo déco sur l'image */
.img-geo {
  position: absolute;
  bottom: 20px;
  left: -18px;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(212, 132, 122, 0.35);
  border-radius: 8px;
  transform: rotate(45deg);
  z-index: 0;
}

/* ── CONTENU TEXTE (droite) ── */
.coaching-content {
  padding-left: 32px;
}

@media (max-width: 991px) {
  .coaching-content {
    padding-left: 0;
    margin-top: 48px;
  }
  .coaching-img-stack {
    height: 380px;
  }
}

/* Label catégorie */
.coaching-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-rose);
  margin-bottom: 14px;
}

.coaching-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--accent-rose);
}

/* Titre */
.coaching-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--deep-espresso);
  margin-bottom: 8px;
  line-height: 1.1;
}

.coaching-title em {
  font-style: italic;
  color: var(--accent-rose);
  font-weight: 300;
}

/* Ligne accent sous le titre */
.coaching-title-line {
  width: 48px;
  height: 2px;
  background: var(--accent-rose);
  border-radius: 999px;
  margin-bottom: 32px;
  opacity: 0.7;
}

/* Blocs de texte */
.coaching-block {
  position: relative;
  padding-left: 20px;
  margin-bottom: 28px;
}

.coaching-block::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 2px;
  height: calc(100% - 6px);
  background: linear-gradient(180deg, rgba(212, 132, 122, 0.5), transparent);
  border-radius: 999px;
}

.coaching-block p {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.85;
  color: #4a3a2e;
  margin: 0;
}

.coaching-block p strong {
  color: var(--deep-espresso);
  font-weight: 500;
}

/* Bloc séparateur interne */
.coaching-sep {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  opacity: 0.45;
}

.coaching-sep span {
  flex: 1;
  height: 1px;
  background: rgba(200, 184, 162, 0.6);
}

.coaching-sep i {
  font-size: 12px;
  color: var(--warm-taupe);
}

/* Tags thématiques */
.coaching-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.coaching-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(200, 184, 162, 0.45);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #6a5545;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  cursor: default;
}

.coaching-tag:hover {
  background: var(--soft-sand);
  border-color: var(--warm-taupe);
  transform: translateY(-1px);
}

.coaching-tag .t-icon {
  font-size: 11px;
  opacity: 0.7;
}

/* CTA link */
.coaching-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--deep-espresso);
  text-decoration: none;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(44, 31, 20, 0.25);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.coaching-cta-link:hover {
  color: var(--accent-rose);
  border-color: var(--accent-rose);
  gap: 12px;
}

/* Reveal */
.js .reveal-coaching {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.js .reveal-coaching.from-left {
  transform: translateX(-28px);
}

.js .reveal-coaching.from-right {
  transform: translateX(28px);
}

.js .reveal-coaching.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-coaching.delay-1 {
  transition-delay: 0.1s;
}
.reveal-coaching.delay-2 {
  transition-delay: 0.25s;
}
.reveal-coaching.delay-3 {
  transition-delay: 0.4s;
}
.reveal-coaching.delay-4 {
  transition-delay: 0.55s;
}
/* ── PRESTATIONS SECTION ── */
.prestations-section {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--warm-cream);
}

.prestations-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(212, 132, 122, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── HEADER ── */
.prestations-header {
  max-width: 640px;
  margin: 0 auto 64px;
}

.prestations-header .section-intro {
  font-size: 0.93rem;
  line-height: 1.85;
  color: #7a6252;
  margin-top: 16px;
}

/* ── CARD ── */
.prestation-card {
  background: #fff;
  border: 1px solid rgba(200, 184, 162, 0.25);
  border-radius: 22px;
  padding: 36px 28px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.prestation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.prestation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(44, 31, 20, 0.1);
  border-color: rgba(200, 184, 162, 0.5);
}

.prestation-card:hover::before {
  opacity: 1;
}

/* Couleurs d'accent par carte */
.card-rose::before {
  background: linear-gradient(90deg, var(--accent-rose), #e8a89e);
}
.card-sage::before {
  background: linear-gradient(90deg, var(--accent-sage), #a8c8b4);
}
.card-gold::before {
  background: linear-gradient(90deg, var(--accent-gold), #dfc08a);
}
.card-taupe::before {
  background: linear-gradient(90deg, #8090c0, #a8b4d8);
}

/* ── ICON BOX ── */
.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.prestation-card:hover .card-icon-box {
  transform: scale(1.08) rotate(-4deg);
}

.icon-rose {
  background: rgba(212, 132, 122, 0.12);
  color: #c0706a;
}
.icon-sage {
  background: rgba(122, 158, 135, 0.12);
  color: #5a8a6a;
}
.icon-gold {
  background: rgba(201, 169, 110, 0.12);
  color: #b8902a;
}
.icon-slate {
  background: rgba(128, 144, 192, 0.12);
  color: #6070b0;
}

/* ── CARD CONTENT ── */
.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--deep-espresso);
  margin-bottom: 14px;
}

.card-text {
  font-family: var(--font-body);
  font-size: 0.855rem;
  line-height: 1.8;
  color: #7a6252;
  flex: 1;
}

/* ── PRIX TAG ── */
.card-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid rgba(200, 184, 162, 0.4);
  color: var(--deep-espresso);
  background: var(--soft-sand);
  align-self: flex-start;
}

.card-price i {
  font-size: 11px;
  opacity: 0.6;
}

/* ── LINKS ── */
.card-links {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.card-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(200, 184, 162, 0.45);
  color: var(--deep-espresso);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}

.card-link-btn:hover {
  background: var(--deep-espresso);
  color: var(--warm-cream);
  border-color: var(--deep-espresso);
  transform: scale(1.1);
}

/* ── CARD NUMÉRO ── */
.card-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(44, 31, 20, 0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

/* ── DIVIDER TAG ── */
.card-divider {
  width: 28px;
  height: 1.5px;
  border-radius: 999px;
  margin: 12px 0 16px;
  opacity: 0.6;
}

/* ── REVEAL ── */
.js .reveal-prest {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.js .reveal-prest.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-prest.d1 {
  transition-delay: 0s;
}
.reveal-prest.d2 {
  transition-delay: 0.12s;
}
.reveal-prest.d3 {
  transition-delay: 0.24s;
}
.reveal-prest.d4 {
  transition-delay: 0.36s;
}
.reveal-prest.d5 {
  transition-delay: 0.48s;
}
/* ══════════════════════════════
   TÉMOIGNAGES
══════════════════════════════ */
.temoignages-section {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.temoignages-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(212, 132, 122, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Slider wrapper */
.temoignages-track-wrapper {
  overflow: hidden;
  position: relative;
}

.temoignages-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Carte témoignage */
.temoignage-card {
  min-width: 100%;
  padding: 0 12px;
}

.temoignage-inner {
  background: #fff;
  border: 1px solid rgba(200, 184, 162, 0.25);
  border-radius: 22px;
  padding: 40px 44px 36px;
  position: relative;
  transition: box-shadow 0.3s;
}

.temoignage-inner:hover {
  box-shadow: 0 20px 50px rgba(44, 31, 20, 0.08);
}

/* Guillemet décoratif */
.temo-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.8;
  color: var(--accent-rose);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 32px;
  pointer-events: none;
  font-weight: 300;
}

/* Étoiles */
.temo-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.temo-stars i {
  font-size: 13px;
  color: var(--accent-gold);
}

/* Texte citation */
.temo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--deep-espresso);
  margin: 0 0 24px;
  padding-left: 8px;
}

/* Auteur */
.temo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.temo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.temo-author-info .name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--deep-espresso);
}

.temo-author-info .meta {
  font-size: 0.75rem;
  color: var(--warm-taupe);
  margin-top: 1px;
}

/* Contrôles slider */
.temo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.temo-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200, 184, 162, 0.4);
  background: #fff;
  color: var(--deep-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}

.temo-btn:hover {
  background: var(--deep-espresso);
  color: var(--warm-cream);
  border-color: var(--deep-espresso);
  transform: scale(1.08);
}

.temo-dots {
  display: flex;
  gap: 6px;
}

.temo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(200, 184, 162, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.temo-dot.active {
  width: 20px;
  border-radius: 999px;
  background: var(--accent-rose);
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-section {
  padding: 90px 0 100px;
  background: var(--soft-sand);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(122, 158, 135, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Col gauche */
.contact-info-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-rose);
  margin-bottom: 6px;
}
.contact-info-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--accent-rose);
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--deep-espresso);
  margin-bottom: 8px;
}

.contact-title-line {
  width: 40px;
  height: 2px;
  background: var(--accent-rose);
  border-radius: 999px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.contact-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #7a6252;
  max-width: 320px;
  margin-bottom: 32px;
}

/* Coordonnées */
.contact-coords {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-coord-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--deep-espresso);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-coord-item:hover {
  color: var(--accent-rose);
}

.coord-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(200, 184, 162, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.contact-coord-item:hover .coord-icon {
  background: var(--accent-rose);
  color: #fff;
  border-color: var(--accent-rose);
}

/* Formulaire */
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(200, 184, 162, 0.25);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 16px 48px rgba(44, 31, 20, 0.07);
  position: relative;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-rose), var(--accent-sage));
  border-radius: 24px 24px 0 0;
}

.form-label-custom {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--warm-taupe);
  margin-bottom: 6px;
}

.form-control-custom {
  width: 100%;
  background: var(--warm-cream);
  border: 1px solid rgba(200, 184, 162, 0.35);
  border-radius: 12px;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--deep-espresso);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  resize: none;
}

.form-control-custom::placeholder {
  color: rgba(122, 98, 82, 0.4);
}

.form-control-custom:focus {
  border-color: var(--accent-rose);
  box-shadow: 0 0 0 3px rgba(212, 132, 122, 0.12);
  background: #fff;
}

.form-group-custom {
  margin-bottom: 18px;
}

.btn-submit {
  width: 100%;
  background: var(--deep-espresso);
  color: var(--warm-cream);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 6px;
}

.btn-submit:hover {
  background: var(--accent-rose);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 132, 122, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.form-success .success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(122, 158, 135, 0.15);
  color: var(--accent-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

/* Reveal */
.js .reveal-contact {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.js .reveal-contact.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-contact.d1 {
  transition-delay: 0s;
}
.reveal-contact.d2 {
  transition-delay: 0.15s;
}
.reveal-contact.d3 {
  transition-delay: 0.3s;
}
/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--deep-espresso);
  color: rgba(250, 247, 242, 0.75);
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

/* Halos décoratifs */
.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 132, 122, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(122, 158, 135, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* ── TOP BAND ── */
.footer-top {
  padding: 64px 0 52px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.07);
  position: relative;
  z-index: 1;
}

/* Brand block */
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--warm-cream);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.footer-brand-name span {
  color: var(--accent-rose);
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.35);
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.55);
  max-width: 300px;
  margin-bottom: 28px;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(250, 247, 242, 0.12);
  background: rgba(250, 247, 242, 0.04);
  color: rgba(250, 247, 242, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: var(--accent-rose);
  border-color: var(--accent-rose);
  color: #fff;
  transform: translateY(-3px);
}

/* ── COLONNES LIENS ── */
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(250, 247, 242, 0.07);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    color 0.25s,
    gap 0.25s;
}

.footer-links li a::before {
  content: "→";
  font-size: 11px;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.25s,
    transform 0.25s;
}

.footer-links li a:hover {
  color: var(--warm-cream);
  gap: 10px;
}

.footer-links li a:hover::before {
  opacity: 0.5;
  transform: translateX(0);
}

/* ── NEWSLETTER ── */
.footer-newsletter-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--warm-cream);
  margin-bottom: 6px;
}

.footer-newsletter-sub {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.45);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(250, 247, 242, 0.04);
  transition: border-color 0.3s;
}

.footer-newsletter-form:focus-within {
  border-color: rgba(212, 132, 122, 0.5);
}

.footer-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--warm-cream);
}

.footer-newsletter-input::placeholder {
  color: rgba(250, 247, 242, 0.3);
}

.footer-newsletter-btn {
  background: var(--accent-rose);
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  margin: 3px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition:
    background 0.3s,
    transform 0.2s;
}

.footer-newsletter-btn:hover {
  background: #c0706a;
  transform: scale(1.03);
}

/* ── BADGES VALEURS ── */
.footer-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-value-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(250, 247, 242, 0.05);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.45);
  letter-spacing: 0.03em;
}

.footer-value-tag i {
  font-size: 10px;
}

/* ── DIVIDER ORNEMENT ── */
.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 0;
  position: relative;
  z-index: 1;
}

.footer-divider .f-line {
  flex: 1;
  height: 1px;
  background: rgba(250, 247, 242, 0.06);
}

.footer-divider .f-lotus {
  color: var(--accent-rose);
  opacity: 0.4;
  width: 28px;
  height: 28px;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  padding: 20px 0 28px;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.3);
  letter-spacing: 0.03em;
}

.footer-copy span {
  color: rgba(250, 247, 242, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.3);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.footer-legal-links a:hover {
  color: rgba(250, 247, 242, 0.7);
}

/* Scroll-to-top */
.footer-scroll-top {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 242, 0.12);
  background: rgba(250, 247, 242, 0.05);
  color: rgba(250, 247, 242, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-scroll-top:hover {
  background: var(--accent-rose);
  border-color: var(--accent-rose);
  color: #fff;
  transform: translateY(-3px);
}

/* ── MADE WITH ── */
.footer-made {
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.2);
  text-align: center;
  padding-bottom: 16px;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.footer-made span {
  color: var(--accent-rose);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
}
#scrollTop {
  position: fixed;
  right: 28px;
  bottom: 92px;
  z-index: 998;
  width: 52px;
  height: 52px;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.8);
  transition:
    opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0.4s;
}

#scrollTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#scrollTop .st-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2c1f14;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

#scrollTop:hover .st-circle {
  background: #d4847a;
  transform: scale(1.1);
}

#scrollTop:active .st-circle {
  transform: scale(0.93);
}

#scrollTop .st-ring {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  transform: rotate(-90deg);
  pointer-events: none;
}

.st-ring-track {
  fill: none;
  stroke: rgba(44, 31, 20, 0.12);
  stroke-width: 2.5;
}

.st-ring-fill {
  fill: none;
  stroke: #d4847a;
  stroke-width: 2.5;
  stroke-linecap: round;
}

#scrollTop .st-arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

#scrollTop:hover .st-arrow {
  transform: translateY(-2px);
}

#scrollTop .st-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

@media (max-width: 600px) {
  #scrollTop {
    width: 46px;
    height: 46px;
    bottom: 88px;
    right: 16px;
  }
}
.nav-close-btn {
  display: none;
}

/* ── CONTACT (nouvelle version) ── */
.contact-section {
  padding: 90px 0 100px;
  background: var(--soft-sand);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(122, 158, 135, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.contact-section::after {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(212, 132, 122, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Label */
.contact-info-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-rose);
  margin-bottom: 6px;
}
.contact-info-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--accent-rose);
}

/* Titre */
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--deep-espresso);
  margin-bottom: 8px;
}
.contact-title-line {
  width: 40px;
  height: 2px;
  background: var(--accent-rose);
  border-radius: 999px;
  margin-bottom: 20px;
  opacity: 0.7;
}
.contact-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #7a6252;
  max-width: 300px;
  margin-bottom: 32px;
}

/* Cards coordonnées */
.contact-coord-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(200, 184, 162, 0.3);
  border-radius: 16px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--deep-espresso);
  transition: all 0.3s ease;
}
.contact-coord-card:hover {
  background: #fff;
  border-color: var(--warm-taupe);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(44, 31, 20, 0.08);
  color: var(--deep-espresso);
}
.coord-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.coord-meta {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-taupe);
  margin-bottom: 2px;
}
.coord-value {
  font-size: 0.875rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.coord-arrow {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.3;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.contact-coord-card:hover .coord-arrow {
  opacity: 0.7;
  transform: translateX(3px);
}

/* Colonne droite */
.contact-quote-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(200, 184, 162, 0.25);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}
.contact-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--accent-rose);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 20px;
  font-weight: 300;
  pointer-events: none;
}
.contact-quote-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--deep-espresso);
  margin: 0;
  padding-left: 8px;
  position: relative;
  z-index: 1;
}
.contact-quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 184, 162, 0.2);
}
.contact-quote-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 132, 122, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-hours-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(200, 184, 162, 0.25);
  border-radius: 20px;
  padding: 24px 28px;
}
.contact-available-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-sage);
  animation: pulse-dot 2s ease-in-out infinite;
}
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-hours-row span:first-child {
  font-size: 0.85rem;
  color: #7a6252;
}
.contact-hours-row span:last-child {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--deep-espresso);
}
.contact-hours-divider {
  height: 1px;
  background: rgba(200, 184, 162, 0.25);
  margin: 10px 0;
}
.contact-sous24 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(122, 158, 135, 0.1);
  border: 1px solid rgba(122, 158, 135, 0.25);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.78rem;
  color: #5a8a6a;
  font-weight: 500;
}

.contact-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--deep-espresso);
  color: var(--warm-cream);
  border-radius: 999px;
  padding: 15px 28px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.contact-cta-btn:hover {
  background: var(--accent-rose);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 132, 122, 0.3);
}
.contact-cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}
.cta-arrow {
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0 72px;
  }
}
