/* ════════════════════════════════════════════════════════════════════
   INSTITUT LOUXIE BEAUTÉ — Feuille de style
   Direction artistique : cerisier en fleurs · rose poudré · prune
   Typo : Pinyon Script (accent) · Cormorant Garamond (display) · Jost (corps)
   ════════════════════════════════════════════════════════════════════ */

/* ────────────────────── Variables ────────────────────── */
:root {
  /* Palette — fleurs de cerisier */
  --ivory:        #FDF8F5;      /* Fond principal */
  --pearl:        #FAEEEB;      /* Fond crème rosé */
  --blush:        #F5DDD9;      /* Rose poudré */
  --rose-pale:    #EDC9CD;      /* Rose pâle */
  --rose:         #DDA0AB;      /* Rose fleur de cerisier */
  --rose-deep:    #B97A86;      /* Rose foncé */
  --plum-light:   #8D5479;      /* Prune clair */
  --plum:         #5A2E50;      /* Prune (couleur du logo) */
  --aubergine:    #3D1F36;      /* Aubergine profonde (rideaux) */
  --violet-dark:  #2A1525;      /* Presque noir */
  --taupe:        #8A7466;      /* Neutre chaud */
  --cream-dim:    #EEE3DD;      /* Crème éteint */

  --font-script:  'Pinyon Script', cursive;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Raleway', sans-serif;

  /* Courbes d'animation très douces */
  --ease-soft:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-gentle:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-silk:    cubic-bezier(0.25, 0.1, 0.25, 1);

  --t-fast:       0.5s var(--ease-soft);
  --t-med:        0.9s var(--ease-soft);
  --t-slow:       1.4s var(--ease-gentle);

  --shadow:       0 4px 30px rgba(90, 46, 80, 0.07);
  --shadow-soft:  0 10px 50px rgba(90, 46, 80, 0.10);
  --shadow-lg:    0 20px 70px rgba(90, 46, 80, 0.14);
  --r:            3px;
  --r-lg:         8px;

  --max-w: 1240px;
  --pad:   clamp(1.2rem, 4vw, 2.5rem);
}

/* ────────────────────── Reset ────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--violet-dark);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ────────────────────── Helpers ────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ────────────────────── Typographie ────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--rose-pale); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--plum);
  margin-bottom: 1.4rem;
  letter-spacing: -0.005em;
}
.section-title em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.25em;
  font-weight: 400;
  color: var(--rose-deep);
  line-height: 0.9;
  display: inline-block;
  margin-top: 0.2em;
}
.section-title--light { color: var(--ivory); }
.section-title--light em { color: var(--rose-pale); }

/* ────────────────────── Boutons ────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast);
  will-change: transform;
}
.btn--solid {
  background: var(--plum);
  color: var(--ivory);
  box-shadow: 0 6px 24px rgba(90,46,80,0.18);
}
.btn--solid:hover {
  background: var(--rose-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(185,122,134,0.32);
}
.btn--outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(253,248,245,0.6);
}
.btn--outline:hover {
  background: rgba(253,248,245,0.1);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

/* ────────────────────── Reveal (très doux) ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-gentle),
              transform 1.2s var(--ease-gentle);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════════
   PÉTALES FLOTTANTS (toute la page)
   ════════════════════════════════════════════════════════════════════ */
.petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 800;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -40px;
  width: 16px;
  height: 16px;
  background: radial-gradient(ellipse at 50% 35%, #FDECEF 0%, #F0B8C2 65%, #DDA0AB 100%);
  border-radius: 75% 25% 75% 25%;
  opacity: 0.7;
  filter: drop-shadow(0 1px 2px rgba(185,122,134,0.15));
  animation: petalFall linear infinite, petalSway ease-in-out infinite alternate;
}
@keyframes petalFall {
  0%   { transform: translateY(-40px) rotate(0deg); }
  100% { transform: translateY(110vh) rotate(720deg); }
}
@keyframes petalSway {
  0%   { margin-left: -20px; }
  100% { margin-left: 20px; }
}

