/* ============================================
   ÇA SENT LE PROPRE — Premium Organic Design
   Palette: Navy #0A1F44 | Royal #1565C0 | Cyan #17C3E8 | White #FFFFFF
   Typography: Cormorant Garamond (headings) + DM Sans (body)
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0A1F44;
  --royal: #1565C0;
  --cyan: #17C3E8;
  --white: #FFFFFF;
  --cream: #FAFBFD;
  --marble: #F3F1EE;
  --gray-100: #EDEEF2;
  --gray-200: #D5D8E0;
  --gray-400: #8A90A0;
  --gray-600: #525868;
  --gray-800: #1E2A3A;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow-soft: 0 20px 60px -15px rgba(10, 31, 68, 0.08);
  --shadow-card: 0 8px 40px -10px rgba(10, 31, 68, 0.07);
  --shadow-elevated: 0 30px 70px -20px rgba(10, 31, 68, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
}

p {
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1.5px;
  background: var(--cyan);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.45s var(--ease);
  letter-spacing: 0.01em;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--royal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px -8px rgba(21, 101, 192, 0.35);
}

.btn-primary:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.1s;
}


.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 31, 68, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(23, 195, 232, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--cyan);
  transition: width 0.4s var(--ease);
}

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

.nav-links a:hover::after {
  width: 100%;
}

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

.btn-nav-devis {
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
  background: var(--cyan);
  color: var(--navy);
  border-radius: 100px;
  font-weight: 600;
}

.btn-nav-devis:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.btn-nav-phone {
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-weight: 500;
}

.btn-nav-phone svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn-nav-phone:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-1px);
}

.btn-nav-phone:hover svg {
  transform: rotate(-10deg) scale(1.1);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transform: scale(1.05);
  transition: transform 12s ease-out;
  will-change: transform;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--navy) 0%, rgba(10, 31, 68, 0.6) 40%, rgba(10, 31, 68, 0.3) 100%);
  z-index: 1;
}

/* Marble-like texture overlay */
.hero-marble {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  background-image:
    url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.015' numOctaves='6' seed='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23m)'/%3E%3C/svg%3E");
  background-size: 400px 400px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 0 6rem;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.hero-label::before {
  content: '';
  width: 2rem;
  height: 1.5px;
  background: var(--cyan);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero h1 em {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--royal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   SECTIONS — Shared
   ============================================ */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header p {
  margin-top: 1rem;
  color: var(--gray-400);
}

/* ============================================
   MARQUEE BAND
   ============================================ */
.marquee-band {
  background: var(--navy);
  border-top: 1px solid rgba(23, 195, 232, 0.08);
  border-bottom: 1px solid rgba(23, 195, 232, 0.08);
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
}

/* Faded edges */
.marquee-band::before,
.marquee-band::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-band::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

.marquee-band::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.6;
  flex-shrink: 0;
}

.marquee-item--badge {
  color: rgba(255, 255, 255, 0.85);
}

.marquee-badge-img {
  height: 30px;
  width: auto;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.marquee-band:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-band:hover .marquee-item {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ABOUT / QUI SOMMES-NOUS
   ============================================ */
.about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 3.5rem;
}

/* Natural marble texture */
.about-texture {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='5' seed='8' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23m)'/%3E%3C/svg%3E");
  background-size: 600px 600px;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-elevated);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.about-image:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(10, 31, 68, 0.88);
  backdrop-filter: blur(16px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(23, 195, 232, 0.12);
}

.about-badge-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.about-badge-text {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-text {
  margin-bottom: 0.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 195, 232, 0.06);
  border: 1px solid rgba(23, 195, 232, 0.1);
  border-radius: 14px;
  color: var(--cyan);
  transition: all 0.4s var(--ease);
}

.about-feature:hover .about-feature-icon {
  background: rgba(23, 195, 232, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(23, 195, 232, 0.15);
}

.about-feature h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  letter-spacing: 0;
}

.about-feature p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-400);
}