/* ════════════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 900;
  padding: 1.2rem var(--pad);
  transition: background 0.6s var(--ease-soft),
              padding 0.6s var(--ease-soft),
              box-shadow 0.6s var(--ease-soft),
              backdrop-filter 0.6s var(--ease-soft);
}
.nav.scrolled {
  background: rgba(253,248,245,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.6rem var(--pad);
  box-shadow: 0 1px 24px rgba(90,46,80,0.07);
}
.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: block; }
.nav__logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(90,46,80,0.18));
  transition: height 0.6s var(--ease-soft), filter 0.6s var(--ease-soft);
}
.nav.scrolled .nav__logo-img {
  height: 46px;
  filter: drop-shadow(0 1px 4px rgba(90,46,80,0.10));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--t-fast);
}
.nav:not(.scrolled) .nav__links a { color: var(--ivory); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--rose-deep);
  transition: width 0.7s var(--ease-gentle), left 0.7s var(--ease-gentle);
}
.nav__links a:hover { color: var(--rose-deep); }
.nav__links a:hover::after { width: 100%; left: 0; }
.nav:not(.scrolled) .nav__links a:hover { color: var(--rose-pale); }
.nav:not(.scrolled) .nav__links a::after { background: var(--rose-pale); }

.nav__cta {
  background: var(--plum) !important;
  color: var(--ivory) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: var(--r);
  letter-spacing: 0.16em !important;
  transition: background var(--t-fast), transform var(--t-fast) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--rose-deep) !important;
  color: var(--ivory) !important;
  transform: translateY(-2px);
}
.nav:not(.scrolled) .nav__cta {
  background: rgba(253,248,245,0.92) !important;
  color: var(--plum) !important;
}
.nav:not(.scrolled) .nav__cta:hover {
  background: var(--ivory) !important;
  color: var(--plum) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--plum);
  transition: background var(--t-fast),
              transform 0.7s var(--ease-gentle),
              opacity 0.7s var(--ease-gentle);
  transform-origin: center;
}
.nav:not(.scrolled) .nav__hamburger span { background: var(--ivory); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 92vw);
  height: 100dvh;
  background: var(--ivory);
  z-index: 950;
  padding: 4.5rem 2.5rem 2.5rem;
  transform: translateX(110%);
  transition: transform 0.9s var(--ease-gentle);
  box-shadow: -8px 0 40px rgba(90,46,80,0.18);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  font-size: 1.3rem;
  color: var(--plum-light);
  transition: color var(--t-fast), transform var(--t-fast);
}
.mobile-menu__close:hover { color: var(--rose-deep); transform: rotate(90deg); }
.mobile-menu__logo {
  width: 150px;
  margin: 0 auto 2rem;
  opacity: 0.85;
}
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--plum);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--blush);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mobile-link:hover {
  color: var(--rose-deep);
  padding-left: 0.6rem;
}
.mobile-link--cta {
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep) !important;
  border-bottom: none !important;
  margin-top: 0.8rem;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58,29,53,0.45);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-soft);
  backdrop-filter: blur(2px);
}
.mobile-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(221,160,171,0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(141,84,121,0.25) 0%, transparent 55%),
    linear-gradient(160deg, #3D1F36 0%, #5A2E50 40%, #8D5479 100%);
  isolation: isolate;
}

/* Halo doux animé en arrière-plan */
.hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 25% 30%, rgba(245,221,217,0.25) 0%, transparent 35%),
    radial-gradient(circle at 75% 65%, rgba(237,201,205,0.22) 0%, transparent 40%);
  animation: heroBreath 14s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroBreath {
  0%   { transform: scale(1)   translate(0,0);     opacity: 1; }
  100% { transform: scale(1.08) translate(2%,-1%); opacity: 0.85; }
}

/* Branches de cerisier */
.hero__branch {
  position: absolute;
  width: clamp(280px, 38vw, 500px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 18px rgba(58,29,53,0.4));
  animation: branchSway 9s ease-in-out infinite alternate;
}
.hero__branch--left {
  top: -2%;
  left: -4%;
  transform-origin: top left;
  opacity: 0;
  animation: branchEntryLeft 2.5s var(--ease-gentle) 0.3s forwards,
             branchSway 9s ease-in-out 2.8s infinite alternate;
}
.hero__branch--right {
  bottom: -3%;
  right: -4%;
  transform-origin: bottom right;
  opacity: 0;
  animation: branchEntryRight 2.5s var(--ease-gentle) 0.6s forwards,
             branchSway 11s ease-in-out 3.1s infinite alternate;
}
@keyframes branchEntryLeft {
  0%   { opacity: 0; transform: translate(-30px, -20px) rotate(-2deg) scale(0.95); }
  100% { opacity: 1; transform: translate(0,0) rotate(0) scale(1); }
}
@keyframes branchEntryRight {
  0%   { opacity: 0; transform: translate(30px, 20px) rotate(2deg) scale(0.95); }
  100% { opacity: 1; transform: translate(0,0) rotate(0) scale(1); }
}
@keyframes branchSway {
  0%   { transform: rotate(-0.6deg); }
  100% { transform: rotate(0.6deg); }
}

/* Contenu du hero */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 4rem;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-pale);
  margin-bottom: 2rem;
}
.hero__title {
  margin-bottom: 1.8rem;
  line-height: 1;
}
.hero__title-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--rose-pale);
  font-weight: 400;
  line-height: 1;
  margin-bottom: -0.5rem;
  transform-origin: center;
}
.hero__title-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.01em;
  line-height: 1.05;
}
.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  color: rgba(253,248,245,0.85);
  line-height: 1.7;
  margin-bottom: 2.8rem;
}
.hero__actions {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Indicateur de défilement */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(253,248,245,0.5);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero__scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(253,248,245,0.55), transparent);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scaleY(1); }
  50%      { opacity: 0.3; transform: scaleY(0.5); }
}

/* ════════════════════════════════════════════════════════════════════
   ÉLÉMENTS DÉCORATIFS DE SECTION
   ════════════════════════════════════════════════════════════════════ */
.section-decor {
  position: absolute;
  width: clamp(140px, 18vw, 240px);
  height: auto;
  opacity: 0.18;
  pointer-events: none;
}
.section-decor--tl { top: 40px; left: -40px; }

/* Ornement central avec fleur */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
  background: var(--ivory);
}
.ornament__line {
  height: 1px;
  width: clamp(40px, 10vw, 120px);
  background: linear-gradient(to right, transparent, var(--rose-pale), transparent);
}
.ornament__flower {
  width: 32px;
  height: 32px;
  animation: spinSlow 22s linear infinite;
}
@keyframes spinSlow {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}

/* ════════════════════════════════════════════════════════════════════
   À PROPOS
   ════════════════════════════════════════════════════════════════════ */
.about {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  background: var(--ivory);
  overflow: hidden;
}
.about__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about__head { margin-bottom: 3.5rem; }
.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  text-align: left;
  margin-bottom: 3.5rem;
  position: relative;
}
.about__body::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--rose-pale), transparent);
}
.about__col p {
  color: var(--taupe);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.about__col p:last-child { margin-bottom: 0; }

.about__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--pearl) 0%, var(--blush) 100%);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--plum);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum-light);
  margin-top: 0.5rem;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--rose-pale);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════
   L'ESPACE (vraie photo de la cabine)
   ════════════════════════════════════════════════════════════════════ */