/* About — nouvelle structure centrée */
.about-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.about-intro .section-label {
  justify-content: center;
}

.about-body {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-body p {
  max-width: 100%;
}

.about-highlight {
  background: rgba(23, 195, 232, 0.06);
  border: 1px solid rgba(23, 195, 232, 0.12);
  border-left-width: 3px;
  border-left-color: var(--cyan);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.about-highlight p {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  max-width: 100%;
  margin: 0;
}

.about-highlight--sap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sap-badge-img {
  width: 110px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .about-highlight--sap {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  transition: all 0.4s var(--ease);
}

.about-card:hover {
  border-color: rgba(23, 195, 232, 0.2);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.about-card:hover .about-feature-icon {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}

/* ── Spotlight glow — about-cards ─────────────────────────── */

/* z-index:0 crée un contexte d'empilement stable pour ::before/-1 */
.about-card { position: relative; z-index: 0; }

/* ① Halo extérieur — aura qui déborde de 5px autour de la carte */
.about-card::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: calc(var(--radius-md) + 5px);
  background: radial-gradient(
    330px 330px at var(--cx, -999px) var(--cy, -999px),
    rgba(23, 195, 232, 0.45)  0%,
    rgba(21, 101, 192, 0.22) 40%,
    transparent 65%
  );
  z-index: -1;          /* derrière le fond blanc de la carte */
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* ② Spotlight intérieur — lueur douce qui suit le curseur sur le fond */
.about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: radial-gradient(
    300px 300px at var(--cx, -999px) var(--cy, -999px),
    rgba(23, 195, 232, 0.20) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Révèle les deux effets au survol */
.about-card:hover::before,
.about-card:hover::after {
  opacity: 1;
}

/* ── Fin spotlight glow ────────────────────────────────────── */

.about-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.85rem 0 0.35rem;
  letter-spacing: 0;
}

.about-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-400);
  max-width: 100%;
}

.about-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--gray-200);
}

.about-founder {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.about-founder img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.about-founder-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cyan);
}

.about-founder-role {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--gray-600);
}

.about-founder p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-top: 0.5rem;
  max-width: 100%;
}

.about-transition {
  justify-content: center;
  margin-bottom: 1.75rem;
}

/* ============================================
   PRESTATIONS
   ============================================ */
.prestations {
  background: var(--white);
}

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.presta-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

.presta-card:hover {
  border-color: rgba(23, 195, 232, 0.15);
  box-shadow: var(--shadow-elevated);
  transform: translateY(-6px);
}

.presta-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.presta-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.presta-card:hover .presta-card-img img {
  transform: scale(1.06);
}

.presta-card-body {
  padding: 2rem 2rem 2.25rem;
}

.presta-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 195, 232, 0.06);
  border: 1px solid rgba(23, 195, 232, 0.1);
  border-radius: 14px;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  transition: all 0.4s var(--ease);
}

.presta-card:hover .presta-icon {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
  transform: rotate(-5deg) scale(1.05);
}

.presta-card-body h3 {
  margin-bottom: 0.6rem;
}

.presta-card-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-400);
}

/* ============================================
   GALERIE
   ============================================ */
.galerie {
  background: var(--cream);
  overflow: hidden;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.galerie-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.galerie-item:hover img {
  transform: scale(1.06);
}

.galerie-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 68, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.galerie-item:hover::after {
  opacity: 1;
}

.galerie-item-tall {
  grid-row: span 2;
}

/* ============================================
   AVIS & LOCALISATION
   ============================================ */
.avis {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.avis-texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    url("data:image/svg+xml,%3Csvg width='500' height='500' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.02' numOctaves='4' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23m)'/%3E%3C/svg%3E");
  background-size: 500px 500px;
  pointer-events: none;
}

.avis .section-label {
  color: var(--cyan);
}

.avis h2 {
  color: var(--white);
  margin-bottom: 3.5rem;
}

.avis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Avis cards container (legacy — conservé pour le backup) */
.avis-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ── Colonnes défilantes ──────────────────────────────────── */
@keyframes avis-scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Wrapper : masque en dégradé haut/bas, débordement caché */
.avis-columns-wrapper {
  display: flex;
  gap: 1.25rem;
  max-height: 520px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 18%,
    black 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 18%,
    black 82%,
    transparent 100%
  );
}

/* Chaque colonne */
.avis-column {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

/* Colonne 2 : masquée en dessous de 900px */
.avis-col-2 {
  display: none;
}
@media (min-width: 900px) {
  .avis-col-2 { display: block; }
}

/* La piste qui défile — contient 2× les cartes pour boucle sans saut */
.avis-column-track {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  animation: avis-scroll-up 16s linear infinite;
}

/* Pause au survol */
.avis-columns-wrapper:hover .avis-column-track {
  animation-play-state: paused;
}
/* ── Fin colonnes défilantes ──────────────────────────────── */

/* Hidden avis (toggle) */
.avis-hidden {
  display: none;
}
.avis-hidden.avis-show {
  display: block;
}

/* Toggle button */
.avis-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem auto 0;
  padding: 0.75rem 1.8rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.avis-toggle-btn:hover {
  background: rgba(23, 195, 232, 0.08);
  border-color: var(--cyan);
}
.avis-toggle-btn svg {
  transition: transform 0.3s ease;
}
.avis-toggle-btn.active svg {
  transform: rotate(180deg);
}

.avis-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.avis-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(23, 195, 232, 0.15);
}

.avis-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
  color: var(--cyan);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.avis-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.avis-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.avis-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.avis-source {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--cyan);
  padding: 0.2rem 0.7rem;
  border: 1px solid rgba(23, 195, 232, 0.25);
  border-radius: 2rem;
}

.avis-map-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.avis-map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.avis-map-wrapper iframe {
  display: block;
}

.avis-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.avis-link-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.avis-link-btn:hover {
  background: rgba(23, 195, 232, 0.08);
  border-color: rgba(23, 195, 232, 0.25);
  transform: translateY(-1px);
}

.avis-link-btn svg {
  flex-shrink: 0;
  color: var(--cyan);
}

.avis-link-review {
  background: var(--cyan) !important;
  border-color: var(--cyan) !important;
  color: var(--navy) !important;
  font-weight: 700;
}

.avis-link-review svg {
  color: var(--navy) !important;
}

.avis-link-review:hover {
  background: var(--royal) !important;
  border-color: var(--royal) !important;
  color: var(--white) !important;
}

.avis-link-review:hover svg {
  color: var(--white) !important;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-texture {
  position: absolute;
  inset: 0;
  opacity: 0.018;
  background-image:
    url("data:image/svg+xml,%3Csvg width='500' height='500' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.02' numOctaves='4' seed='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23m)'/%3E%3C/svg%3E");
  background-size: 500px 500px;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  margin-bottom: 2.5rem;
  color: var(--gray-400);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: all 0.35s var(--ease);
}

.contact-detail:hover {
  border-color: rgba(23, 195, 232, 0.15);
  box-shadow: var(--shadow-card);
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 195, 232, 0.07);
  border-radius: 12px;
  color: var(--cyan);
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-detail-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 0.1rem;
}

/* --- Form --- */
.contact-form {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--navy);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(23, 195, 232, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* ── Form chips ──────────────────────────────────────────── */
.form-chip-hint {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-400);
  margin-left: 0.4rem;
  text-transform: none;
  letter-spacing: 0;
}

.form-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.form-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.22s ease;
  line-height: 1;
  white-space: nowrap;
}

.form-chip svg {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: color 0.22s ease;
}

.form-chip:hover {
  border-color: rgba(23, 195, 232, 0.5);
  background: rgba(23, 195, 232, 0.04);
  color: var(--navy);
}

.form-chip:hover svg {
  color: var(--cyan);
}