.space {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--pearl) 100%);
}
.space__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.space__visual {
  position: relative;
}
.space__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--ivory);
  outline: 1px solid var(--rose-pale);
}
.space__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, transparent 60%, rgba(90,46,80,0.08) 100%);
  z-index: 1;
  pointer-events: none;
}
.space__frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 1.5s var(--ease-soft);
}
.space__frame:hover img { transform: scale(1.03); }
.space__deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  opacity: 0.85;
  filter: drop-shadow(0 4px 12px rgba(185,122,134,0.25));
  animation: floatY 6s ease-in-out infinite alternate;
}
@keyframes floatY {
  0%   { transform: translateY(0) rotate(-5deg); }
  100% { transform: translateY(-10px) rotate(5deg); }
}

.space__body p {
  color: var(--taupe);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.space__features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.space__features li {
  font-size: 0.82rem;
  color: var(--plum);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════════════════════════════
   PRESTATIONS
   ════════════════════════════════════════════════════════════════════ */
.services {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  background: var(--ivory);
  position: relative;
}
.services__head {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}
.services__intro {
  color: var(--taupe);
  font-size: 0.95rem;
  line-height: 1.85;
}
.services__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

/* Carte service — entièrement typographique avec fleur SVG */
.scard {
  position: relative;
  background: var(--ivory);
  padding: 2.5rem 2rem 2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--blush);
  display: flex;
  flex-direction: column;
  transition: transform 1s var(--ease-soft),
              box-shadow 1s var(--ease-soft),
              border-color 1s var(--ease-soft),
              background 1s var(--ease-soft);
  overflow: hidden;
}
.scard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--pearl) 0%, var(--ivory) 100%);
  opacity: 0;
  transition: opacity 1s var(--ease-soft);
  z-index: 0;
}
.scard > * { position: relative; z-index: 1; }
.scard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--rose-pale);
}
.scard:hover::before { opacity: 1; }

.scard__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 3px 8px rgba(185,122,134,0.25));
  transition: transform 1.2s var(--ease-soft);
}
.scard:hover .scard__icon {
  transform: rotate(72deg) scale(1.08);
}
.scard h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 0.5rem;
  letter-spacing: 0.005em;
}
.scard__desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--rose-deep);
  margin-bottom: 1.4rem;
  font-weight: 400;
}
.scard ul {
  flex: 1;
  margin-bottom: 1.6rem;
}
.scard li {
  font-size: 0.83rem;
  color: var(--taupe);
  padding: 0.42rem 0 0.42rem 1.1rem;
  border-bottom: 1px dashed var(--blush);
  position: relative;
  transition: color 0.6s var(--ease-soft);
}
.scard li::before {
  content: '✿';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 0.7rem;
  top: 0.55rem;
}
.scard li:last-child { border-bottom: none; }
.scard:hover li { color: var(--plum); }

.scard__cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  transition: color var(--t-fast), letter-spacing var(--t-fast);
  align-self: flex-start;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
}
.scard__cta:hover {
  color: var(--plum);
  letter-spacing: 0.26em;
}

/* ════════════════════════════════════════════════════════════════════
   PRODUITS
   ════════════════════════════════════════════════════════════════════ */
.products {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  background:
    radial-gradient(ellipse at 20% 30%, rgba(221,160,171,0.20) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(141,84,121,0.25) 0%, transparent 50%),
    linear-gradient(160deg, var(--aubergine) 0%, var(--plum) 100%);
  overflow: hidden;
}
.products__deco {
  position: absolute;
  width: clamp(160px, 22vw, 280px);
  height: auto;
  opacity: 0.14;
  pointer-events: none;
}
.products__deco--tl { top: 4%;  left: -3%; }
.products__deco--br { bottom: 4%; right: -3%; transform: rotate(180deg); }

.products__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.products__intro {
  color: rgba(253,248,245,0.78);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 3rem;
}
.brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.brand {
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(237,201,205,0.25);
  border-radius: var(--r);
  background: rgba(253,248,245,0.03);
  transition: background 0.9s var(--ease-soft),
              border-color 0.9s var(--ease-soft),
              transform 0.9s var(--ease-soft);
  cursor: default;
}
.brand:hover {
  background: rgba(253,248,245,0.07);
  border-color: rgba(237,201,205,0.55);
  transform: translateY(-3px);
}
.brand__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.3rem;
}
.brand__tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-pale);
}