.form-chip.active {
  border-color: var(--cyan);
  background: rgba(23, 195, 232, 0.08);
  color: var(--navy);
  font-weight: 600;
}

.form-chip.active svg {
  color: var(--cyan);
}

/* Petits chips (bien + surface) */
.form-chip-sm {
  font-size: 0.8rem;
  padding: 0.45rem 0.85rem;
}

/* Row adaptée aux blocs bien+surface */
.form-row-chips {
  gap: 1.5rem;
  align-items: flex-start;
}

/* ── Fin form chips ──────────────────────────────────────── */

/* ── Badge Google avis ───────────────────────────────────── */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.1rem 0.6rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  width: fit-content;
}

.google-badge:hover {
  transform: translateY(-2px);
}

/* Variante hero (fond sombre) */
.google-badge--hero {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  margin-left: 0.5rem;
}

.google-badge--hero:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

/* Variante contact (fond clair) */
.google-badge--light {
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.google-badge--light:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  border-color: var(--gray-300);
}

/* Logo G */
.google-badge__logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Séparateur vertical */
.google-badge__sep {
  width: 1px;
  height: 28px;
  flex-shrink: 0;
}

.google-badge--hero .google-badge__sep {
  background: rgba(255,255,255,0.22);
}

.google-badge--light .google-badge__sep {
  background: var(--gray-200);
}

/* Contenu texte */
.google-badge__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.google-badge__stars {
  font-size: 0.9rem;
  color: #FBBC04;
  letter-spacing: 1px;
}

.google-badge__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.google-badge--hero .google-badge__text {
  color: rgba(255,255,255,0.82);
}

.google-badge--light .google-badge__text {
  color: var(--gray-500);
}
/* ── Fin badge Google ────────────────────────────────────── */

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  padding-top: 0.35rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  margin: 0 auto;
}

.footer-legal {
  margin-top: 0.35rem !important;
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.15) !important;
  letter-spacing: 0.03em;
}

.avis-micro-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ============================================
   TEXT REVEAL — Word-by-word stagger
   ============================================ */
.text-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
}

.text-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease);
  will-change: transform;
}

.text-reveal.revealed .word-inner {
  transform: translateY(0);
}

/* Hero h1 — white text, gradient on em */
.hero .text-reveal .word-inner {
  color: var(--white);
}

.hero .text-reveal em .word-inner {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--royal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--cream);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header .section-label {
  justify-content: center;
}

.faq-header h2 {
  margin-bottom: 1rem;
}

.faq-header p {
  margin: 0 auto;
  color: var(--gray-400);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-item.open {
  border-color: rgba(23, 195, 232, 0.2);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--cyan);
}

.faq-item.open .faq-question {
  color: var(--cyan);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 195, 232, 0.06);
  border: 1px solid rgba(23, 195, 232, 0.1);
  border-radius: 50%;
  color: var(--cyan);
  transition: all 0.4s var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--cyan);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-answer-inner {
  padding: 1.25rem 2rem 1.75rem;
  border-top: 1px solid var(--gray-100);
}

.faq-answer-inner p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-600);
  max-width: 100%;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding-top: 3rem;
  text-align: center;
}

.cta-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.3s var(--ease);
}

.cta-secondary svg {
  color: var(--cyan);
  transition: transform 0.3s var(--ease);
}

.cta-secondary:hover {
  color: var(--navy);
}

.cta-secondary:hover svg {
  transform: scale(1.15);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .about-grid,
  .contact-grid,
  .avis-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .galerie-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .galerie-item-tall {
    grid-row: span 2;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  /* Nav mobile */
  .nav-links,
  .nav-ctas {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(10, 31, 68, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--white);
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero mobile */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-bottom: 4rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  /* About */
  .about-grid {
    gap: 2.5rem;
  }

  /* Gallery */
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .galerie-item-tall {
    grid-row: span 2;
  }

  .about-founders {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  /* Footer */
  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
  }

  .galerie-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
}