/* ════════════════════════════════════════════════════════════════════
   CONTACT & HORAIRES
   ════════════════════════════════════════════════════════════════════ */
.contact {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  background: var(--ivory);
}
.contact__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact__list { margin: 2rem 0 2.4rem; }
.contact__item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--blush);
}
.contact__item:first-child { border-top: 1px solid var(--blush); }
.contact__icon {
  flex-shrink: 0;
  width: 22px;
  color: var(--rose-deep);
  margin-top: 0.15rem;
}
.contact__icon svg { width: 20px; height: 20px; }
.contact__text strong {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.4rem;
}
.contact__text p {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.65;
}
.contact__text a {
  color: var(--plum);
  font-weight: 500;
  transition: color var(--t-fast);
}
.contact__text a:hover { color: var(--rose-deep); }
.contact__link {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--rose-deep) !important;
  margin-top: 0.5rem;
  transition: letter-spacing var(--t-fast) !important;
}
.contact__link:hover { letter-spacing: 0.22em !important; }
.contact__note {
  font-size: 0.75rem;
  color: var(--plum-light);
  font-style: italic;
}

/* Horaires */
.hours {
  position: relative;
  background: linear-gradient(160deg, var(--pearl) 0%, var(--blush) 100%);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid var(--rose-pale);
  overflow: hidden;
}
.hours__deco {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  opacity: 0.7;
}
.hours__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rose-pale);
}
.hours__table {
  width: 100%;
  border-collapse: collapse;
}
.hours__table td {
  padding: 0.85rem 0;
  font-size: 0.88rem;
  color: var(--taupe);
  border-bottom: 1px solid rgba(221,160,171,0.3);
}
.hours__table td:first-child {
  font-weight: 500;
  color: var(--plum);
}
.hours__table td:last-child { text-align: right; }
.hours__featured td {
  color: var(--rose-deep) !important;
  font-weight: 500 !important;
  position: relative;
}
.hours__featured td:last-child::after {
  content: ' ✿';
  font-size: 0.7em;
}
.hours__closed td { opacity: 0.45; }
.hours__note {
  margin-top: 1.1rem;
  font-size: 0.7rem;
  font-style: italic;
  color: var(--rose-deep);
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(160deg, var(--aubergine) 0%, var(--violet-dark) 100%);
  padding: 3.5rem var(--pad) 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(221,160,171,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.footer__top {
  max-width: var(--max-w);
  margin: 0 auto 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(237,201,205,0.12);
  position: relative;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__logo {
  width: 180px;
  filter: brightness(0) invert(1) opacity(0.9);
}
.footer__place {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose-pale);
}
.footer__nav {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237,201,205,0.6);
  transition: color var(--t-fast);
}
.footer__nav a:hover { color: var(--rose-pale); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.footer__bottom p {
  font-size: 0.65rem;
  color: rgba(237,201,205,0.3);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__branch { width: clamp(220px, 50vw, 320px); opacity: 0.85; }
  .hero__title-script { font-size: clamp(3rem, 12vw, 4.5rem); }
  .hero__title-name   { font-size: clamp(2.5rem, 11vw, 4rem); }

  .about__body { grid-template-columns: 1fr; gap: 1.5rem; }
  .about__body::before { display: none; }

  .space__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .space__frame img { height: 380px; }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

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

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .space__features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about__stats { gap: 1rem; padding: 1.5rem 1rem; }
  .stat__divider { display: none; }
  .hours { padding: 1.8rem 1.4rem; }
  .scard { padding: 2rem 1.5rem 1.5rem; }
  .footer__nav { gap: 1rem 1.6rem; }
}

/* Accessibilité — réduction du mouvement */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .petals { display: none; }
}
