/* ============================================
   ESPACE PILATES 1814 — Premium White Theme V3
   Ultra fluide · Hover doux · Accents rouge subtils
   ============================================ */

:root {
  /* Palette FluidBody : teal (ex --rouge, héritage historique) + lime de marque */
  --teal: #0CA3B8;
  --teal-dark: #0A8294;
  --teal-soft: #A7E4ED;
  --teal-faint: #E6F8FA;
  --lime: #AEEF4D;
  --lime-dark: #A6D420;
  --turquoise: #2CC4D6;
  --turquoise-deep: #14788A;

  --blanc: #ffffff;
  --cream: #FAF7F2;
  --ivoire: #F5EFE5;

  --charcoal: #0C2742;
  --gris-900: #122A47;
  --gris-700: #2E4763;
  --gris-500: #71717A;
  --gris-400: #A1A1AA;
  --gris-300: #D4D4D8;
  --gris-200: #E4E4E7;
  --gris-100: #F4F4F5;

  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;

  --fs-hero: clamp(3rem, 9vw, 8rem);
  --fs-display: clamp(2.5rem, 6.5vw, 6.5rem);
  --fs-h1: clamp(2rem, 4.5vw, 4rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.5rem);
  --fs-body: clamp(0.95rem, 1.05vw, 1.05rem);

  --section: clamp(5rem, 11vw, 9rem);
  --gutter: clamp(1.5rem, 4vw, 3rem);
  --container-max: 1480px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   RESET
   ============================================ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--charcoal);
  background: var(--blanc);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  isolation: isolate;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

::selection { background: var(--lime); color: var(--charcoal); }
::-moz-selection { background: var(--lime); color: var(--charcoal); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 8px; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--charcoal);
}

h1 em, h2 em, h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--teal);
}

p { color: var(--gris-700); line-height: 1.6; max-width: 60ch; }

/* ============================================
   CUSTOM CURSOR (wow factor)
   ============================================ */

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [data-cursor-hover] { cursor: none; }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-soft), height 0.3s var(--ease-out-soft), background 0.3s;
  mix-blend-mode: normal;
}

.cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(12, 163, 184, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-soft), height 0.3s var(--ease-out-soft), border-color 0.3s var(--ease-out-soft), background 0.3s var(--ease-out-soft), opacity 0.3s var(--ease-out-soft);
}

.cursor.is-hover .cursor__dot {
  width: 0;
  height: 0;
}

.cursor.is-hover .cursor__ring {
  width: 70px;
  height: 70px;
  border-color: var(--teal);
  background: rgba(12, 163, 184, 0.1);
}

.cursor.is-hidden {
  opacity: 0;
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ============================================
   LOADER
   ============================================ */

.loader {
  position: fixed;
  inset: 0;
  background: var(--blanc);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.5s var(--ease-out-soft), visibility 0.5s var(--ease-out-soft);
}

.loader.is-done { opacity: 0; visibility: hidden; }

.loader__mark {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  display: flex;
  gap: 2px;
}

.loader__mark span {
  display: inline-block;
  animation: rise 0.9s var(--ease-out-soft) both;
}

.loader__mark span:nth-child(2) { animation-delay: 0.08s; }
.loader__mark span:nth-child(3) { animation-delay: 0.16s; color: var(--teal); }

.loader__bar {
  width: 160px;
  height: 1px;
  background: var(--gris-200);
  position: relative;
  overflow: hidden;
}

.loader__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform-origin: left;
  animation: load 1.4s var(--ease-out-soft) forwards;
}

@keyframes rise {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes load {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ============================================
   NAV — Glass blur on white
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s var(--ease-out-soft), padding 0.3s var(--ease-out-soft), border-color 0.3s var(--ease-out-soft);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  padding: 0.9rem var(--gutter);
  border-bottom: 1px solid var(--gris-200);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav__logo-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.nav__logo-text small {
  font-size: 0.6rem;
  color: var(--gris-500);
  letter-spacing: 0.18em;
  font-weight: 600;
}

.nav__menu {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out-soft);
  border-radius: 2px;
}

.nav__link:hover { color: var(--teal); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: var(--charcoal);
  color: var(--blanc);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--radius-pill);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.nav__cta:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.nav__toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav__toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out-soft);
}

.nav__toggle span:nth-child(1) { top: 12px; }
.nav__toggle span:nth-child(2) { bottom: 12px; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: block; }
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 360px);
  background: var(--blanc);
  z-index: 95;
  padding: 6rem 2.5rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-soft);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: -20px 0 60px rgba(0,0,0,0.08);
}

.drawer.is-open { transform: translateX(0); }
.drawer__menu { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.drawer__link {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.85rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  transition: background 0.3s var(--ease-out-soft), color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--blanc);
}

.btn--primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.btn--rouge {
  background: var(--teal);
  color: var(--blanc);
  box-shadow: 0 10px 30px rgba(12, 163, 184, 0.3);
}

.btn--rouge:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(12, 163, 184, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--gris-300);
}

.btn--ghost:hover {
  background: var(--charcoal);
  color: var(--blanc);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #16A9C2;
  color: var(--blanc);
}

.btn--whatsapp:hover { background: #1eb755; transform: translateY(-2px); }

.btn__arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out-soft);
}

.btn:hover .btn__arrow { transform: translate(4px, -4px); }

/* ============================================
   HERO — Photo top, fade to white
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 6rem var(--gutter) 5rem;
  overflow: hidden;
  background: var(--blanc);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.05);
  transform: scale(1.05);
  animation: heroZoom 18s var(--ease-out-soft) infinite alternate;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 55%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 55%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%);
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 25%, rgba(255,255,255,0.4) 70%, rgba(255,255,255,1) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.95rem 0.45rem 0.5rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeIn 1s 0.2s var(--ease-out-soft) forwards;
}

.hero__badge-pill {
  background: var(--teal);
  color: var(--blanc);
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero__title {
  font-family: var(--font-sans);
  font-size: var(--fs-hero);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--blanc);
  max-width: 16ch;
  margin-bottom: 2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.hero__title .line {
  display: block;
  overflow: hidden;
}

.hero__title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroRise 1.3s var(--ease-out-soft) forwards;
}

.hero__title .line:nth-child(2) > span { animation-delay: 0.15s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.3s; }

.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blanc);
}

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

.hero__lede {
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  color: rgba(255,255,255,0.95);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  opacity: 0;
  animation: fadeIn 1s 0.6s var(--ease-out-soft) forwards;
  text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.hero__cta-group {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s 0.8s var(--ease-out-soft) forwards;
}

.hero__cta-group .btn--primary {
  background: var(--blanc);
  color: var(--charcoal);
}

.hero__cta-group .btn--primary:hover {
  background: var(--teal);
  color: var(--blanc);
}

.hero__cta-group .btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--blanc);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}

.hero__cta-group .btn--ghost:hover {
  background: var(--blanc);
  color: var(--charcoal);
  border-color: var(--blanc);
}

/* ============================================
   MANIFESTO — White bg with photo card
   ============================================ */

.manifesto {
  position: relative;
  padding: var(--section) var(--gutter);
  background: var(--blanc);
}

.manifesto__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.manifesto__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.manifesto__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal);
}

.manifesto__title {
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--charcoal);
  margin-bottom: 2rem;
  max-width: 14ch;
}

.manifesto__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}

.manifesto__copy {
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.6;
  color: var(--gris-700);
  max-width: 48ch;
}

.manifesto__copy p + p { margin-top: 1.25rem; }

.manifesto__signature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gris-200);
  font-size: 0.85rem;
  color: var(--gris-500);
}

.manifesto__signature-mark {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--teal);
  font-size: 1.4rem;
  font-weight: 400;
}

.manifesto__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.manifesto__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
}

.manifesto__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15));
}

.manifesto__photo-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.manifesto__photo-tag-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.manifesto__photo-tag-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.1rem;
}

.manifesto__photo-tag-text span {
  font-size: 0.78rem;
  color: var(--gris-500);
}

@media (max-width: 900px) {
  .manifesto__inner { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto__photo { max-width: 480px; margin: 0 auto; aspect-ratio: 1; }
}

/* ============================================
   OFFERS — Photo cards on white
   ============================================ */

.offers {
  padding: var(--section) var(--gutter);
  background: var(--cream);
}

.offers__head {
  max-width: var(--container-max);
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.offers__head h2 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  letter-spacing: -0.05em;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.offers__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}

.offers__lead {
  font-size: 1rem;
  color: var(--gris-700);
  max-width: 50ch;
  line-height: 1.6;
}

.offers__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.offer-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform 0.5s var(--ease-out-soft), box-shadow 0.5s var(--ease-out-soft);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 80px rgba(12, 163, 184, 0.20),
    0 20px 50px rgba(0, 0, 0, 0.10);
}

.offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ken Burns lent éditorial — exemption volontaire des 3 durées standard */
  transition: transform 1.5s var(--ease-out-soft);
  z-index: 1;
}

.offer-card:hover img {
  transform: scale(1.04);
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

/* Glow rouge subtil derrière la carte au hover — on garde */
.offer-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(135deg, var(--teal) 0%, transparent 50%, var(--teal) 100%);
  border-radius: var(--radius-xl);
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.5s var(--ease-out-soft);
}

.offer-card:hover::before { opacity: 0.35; }

.offer-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 2.5rem 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--blanc);
}

.offer-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem 0.3rem 0.5rem;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 500;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.offer-card__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.offer-card__title {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--blanc);
}

.offer-card__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blanc);
}

.offer-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  max-width: 38ch;
  line-height: 1.5;
}

.offer-card__cta {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: var(--blanc);
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  width: fit-content;
  transition: background 0.3s, transform 0.3s, color 0.3s;
}

.offer-card__cta:hover {
  background: var(--teal);
  color: var(--blanc);
  transform: translateY(-2px);
}

@media (max-width: 800px) {
  .offers__head { grid-template-columns: 1fr; gap: 1.5rem; }
  .offers__grid { grid-template-columns: 1fr; }
}

/* ============================================
   STUDIO MOMENT — Quote + photo on white
   ============================================ */

.studio-moment {
  padding: var(--section) var(--gutter);
  background: var(--blanc);
  text-align: center;
}

.studio-moment__inner {
  max-width: 900px;
  margin: 0 auto;
}

.studio-moment__quote {
  font-size: clamp(1.75rem, 3.8vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
}

.studio-moment__quote em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}

.studio-moment__cite {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris-500);
  font-weight: 600;
}

/* ============================================
   VISIT — Final CTA on white with photo
   ============================================ */

.visit {
  position: relative;
  padding: var(--section) var(--gutter);
  background: var(--blanc);
  overflow: hidden;
}

.visit__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
}

.visit__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  order: 2;
}

.visit__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
}

.visit__photo-cta {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}

.visit__photo-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--teal);
  color: var(--blanc);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  transition: background 0.3s, transform 0.3s;
}

.visit__photo-cta a:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.visit__content {
  order: 1;
}

.visit__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.visit__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal);
}

.visit__title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}

.visit__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}

.visit__copy {
  font-size: 1.05rem;
  color: var(--gris-700);
  max-width: 48ch;
  line-height: 1.55;
  margin-bottom: 2.25rem;
}

.visit__ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.visit__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visit__info-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.4rem;
  background: var(--cream);
  border: 1px solid var(--gris-200);
  border-radius: var(--radius-lg);
  transition: background 0.3s, border-color 0.3s;
}

.visit__info-row:hover {
  background: var(--teal-faint);
  border-color: var(--teal-soft);
}

.visit__info-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

.visit__info-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.visit__info-val a:hover { color: var(--teal); }

@media (max-width: 900px) {
  .visit__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .visit__photo { order: -1; max-width: 480px; margin: 0 auto; }
}

/* ============================================
   FOOTER — Charcoal contrast
   ============================================ */

.footer {
  padding: 4rem var(--gutter) 2rem;
  background: var(--charcoal);
  color: var(--blanc);
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}

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

.footer__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer__brand-text strong { font-size: 1rem; font-weight: 600; color: var(--blanc); }
.footer__brand-text small { font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 0.15em; font-weight: 500; }

.footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */

.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #16A9C2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(22, 169, 194, 0.35);
  transition: transform 0.3s var(--ease-out-soft), box-shadow 0.3s var(--ease-out-soft);
  animation: fabIn 0.5s 0.2s var(--ease-out-soft) both;
}

.fab:hover { transform: scale(1.08); box-shadow: 0 15px 40px rgba(22, 169, 194, 0.5); }

.fab::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #16A9C2;
  opacity: 0.6;
  animation: ping 2s ease-out infinite;
}

.fab svg { width: 30px; height: 30px; fill: var(--blanc); }

@keyframes ping {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes fabIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
  .fab { width: 54px; height: 54px; bottom: 1.25rem; right: 1.25rem; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s var(--ease-out-soft), transform 0.5s var(--ease-out-soft);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s var(--ease-out-soft), transform 0.5s var(--ease-out-soft);
}

.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.36s; }

/* ============================================
   A11Y
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__bg img { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

/* ============================================
   SECTIONS RÉINTÉGRÉES — style Espace Pilates 1814
   (Méthode · Principes · Équipe · Studio · App)
   ============================================ */

.eyebrow-r {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* MÉTHODE */
.method { padding: var(--section) var(--gutter); max-width: var(--container-max); margin: 0 auto; }
.method__head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.method__head h2 { font-size: var(--fs-display); margin-bottom: 1.5rem; }
.method__head p { margin: 0 auto; }
.piliers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--gris-200);
  border: 1px solid var(--gris-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pilier { background: var(--blanc); padding: 2rem 1.75rem; transition: background 0.3s var(--ease-out-soft); }
.pilier:hover { background: var(--teal-faint); }
.pilier__icon {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--lime);
  box-shadow: 0 0 14px rgba(174, 239, 77, 0.22);
  margin-bottom: 1.1rem;
}
.pilier__icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pilier h4 { font-size: 1.1rem; margin-bottom: 0.55rem; letter-spacing: -0.02em; }
.pilier p { font-size: 0.9rem; color: var(--gris-500); line-height: 1.55; }
.method__credo { text-align: center; margin-top: 3rem; display: flex; flex-direction: column; gap: 1.25rem; align-items: center; }
.method__credo-line { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--charcoal); }
.method__credo-line span { color: var(--teal); margin: 0 0.45rem; }
.method__app-link { color: var(--teal); font-weight: 500; font-size: 0.95rem; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* PRINCIPES */
.principles { padding: 0 var(--gutter) var(--section); max-width: 920px; margin: 0 auto; }
.principles__head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.principles__head h2 { font-size: var(--fs-h1); margin-bottom: 1.25rem; }
.principles__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 3rem; }
.principles__group-label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gris-400); margin-bottom: 1rem; }
.principle { display: flex; align-items: baseline; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--gris-200); }
.principle__num { font-family: var(--font-serif); font-style: italic; color: var(--teal); font-size: 1.05rem; width: 1.8rem; flex-shrink: 0; }
.principle__name { font-size: 1.05rem; font-weight: 500; }
.principles__credo { text-align: center; max-width: 640px; margin: 3rem auto 0; font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; color: var(--gris-700); }

/* ÉQUIPE */
.team { padding: var(--section) var(--gutter); background: var(--cream); }
.team__inner { max-width: var(--container-max); margin: 0 auto; }
.team__hero { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.team__photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4; }
.team__photo img { width: 100%; height: 100%; object-fit: cover; }
.team__content h2 { font-size: var(--fs-display); margin: 0.75rem 0 1rem; }
.team__meta { color: var(--teal); font-size: 0.92rem; margin-bottom: 1.5rem; }
.team__bio p { margin-bottom: 1rem; color: var(--gris-700); font-size: 0.98rem; }
.team__quote { border-left: 2px solid var(--teal); padding-left: 1.5rem; margin-top: 2rem; }
.team__quote p { font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; color: var(--charcoal); line-height: 1.3; }
.team__quote cite { display: block; margin-top: 0.6rem; font-style: normal; font-size: 0.88rem; color: var(--gris-500); }
.team__row-label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gris-400); margin: 4rem 0 1.75rem; }
.team__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.team-card { display: flex; gap: 1.25rem; align-items: flex-start; }
.team-card img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.team-card h4 { font-size: 1.1rem; }
.team-card .role { color: var(--teal); font-size: 0.84rem; margin: 0.25rem 0 0.6rem; }
.team-card p { font-size: 0.9rem; color: var(--gris-600); line-height: 1.55; }

/* STUDIO / GALERIE */
.gallery { padding: var(--section) var(--gutter); max-width: var(--container-max); margin: 0 auto; }
.gallery__head { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.gallery__head h2 { font-size: var(--fs-display); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery__grid img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.gallery__grid img:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery__info { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; margin-top: 2rem; align-items: stretch; }
.gallery__address { background: var(--cream); border-radius: var(--radius); padding: 2rem; }
.gallery__address h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.gallery__address address { font-style: normal; color: var(--gris-700); line-height: 1.8; }
.gallery__address a { color: var(--teal); }
.gallery__map { border-radius: var(--radius); overflow: hidden; min-height: 280px; }
.gallery__map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }
@media (max-width: 768px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid img:first-child { grid-column: span 2; grid-row: auto; }
  .gallery__info { grid-template-columns: 1fr; }
}

/* APP / FLUIDBODY */
.app { padding: var(--section) var(--gutter); background: var(--charcoal); color: var(--blanc); overflow: hidden; }
.app__inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.app .eyebrow-r { color: var(--lime); }
.app h2 { color: var(--blanc); font-size: var(--fs-display); margin: 0.75rem 0 1.5rem; }
.app h2 em { color: var(--lime); font-family: var(--font-serif); font-style: italic; }
.app p { color: var(--gris-300); margin-bottom: 2rem; }
.app__features { list-style: none; margin-bottom: 2rem; }
.app__features li { padding: 0.7rem 0 0.7rem 1.75rem; border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; color: var(--gris-200); }
.app__features li::before { content: "→"; position: absolute; left: 0; color: var(--lime); }
.app__cta { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--lime); color: var(--charcoal); padding: 0.9rem 1.6rem; border-radius: var(--radius-pill); font-weight: 600; transition: transform 0.3s var(--ease-out-soft); }
.app__cta:hover { transform: translateY(-2px); }
.app__mockups { display: flex; justify-content: center; align-items: center; gap: 0.75rem; }
.app__mockups img { width: 32%; border-radius: 22px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.app__mockups img.center { width: 36%; transform: translateY(-12px); z-index: 2; }
@media (max-width: 768px) {
  .team__hero, .app__inner { grid-template-columns: 1fr; }
  .method__head h2, .gallery__head h2, .team__content h2, .app h2 { font-size: var(--fs-h1); }
}

/* ============================================
   CONTACT + FOOTER enrichi (style Noa)
   ============================================ */
.contact { padding: var(--section) var(--gutter); max-width: var(--container-max); margin: 0 auto; }
.contact__head { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.contact__head h2 { font-size: var(--fs-display); margin-bottom: 1.25rem; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 0.5rem; }
.whatsapp-card { display: flex; align-items: center; gap: 1rem; background: #16A9C2; color: #fff; padding: 1.2rem 1.5rem; border-radius: var(--radius); margin-bottom: 1rem; transition: transform 0.3s var(--ease-out-soft); }
.whatsapp-card:hover { transform: translateY(-2px); }
.whatsapp-card svg { width: 30px; height: 30px; fill: #fff; flex-shrink: 0; }
.whatsapp-card strong { display: block; font-size: 1rem; }
.whatsapp-card span { font-size: 0.84rem; opacity: 0.92; }
.contact__row { padding: 1rem 0; border-bottom: 1px solid var(--gris-200); }
.contact__row strong { display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gris-400); margin-bottom: 0.35rem; }
.contact__row a { color: var(--teal); }
.contact__row span { color: var(--gris-700); }
.contact__form { background: var(--cream); border-radius: var(--radius-lg); padding: clamp(1.75rem, 3vw, 2.5rem); }
.contact__form h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.84rem; color: var(--gris-500); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--gris-200); border-radius: 12px; background: var(--blanc); font: inherit; color: var(--charcoal); transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact__submit { width: 100%; background: var(--teal); color: #fff; padding: 1rem; border-radius: var(--radius-pill); font-weight: 600; cursor: pointer; transition: background 0.3s, opacity 0.2s; border: 0; }
.contact__submit:hover { background: var(--teal-dark); }
.contact__submit:disabled { opacity: 0.6; cursor: not-allowed; }
/* Feedback retourné par /api/contact — succès / erreur */
.form-feedback { margin-top: 1rem; padding: 0.85rem 1rem; border-radius: 10px; font-size: 0.92rem; line-height: 1.45; min-height: 0; }
.form-feedback:empty { display: none; }
.form-feedback--success { background: #E8F5E9; color: #1B5E20; border: 1px solid #66BB6A; }
.form-feedback--error { background: #FFEBEE; color: #B71C1C; border: 1px solid #EF5350; }
@media (max-width: 768px) { .contact__grid { grid-template-columns: 1fr; } .contact__head h2 { font-size: var(--fs-h1); } }

.footer__top { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__col h4 { color: var(--blanc); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { color: var(--gris-300); font-size: 0.92rem; transition: color 0.3s; }
.footer__col a:hover { color: var(--blanc); }
.footer__tagline { color: var(--gris-400); font-size: 0.9rem; margin-top: 1.1rem; max-width: 32ch; line-height: 1.6; }
@media (max-width: 768px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__col--brand { grid-column: 1 / -1; } }

/* ============================================
   FLUIDBODY+ — fond splash (méduse + bulles + éventail)
   (surcharge le bloc .app précédent)
   ============================================ */
.app {
  position: relative;
  background: linear-gradient(180deg, #0A2540 0%, #0E2A3D 45%, #1A4555 75%, #55BBC9 100%);
  color: #fff;
  overflow: hidden;
}
.app__inner { position: relative; z-index: 3; }

/* halos lumineux */
.app::before {
  content: ""; position: absolute; top: 18%; right: -8%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(85,187,201,0.30) 0%, transparent 70%);
  filter: blur(50px); pointer-events: none; z-index: 1;
}
.app::after {
  content: ""; position: absolute; bottom: -10%; left: -8%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(174,239,77,0.16) 0%, transparent 70%);
  filter: blur(50px); pointer-events: none; z-index: 1;
}

/* méduse en ambiance */
.app__meduse {
  position: absolute; top: 4%; left: 50%;
  width: min(520px, 62%); height: auto;
  transform: translateX(-50%);
  opacity: 0.55; mix-blend-mode: screen; pointer-events: none; z-index: 1;
  filter: drop-shadow(0 0 45px rgba(120,200,220,0.45));
  animation: floatMeduse 9s ease-in-out infinite;
}
@keyframes floatMeduse {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(-24px); }
}

/* bulles qui montent */
.app__bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 2; }
.app__bubbles span {
  position: absolute; bottom: -5%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.9), rgba(170,225,235,0.18));
  animation: bubbleUp linear infinite;
}
.app__bubbles span:nth-child(1){ left:12%; width:8px;  height:8px;  animation-duration:13s; animation-delay:0s; }
.app__bubbles span:nth-child(2){ left:25%; width:12px; height:12px; animation-duration:17s; animation-delay:3s; }
.app__bubbles span:nth-child(3){ left:40%; width:6px;  height:6px;  animation-duration:11s; animation-delay:6s; }
.app__bubbles span:nth-child(4){ left:58%; width:10px; height:10px; animation-duration:15s; animation-delay:1.5s; }
.app__bubbles span:nth-child(5){ left:72%; width:7px;  height:7px;  animation-duration:12s; animation-delay:4.5s; }
.app__bubbles span:nth-child(6){ left:85%; width:14px; height:14px; animation-duration:19s; animation-delay:2s; }
.app__bubbles span:nth-child(7){ left:50%; width:5px;  height:5px;  animation-duration:10s; animation-delay:7s; }
@keyframes bubbleUp {
  0%   { transform: translateY(0) scale(0.6); opacity: 0; }
  12%  { opacity: 0.55; }
  100% { transform: translateY(-115vh) scale(1); opacity: 0; }
}

/* éventail 3 iPhones */
.app__mockups {
  position: relative; display: flex; justify-content: center; align-items: center;
  min-height: 560px; perspective: 1200px; gap: 0;
}
.app__mockups .mockup {
  position: absolute; width: 240px; height: auto; aspect-ratio: 624 / 1270;
  border-radius: 28px; object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 30px 60px rgba(0,0,0,0.45), 0 60px 120px rgba(0,0,0,0.25);
  transition: transform 0.5s var(--ease-out-soft);
}
.app__mockups .mockup.left   { transform: translateX(-150px) translateY(20px) rotate(-9deg); z-index: 1; }
.app__mockups .mockup.center { transform: translateY(-10px) scale(1.08); z-index: 3; }
.app__mockups .mockup.right  { transform: translateX(150px) translateY(20px) rotate(9deg); z-index: 2; }
.app__mockups:hover .mockup.left  { transform: translateX(-178px) translateY(10px) rotate(-12deg); }
.app__mockups:hover .mockup.right { transform: translateX(178px)  translateY(10px) rotate(12deg); }
.app__mockups:hover .mockup.center { transform: translateY(-18px) scale(1.12); }
@media (max-width: 700px) {
  .app__mockups { min-height: 460px; }
  .app__mockups .mockup { width: 185px; border-radius: 22px; }
  .app__mockups .mockup.left  { transform: translateX(-100px) translateY(16px) rotate(-9deg); }
  .app__mockups .mockup.right { transform: translateX(100px)  translateY(16px) rotate(9deg); }
  .app__mockups:hover .mockup.left  { transform: translateX(-110px) translateY(14px) rotate(-10deg); }
  .app__mockups:hover .mockup.right { transform: translateX(110px)  translateY(14px) rotate(10deg); }
}

/* FluidBody : méduse plus petite + petites méduses lime en mouvement + wordmark */
.app__meduse { width: min(360px, 44%); opacity: 0.42; top: 3%; }

.app__jelly {
  position: absolute; pointer-events: none; z-index: 2; height: auto;
  opacity: 0.75; filter: drop-shadow(0 0 14px rgba(174,239,77,0.65));
}
.app__jelly--1 { width: 72px; left: 7%;  top: 32%; animation: jellyDrift1 16s ease-in-out infinite; }
.app__jelly--2 { width: 52px; right: 9%; top: 58%; animation: jellyDrift2 21s ease-in-out infinite; }
.app__jelly--3 { width: 40px; left: 22%; bottom: 14%; animation: jellyDrift3 13s ease-in-out infinite; }
@keyframes jellyDrift1 { 0%,100% { transform: translate(0,0) rotate(-4deg); } 50% { transform: translate(34px,-46px) rotate(5deg); } }
@keyframes jellyDrift2 { 0%,100% { transform: translate(0,0) rotate(3deg); } 50% { transform: translate(-28px,-54px) rotate(-6deg); } }
@keyframes jellyDrift3 { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(22px,-34px) rotate(4deg); } }
@media (max-width: 700px) { .app__jelly--2, .app__jelly--3 { display: none; } .app__jelly--1 { width: 54px; } }

/* Wordmark FLUIDBODY+ */
.app__wordmark {
  font-family: var(--font-sans); font-weight: 700; font-size: 1.5rem;
  letter-spacing: 0.02em; color: #fff; text-transform: uppercase;
  margin-bottom: 1.25rem; line-height: 1;
}
.app__wordmark span { color: var(--lime); margin-left: 2px; }

/* Footer : fond FluidBody (dégradé teal + bulles + méduses fluo) */
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0A2540 0%, #0E2A3D 50%, #1A4555 100%);
}
.footer__top, .footer__bottom { position: relative; z-index: 2; }
.footer .app__bubbles, .footer .app__jelly { z-index: 1; }
.footer .app__jelly { opacity: 0.6; }
.footer .app__jelly--1 { top: 16%; left: 3%; width: 58px; bottom: auto; }
.footer .app__jelly--2 { top: auto; bottom: 16%; right: 4%; left: auto; width: 44px; }
.footer .app__jelly--3 { display: none; }

/* ============================================
   PUSH AQUATIQUE — turquoise Maldives
   ============================================ */

/* Section citation devient un interlude aquatique */
.studio-moment {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0E3A47 0%, #14788A 50%, #1FA9BC 100%);
}
.studio-moment__inner { position: relative; z-index: 2; }
.studio-moment__quote { color: #fff !important; }
.studio-moment__quote em { color: var(--lime) !important; }
.studio-moment__cite { color: rgba(255,255,255,0.78) !important; }
.studio-moment .app__meduse { opacity: 0.28; top: -8%; width: min(420px, 50%); }

/* bulles génériques réutilisables hors .app (hero, citation) */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.bubbles span {
  position: absolute; bottom: -5%; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.9), rgba(170,225,235,0.18));
  animation: bubbleUp linear infinite;
}
.bubbles span:nth-child(1){ left:14%; width:8px;  height:8px;  animation-duration:13s; animation-delay:0s; }
.bubbles span:nth-child(2){ left:30%; width:12px; height:12px; animation-duration:18s; animation-delay:3s; }
.bubbles span:nth-child(3){ left:46%; width:6px;  height:6px;  animation-duration:11s; animation-delay:6s; }
.bubbles span:nth-child(4){ left:62%; width:10px; height:10px; animation-duration:15s; animation-delay:1.5s; }
.bubbles span:nth-child(5){ left:80%; width:7px;  height:7px;  animation-duration:12s; animation-delay:4.5s; }
.bubbles span:nth-child(6){ left:88%; width:13px; height:13px; animation-duration:20s; animation-delay:2s; }

/* bulles douces sur le hero (au-dessus de la photo, sous le texte) */
.hero__bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; opacity: 0.55; }
.hero__bubbles span {
  position: absolute; bottom: -5%; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.85), rgba(120,210,225,0.12));
  animation: bubbleUp linear infinite;
}
.hero__bubbles span:nth-child(1){ left:18%; width:7px;  height:7px;  animation-duration:16s; animation-delay:0s; }
.hero__bubbles span:nth-child(2){ left:42%; width:10px; height:10px; animation-duration:21s; animation-delay:5s; }
.hero__bubbles span:nth-child(3){ left:66%; width:6px;  height:6px;  animation-duration:14s; animation-delay:2s; }
.hero__bubbles span:nth-child(4){ left:84%; width:9px;  height:9px;  animation-duration:19s; animation-delay:7s; }
.hero__inner { position: relative; z-index: 2; }

/* Curseur en bleu turquoise (assorti WhatsApp) */
.cursor__dot { background: #16A9C2; }
.cursor__ring { border-color: rgba(22, 169, 194, 0.55); }
.cursor.is-hover .cursor__ring { border-color: #16A9C2; background: rgba(22, 169, 194, 0.12); }

/* Mention "bientôt disponible" FluidBody */

/* ============================================
   PUSH PROFOND — immersion aquatique
   ============================================ */

/* Flottaison des cartes au survol (effet "sous l'eau") */
.offer-card, .team-card, .gallery__grid img {
  transition: transform 0.5s var(--ease-out-soft), box-shadow 0.5s var(--ease-out-soft);
}
.offer-card:hover { transform: translateY(-10px); }
.team-card:hover { transform: translateY(-6px); }
.gallery__grid img:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 24px 50px rgba(12,39,66,0.18); }

/* Halos turquoise derrière les titres de section */
.method__head, .principles__head, .gallery__head, .contact__head { position: relative; }
.method__head::before, .principles__head::before, .gallery__head::before, .contact__head::before {
  content: ""; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: min(420px, 80%); height: 240px;
  background: radial-gradient(ellipse, rgba(44,196,214,0.16) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.method__head > *, .principles__head > *, .gallery__head > *, .contact__head > * { position: relative; z-index: 1; }

/* Vague fluide à l'entrée de la section FluidBody */
.app__wave { position: absolute; top: -1px; left: 0; width: 100%; height: 60px; z-index: 2; display: block; }
/* Vague à l'entrée du footer */
.footer__wave { position: absolute; top: -1px; left: 0; width: 100%; height: 50px; z-index: 2; display: block; }

/* ============================================
   ÉTÉ MALDIVES — turquoise lumineux
   ============================================ */
/* Footer : dégradé qui s'illumine en turquoise Maldives vers le bas */
.footer { background: linear-gradient(180deg, #0A2540 0%, #117C90 48%, #2CC4D6 100%); }
.footer__bottom { color: #06324C; }
.footer__bottom .footer__legal a { color: #06324C; }
.footer__bottom { border-top-color: rgba(6,50,76,0.18); }

/* FluidBody : bas plus vif (mer des Maldives) */
.app { background: linear-gradient(180deg, #0A2540 0%, #0E3A4A 40%, #1A7A8E 72%, #3FD0E0 100%); }

/* Section citation aquatique : bas turquoise lumineux */
.studio-moment { background: linear-gradient(180deg, #0E3A47 0%, #16899E 50%, #2CC4D6 100%); }
.studio-moment__cite { color: rgba(255,255,255,0.9) !important; }

/* ============================================
   ÉTÉ — caustics, plongée hero, méduses en plus
   ============================================ */

/* Rayons de lumière sous-marins (caustics) */
.caustics {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.10; mix-blend-mode: screen;
  background:
    repeating-linear-gradient(58deg, transparent 0 46px, rgba(255,255,255,0.7) 46px 49px, transparent 49px 104px),
    repeating-linear-gradient(-46deg, transparent 0 66px, rgba(170,240,255,0.6) 66px 69px, transparent 69px 134px);
  background-size: 340px 340px, 400px 400px;
  animation: caustics 24s linear infinite;
}
@keyframes caustics {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 340px 190px, -400px 230px; }
}

/* Hero qui plonge doucement dans le bleu vers le bas */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(12,163,184,0.12) 55%, rgba(20,120,138,0.38) 100%);
  pointer-events: none; z-index: 1;
}

/* Méduses supplémentaires qui dérivent (FluidBody) */
.app__jelly--4 { width: 58px; right: 24%; top: 18%; left: auto; bottom: auto; animation: jellyDrift2 18s ease-in-out infinite; }
.app__jelly--5 { width: 34px; left: 38%; bottom: 24%; top: auto; animation: jellyDrift3 15s ease-in-out infinite; }
@media (max-width: 700px) { .app__jelly--4, .app__jelly--5 { display: none; } }

/* Badge logo (cadre du mark) */
.nav__logo-badge { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav__logo-badge img { width: 26px; height: 26px; display: block; }

/* ============================================
   AUTRE DIMENSION — traînée de bulles + plancton
   ============================================ */

/* Bulles qui suivent la souris */
.cursor-bubble {
  position: fixed; z-index: 9998; pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.85), rgba(120,210,225,0.12));
  border: 1px solid rgba(255,255,255,0.45);
  transform: translate(-50%,-50%);
  animation: cursorBubble 1.7s ease-out forwards;
}
@keyframes cursorBubble {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.4); }
  18%  { opacity: 0.7; }
  100% { opacity: 0; transform: translate(-50%,-190%) scale(1.05); }
}

/* Plancton / particules dérivantes sur toute la page */
#oceanParticles { position: fixed; inset: 0; pointer-events: none; z-index: 3; overflow: hidden; }
#oceanParticles span {
  position: absolute; border-radius: 50%;
  background: rgba(44,196,214,0.45);
  box-shadow: 0 0 6px rgba(44,196,214,0.35);
  opacity: 0.35;
  animation-name: plankton; animation-timing-function: ease-in-out; animation-iteration-count: infinite;
}
@keyframes plankton {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(16px,-20px); }
  50% { transform: translate(-12px,-34px); }
  75% { transform: translate(9px,-16px); }
}
@media (hover: none), (pointer: coarse) { .cursor-bubble { display: none; } }

/* ============================================
   THÈME FLUIDBODY INTÉGRAL — tout le site sous l'eau
   ============================================ */
.caustics { display: none !important; }      /* retire les rayons */
.app__wave, .footer__wave { display: none; } /* plus de vagues blanches (tout est sombre) */

body { background: #0A2540; color: #E8F5F8; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2;
  background: linear-gradient(180deg, #07203A 0%, #0C3A4C 42%, #11788A 100%);
}

/* Sections claires -> transparentes : l'océan transparaît */
.manifesto, .method, .principles, .team, .offers, .gallery, .contact, .studio-moment { background: transparent !important; }
.app   { background: linear-gradient(180deg, rgba(7,32,58,0.45) 0%, rgba(17,120,138,0.45) 100%) !important; }
.footer{ background: linear-gradient(180deg, rgba(7,32,58,0.55) 0%, rgba(44,196,214,0.30) 100%) !important; }

/* Textes en clair */
h1, h2, h3, h4 { color: #EAF7FA; }
p { color: rgba(232,245,248,0.82); }
.offers__lead, .manifesto__signature, .principles__credo, .team__bio p { color: rgba(232,245,248,0.78); }

/* Cartes en verre dépoli sombre */
.offer-card, .contact__form, .gallery__address { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.12); }
.piliers { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.pilier { background: rgba(255,255,255,0.02) !important; }
.pilier:hover { background: rgba(44,196,214,0.14) !important; }
.offer-card__title, .pilier h4, .team-card h4, .gallery__address h3, .contact__form h3, .principle__name { color: #EAF7FA; }
.offer-card__desc, .pilier p, .team-card p, .gallery__address address { color: rgba(232,245,248,0.74); }

/* Listes / bordures */
.principle, .contact__row { border-bottom-color: rgba(255,255,255,0.14); }
.principles__group-label, .team__row-label, .contact__row strong { color: rgba(232,245,248,0.6); }
.contact__row span, .contact__row a { color: #EAF7FA; }
.gallery__address a { color: var(--turquoise); }

/* Formulaire sombre */
.form-group label { color: rgba(232,245,248,0.7); }
.form-group input, .form-group textarea { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); color: #fff; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(232,245,248,0.4); }

/* Boutons ghost lisibles */
.btn--ghost { color: #EAF7FA; border-color: rgba(255,255,255,0.35); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }

/* Hero : plonge dans l'océan vers le bas (fini le fondu blanc) */
.hero__overlay { background: linear-gradient(180deg, rgba(7,32,58,0.28) 0%, rgba(7,32,58,0.04) 35%, rgba(10,58,76,0.6) 80%, #0A2540 100%) !important; }
.hero::after { display: none !important; }

/* Méduses fluo dérivant sur tout le site (couche de fond) */
#oceanJellies { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
#oceanJellies img { position: absolute; opacity: 0.45; filter: drop-shadow(0 0 16px rgba(174,239,77,0.45)); }
.oj1 { width: 92px;  left: 6%;  top: 12%; animation: ojDrift1 27s ease-in-out infinite; }
.oj2 { width: 64px;  right: 8%; top: 28%; animation: ojDrift2 33s ease-in-out infinite; }
.oj3 { width: 116px; left: 13%; top: 60%; animation: ojDrift3 30s ease-in-out infinite; }
.oj4 { width: 52px;  right: 16%;top: 76%; animation: ojDrift1 23s ease-in-out infinite; }
.oj5 { width: 78px;  left: 48%; top: 44%; animation: ojDrift2 37s ease-in-out infinite; }
@keyframes ojDrift1 { 0%,100% { transform: translate(0,0) rotate(-3deg); } 50% { transform: translate(42px,-64px) rotate(4deg); } }
@keyframes ojDrift2 { 0%,100% { transform: translate(0,0) rotate(3deg); } 50% { transform: translate(-38px,-72px) rotate(-5deg); } }
@keyframes ojDrift3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-52px); } }
@media (max-width: 700px) { .oj3, .oj5 { display: none; } }

/* Méduses fluo : sans halo, plus petites, plus discrètes */
#oceanJellies img { filter: none !important; opacity: 0.38 !important; }
.oj1 { width: 58px !important; } .oj2 { width: 42px !important; }
.oj3 { width: 70px !important; } .oj4 { width: 36px !important; }
.oj5 { display: none !important; }
.app__jelly { filter: none !important; opacity: 0.6 !important; }
.app__jelly--1 { width: 46px; } .app__jelly--2 { width: 38px; } .app__jelly--3 { width: 30px; }
.app__jelly--4 { width: 40px; } .app__jelly--5 { width: 26px; }

/* ============================================
   Curseur jaune fluo (lime) + scrollbar lime
   ============================================ */
.cursor { mix-blend-mode: normal; }
.cursor__dot { background: var(--lime) !important; }
.cursor__ring { border-color: rgba(174,239,77,0.6) !important; }
.cursor.is-hover .cursor__ring { border-color: var(--lime) !important; background: rgba(174,239,77,0.15) !important; }

/* Barre de défilement (curseur latéral) en jaune fluo */
::-webkit-scrollbar-track { background: rgba(7,32,58,0.55) !important; }
::-webkit-scrollbar-thumb { background: var(--lime) !important; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime-dark) !important; }
html { scrollbar-color: var(--lime) rgba(7,32,58,0.55); }

/* Méduses : plus aérées (respirent) */
#oceanJellies img { opacity: 0.3 !important; }
.oj1 { top: 10% !important; } .oj2 { top: 34% !important; } .oj3 { top: 64% !important; } .oj4 { top: 84% !important; }
.app__jelly { opacity: 0.5 !important; }

/* ============================================
   GLASSY APPLE — verre dépoli (liquid glass)
   ============================================ */

/* Panneaux principaux en verre */
.offer-card, .team-card, .contact__form, .gallery__address {
  background: rgba(255,255,255,0.10) !important;
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow: 0 10px 40px rgba(3,18,34,0.28), inset 0 1px 0 rgba(255,255,255,0.22) !important;
  border-radius: var(--radius-lg) !important;
}
.team-card { padding: 1.25rem 1.4rem; }

/* Piliers en tuiles de verre (au lieu de la grille à gouttières) */
.piliers { background: transparent !important; border: none !important; gap: 14px !important; }
.pilier {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.pilier:hover { background: rgba(255,255,255,0.16) !important; }

/* Carte map en verre */
.gallery__map { border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 10px 40px rgba(3,18,34,0.28); }

/* Champs de formulaire en verre */
.form-group input, .form-group textarea {
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.08) !important;
}

/* Boutons fantômes en verre */
.btn--ghost {
  background: rgba(255,255,255,0.10) !important;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.28) !important;
}

/* Menu : verre dépoli turquoise (Apple) */
.nav, .nav.is-scrolled {
  background: rgba(69,207,224,0.58) !important;
  -webkit-backdrop-filter: blur(22px) saturate(180%) !important;
  backdrop-filter: blur(22px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.30) !important;
}

/* Carte WhatsApp : léger reflet verre */
.whatsapp-card { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); box-shadow: 0 10px 30px rgba(22,169,194,0.3), inset 0 1px 0 rgba(255,255,255,0.25); }

/* ============================================
   PLUS GLASSY — images + menu
   ============================================ */

/* Images : cadre verre (bordure lumineuse + reflet + ombre) */
.gallery__grid img, .offer-card img, .manifesto__photo, .manifesto__photo img,
.team__photo, .visit__photo img, .app__mockups .mockup {
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 14px 44px rgba(3,18,34,0.32), inset 0 1px 0 rgba(255,255,255,0.30) !important;
}

/* Reflet diagonal "verre" sur les photos encadrées */
.manifesto__photo, .team__photo { position: relative; }
.manifesto__photo::after, .team__photo::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.05) 30%, transparent 55%);
  pointer-events: none; z-index: 2;
}

/* Menu : verre dépoli plus prononcé (plus transparent, plus de flou) */
.nav, .nav.is-scrolled {
  background: rgba(69,207,224,0.40) !important;
  -webkit-backdrop-filter: blur(30px) saturate(200%) !important;
  backdrop-filter: blur(30px) saturate(200%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.38) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.40);
}

/* ============================================
   LOADER — écran de lancement FluidBody
   ============================================ */
.loader {
  background: linear-gradient(180deg, #07203A 0%, #0C3A4C 45%, #11788A 100%) !important;
  z-index: 99999;
  gap: 1.5rem;
}
.loader__meduse {
  width: clamp(120px, 18vw, 200px); height: auto;
  filter: drop-shadow(0 0 32px rgba(120,200,220,0.55));
  animation: loaderPulse 2.6s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-14px) scale(1.04); }
}
.loader__wordmark {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: #EAF7FA;
}
.loader__tagline {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(234,247,250,0.65);
  margin-top: -0.5rem;
}
.loader__bar { width: 220px; background: rgba(255,255,255,0.15); }
.loader__bar::after { background: var(--lime) !important; box-shadow: 0 0 12px rgba(174,239,77,0.6); }
/* On retire l'ancien mark "EP." s'il restait */
.loader__mark { display: none !important; }

/* ============================================
   FIX FOOTER + LISIBILITÉ — nav lime, plus de bleu foncé
   ============================================ */

/* Menu supérieur : turquoise profond pour la lisibilité sur le glass cyan */
.nav__link,
.nav__logo-text strong,
.nav__lang a,
.nav__lang a.is-active {
  color: var(--turquoise-deep) !important;
}
.nav__logo-text small {
  color: rgba(20,120,138,0.85) !important;
  letter-spacing: 0.18em;
}
.nav__link::after { background: var(--lime) !important; }
.nav__link:hover { color: var(--lime-dark) !important; }
.nav__lang a:hover { color: var(--lime-dark) !important; }
.nav__toggle span { background: var(--turquoise-deep) !important; }

/* Drawer mobile : turquoise profond */
.drawer__link, .drawer__secondary a {
  color: var(--turquoise-deep) !important;
}
.drawer__link:hover, .drawer__secondary a:hover {
  color: var(--lime-dark) !important;
}

/* Footer : colonnes visibles, textes lime/turquoise, plus aucun bleu foncé */
.footer__top {
  position: relative;
  z-index: 3;
}
.footer__col h4 {
  color: var(--lime) !important;
  opacity: 1;
}
.footer__col a {
  color: #EAF7FA !important;
  opacity: 0.92;
}
.footer__col a:hover {
  color: var(--lime) !important;
  opacity: 1;
}
.footer__tagline {
  color: rgba(234,247,250,0.85) !important;
}
.footer__brand-text strong { color: #FFFFFF !important; }
.footer__brand-text small  { color: rgba(255,255,255,0.7) !important; }

/* Footer bottom : retire le bleu foncé (#06324C) → turquoise lumineux */
.footer__bottom {
  color: var(--turquoise) !important;
  border-top-color: rgba(174,239,77,0.25) !important;
}
.footer__bottom .footer__legal a {
  color: var(--lime) !important;
}
.footer__bottom .footer__legal a:hover {
  color: #DFFB6B !important;
}

/* Garantit que le footer reste sombre en bas pour le contraste du copyright */
.footer {
  background: linear-gradient(180deg, rgba(7,32,58,0.65) 0%, rgba(17,120,138,0.55) 60%, rgba(10,40,58,0.85) 100%) !important;
}

/* ============================================
   SWEEP — toutes les écritures bleu foncé restantes
   Titres → blanc cassé, italiques → turquoise, citations → lime
   ============================================ */

/* Toutes les italiques en accent (em dans h1/h2/h3) : turquoise lumineux */
h1 em, h2 em, h3 em,
.hero__title em,
.manifesto__title em,
.method__head h2 em,
.principles__head h2 em,
.team__content h2 em,
.offers__head h2 em,
.gallery__head h2 em,
.contact__head h2 em,
.studio-moment__quote em,
.app h2 em {
  color: var(--turquoise) !important;
  font-style: italic;
}

/* Hero — corps de texte et lede en clair */
.hero__lede, .hero__badge {
  color: rgba(232,247,250,0.92) !important;
}
.hero__badge-pill {
  color: var(--lime) !important;
}

/* Manifesto */
.manifesto__copy p { color: rgba(232,245,248,0.85) !important; }
.manifesto__eyebrow,
.manifesto__signature {
  color: var(--turquoise) !important;
}
.manifesto__signature-mark {
  color: var(--lime) !important;
}
.manifesto__photo-tag-text strong { color: #EAF7FA !important; }
.manifesto__photo-tag-text span  { color: rgba(232,245,248,0.7) !important; }

/* Eyebrows et étiquettes (tous les "eyebrow" et "eyebrow-r") */
.eyebrow, .eyebrow-r,
.method__head .eyebrow-r,
.principles__head .eyebrow-r,
.team .eyebrow-r,
.gallery__head .eyebrow-r,
.contact__head .eyebrow-r {
  color: var(--lime) !important;
  letter-spacing: 0.18em;
}

/* Méthode — credo italique ("Comprendre · Ressentir · Exécuter · Évoluer") */
.method__credo-line { color: var(--turquoise) !important; }
.method__credo-line span { color: var(--lime) !important; }
.method__app-link {
  color: var(--lime) !important;
  border-bottom: 1px solid rgba(174,239,77,0.4);
}

/* Principes — credo italique de fin */
.principles__credo { color: rgba(232,245,248,0.85) !important; font-style: italic; }
.principle__num { color: var(--lime) !important; }

/* Équipe — citation de Sabrina en italique */
.team__quote {
  border-left: 2px solid var(--lime) !important;
}
.team__quote p {
  color: var(--turquoise) !important;
  font-style: italic;
}
.team__quote cite {
  color: rgba(232,245,248,0.7) !important;
  font-style: normal;
}
.team__meta { color: var(--lime) !important; }
.team__bio p { color: rgba(232,245,248,0.85) !important; }

/* Cours */
.offers__lead { color: rgba(232,245,248,0.85) !important; }
.offer-card__tag { color: var(--lime) !important; }
.offers__shop-note { color: rgba(232,245,248,0.7) !important; }
.offers__shop-note a { color: var(--lime) !important; }

/* Galerie — adresse */
.gallery__address h3 { color: var(--lime) !important; }
.gallery__address address { color: rgba(232,245,248,0.85) !important; }
.gallery__address a { color: var(--turquoise) !important; }

/* Section citation Joseph Pilates */
.studio-moment__quote {
  color: #EAF7FA !important;
}
.studio-moment__cite {
  color: var(--lime) !important;
}

/* Contact */
.contact__row strong { color: var(--lime) !important; }
.contact__row a { color: var(--turquoise) !important; }
.contact__row a:hover { color: var(--lime) !important; }
.whatsapp-card strong { color: var(--lime) !important; }
.whatsapp-card span  { color: rgba(232,245,248,0.7) !important; }
.contact__form h3 { color: var(--lime) !important; }
.form-group input, .form-group textarea {
  color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(44,196,214,0.3) !important;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--lime) !important;
  outline: none;
}

/* App / FluidBody — déjà sombre, mais on cale le CTA */
.app__cta { background: var(--lime) !important; color: var(--charcoal) !important; }

/* Liens app (Découvrir l'app) */
.method__app-link:hover { color: #DFFB6B !important; }

/* ============================================
   BOUTONS WHATSAPP — jaune fluo (lime)
   ============================================ */

/* FAB flottant — méduse libre + petit badge WhatsApp en coin
   Pas de conteneur rond : la méduse flotte directement sur la page.
   Width explicite (pas "auto") pour éviter un cycle de layout sur mobile
   Safari : "auto" + child img + `img { max-width: 100% }` résolvait à 0 px. */
.fab {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  width: 104px !important;
  height: auto !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: block !important;
  color: transparent !important;
  z-index: 90 !important;
}
.fab:hover { box-shadow: none !important; }
.fab::before { display: none !important; }

/* Méduse glassy : 100% du wrapper .fab (donc 104px desktop / 88px mobile),
   opacity 0.72 (verre diaphane), drop-shadow douce */
.fab__meduse {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  opacity: 0.72;
  filter: drop-shadow(0 6px 18px rgba(10, 37, 64, 0.30));
}

/* Téléphone discret posé sur le milieu/bas de la cloche — line-art bleu
   nuit, pas de pastille, juste un petit détail. */
.fab__badge {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  display: block;
  color: #0A2540;
}
.fab__badge svg {
  width: 15px !important;
  height: 15px !important;
  display: block;
  fill: none !important;
  stroke: #0A2540 !important;
  filter: none !important;
}

@media (max-width: 600px) {
  .fab { width: 88px !important; }
  .fab__badge { width: 13px; height: 13px; }
  .fab__badge svg { width: 13px !important; height: 13px !important; }
}

/* Respiration ample — cycle 3.8s, scale 1.0 → 1.08, easing doux. Sur le
   wrapper entier (méduse + badge respirent d'un bloc). Désactivée en
   reduced-motion. */
@keyframes fabBreath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
@media (prefers-reduced-motion: no-preference) {
  .fab {
    transform-origin: bottom right;
    animation:
      fabIn 0.5s 0.2s var(--ease-out-soft) both,
      fabBreath 3.8s 0.7s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }
  .fab:hover {
    animation-play-state: paused, paused;
    transform: scale(1.10) !important;
  }
}

/* Carte WhatsApp dans la section Contact */
.whatsapp-card {
  background: var(--lime) !important;
  color: var(--charcoal) !important;
  box-shadow: 0 10px 30px rgba(174,239,77,0.3), inset 0 1px 0 rgba(255,255,255,0.4) !important;
}
.whatsapp-card svg {
  fill: var(--charcoal) !important;
}
.whatsapp-card strong {
  color: var(--charcoal) !important;
}
.whatsapp-card span {
  color: rgba(12,39,66,0.78) !important;
}

/* Bouton WhatsApp du drawer mobile (btn--rouge) */
.btn--rouge {
  background: var(--lime) !important;
  color: var(--charcoal) !important;
}
.btn--rouge:hover {
  background: var(--lime-dark) !important;
  color: var(--charcoal) !important;
}

/* ============================================
   FORCE TITRES DE SECTION — fini les h2 bleu foncé invisibles
   ============================================ */
.hero__title,
.manifesto__title,
.method__head h2,
.principles__head h2,
.team__content h2,
.offers__head h2,
.gallery__head h2,
.contact__head h2,
.studio-moment__quote,
.app h2 {
  color: #EAF7FA !important;
}

/* Les italiques internes (em) restent en turquoise/lime */
.hero__title em,
.manifesto__title em,
.method__head h2 em,
.principles__head h2 em,
.team__content h2 em,
.offers__head h2 em,
.gallery__head h2 em,
.contact__head h2 em,
.app h2 em {
  color: var(--turquoise) !important;
}

/* ============================================
   LOGO BADGE NAV — utilise le carré rouge officiel
   ============================================ */
.nav__logo-badge {
  background: transparent !important;
  overflow: hidden;
  padding: 0 !important;
  /* Ombre neutre douce pour préserver la lisibilité du mark sur zones claires du hero */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}
.nav__logo-badge img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  filter: none !important;
}

/* ============================================
   MANIFESTO PHOTO TAG — fond sombre + texte clair
   (avant : fond blanc + texte clair = invisible)
   ============================================ */
.manifesto__photo-tag {
  background: rgba(10,40,58,0.85) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(174,239,77,0.25);
}
.manifesto__photo-tag-icon {
  background: var(--lime) !important;
  color: var(--charcoal) !important;
}
.manifesto__photo-tag-text strong {
  color: var(--lime) !important;
}
.manifesto__photo-tag-text span {
  color: rgba(232,245,248,0.85) !important;
}

/* ============================================
   STATS — chiffres clés du studio en cartes de verre
   ============================================ */
.stats {
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat {
  position: relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  padding: 2.25rem 1.5rem 2rem;
  text-align: center;
  transition: background 0.3s var(--ease-out-soft);
  overflow: hidden;
}
.stat:hover { background: rgba(255,255,255,0.16); }
/* Pastille lime en haut à droite (comme l'inspi) */
.stat::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(174,239,77,0.22), 0 0 16px rgba(174,239,77,0.45);
}
.stat__number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: #EAF7FA;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  white-space: nowrap;
}
.stat__num-value {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  min-width: 1.6ch;
}
.stat__unit {
  font-size: 0.42em;
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--lime);
  letter-spacing: 0.04em;
  margin-left: 0.2rem;
  transform: translateY(-0.2em);
}
.stat__label {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,245,248,0.72);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stat { padding: 1.75rem 1.2rem 1.5rem; }
  .stat::after { top: 0.75rem; right: 0.75rem; }
}

/* ============================================
   POLISH 2026 — Header (glass premium) + Hero (scrim + lede + badge)
   Surcharge finale des overrides nav cumulés (l. 1864/1885/1910/2049),
   du .hero__overlay (l. 1836) et des couleurs .hero__lede / .hero__badge
   (l. 2135-2140).
   ============================================ */

/* ---- Nav : transparente sur le hero, glass blanc dépoli au scroll ---- */
.nav {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.78) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  border-bottom: 1px solid rgba(10, 37, 64, 0.06) !important;
  box-shadow: 0 1px 30px rgba(10, 37, 64, 0.06) !important;
}

/* Texte nav sur le hero (transparent) : blanc + ombre douce pour la photo */
.nav__link,
.nav__logo-text strong,
.nav__lang a,
.nav__lang a.is-active {
  color: #FFFFFF !important;
  text-shadow: 0 1px 8px rgba(10, 37, 64, 0.45);
}
.nav__logo-text small {
  color: rgba(255, 255, 255, 0.85) !important;
  text-shadow: 0 1px 6px rgba(10, 37, 64, 0.4);
}
.nav__link::after { background: var(--lime) !important; }
.nav__link:hover { color: var(--lime) !important; }
.nav__lang a:hover { color: var(--lime) !important; }

/* Texte nav scrollé (glass blanc) : turquoise profond, sans ombre */
.nav.is-scrolled .nav__link,
.nav.is-scrolled .nav__logo-text strong,
.nav.is-scrolled .nav__lang a,
.nav.is-scrolled .nav__lang a.is-active {
  color: var(--turquoise-deep) !important;
  text-shadow: none;
}
.nav.is-scrolled .nav__logo-text small {
  color: rgba(20, 120, 138, 0.95) !important;
  text-shadow: none;
}
.nav.is-scrolled .nav__link:hover { color: var(--lime-dark) !important; }
.nav.is-scrolled .nav__lang a:hover { color: var(--lime-dark) !important; }

/* ---- Hamburger : zone tactile 44x44, contraste suivant l'état du nav ---- */
.nav__toggle {
  width: 44px !important;
  height: 44px !important;
}
.nav__toggle span { background: #FFFFFF !important; }
.nav__toggle span:nth-child(1) { top: 14px !important; }
.nav__toggle span:nth-child(2) { bottom: 14px !important; }
.nav.is-scrolled .nav__toggle span { background: var(--turquoise-deep) !important; }

/* ---- Bouton "Réserver" : pill lime, texte bleu nuit (jamais blanc sur lime) ---- */
.nav__cta {
  background: var(--lime) !important;
  color: #0A2540 !important;
  font-weight: 700;
  transition: background 0.2s var(--ease-out-soft), color 0.2s var(--ease-out-soft), transform 0.2s var(--ease-out-soft), box-shadow 0.2s var(--ease-out-soft) !important;
}
.nav__cta:hover {
  background: var(--lime-dark) !important;
  color: #0A2540 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(174, 239, 77, 0.35);
}
.nav__cta:active {
  background: var(--lime-dark) !important;
  color: #0A2540 !important;
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(174, 239, 77, 0.25);
}

/* ---- Hero overlay : scrim sombre renforcé du bas vers le haut ---- */
.hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 32, 58, 0) 0%,
    rgba(7, 32, 58, 0.10) 35%,
    rgba(7, 32, 58, 0.35) 60%,
    rgba(7, 32, 58, 0.70) 85%,
    #0A2540 100%
  ) !important;
}

/* ---- Lede : blanc opaque, plus de poids, ombre marquée ---- */
.hero__lede {
  color: #FFFFFF !important;
  font-weight: 500 !important;
  text-shadow: 0 2px 18px rgba(7, 32, 58, 0.65) !important;
  opacity: 1;
}

/* ---- Badge "2003 · Premier centre…" : pill rouge propre, texte charcoal ---- */
.hero__badge {
  padding: 0.4rem 1rem 0.4rem 0.4rem !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  color: var(--charcoal) !important;
  gap: 0.55rem;
  line-height: 1;
}
.hero__badge-pill {
  background: var(--teal) !important;
  color: #FFFFFF !important;
  padding: 0.3rem 0.65rem !important;
  font-weight: 700;
}
@media (max-width: 600px) {
  .hero__badge {
    font-size: 0.72rem;
    max-width: calc(100% - 1rem);
  }
}

/* ---- Hero : ligne de réassurance sous les CTA ---- */
/* État de base à opacity:1 → reste visible si prefers-reduced-motion coupe l'anim.
   L'animation embellit l'entrée mais ne conditionne pas la visibilité. */
.hero__reassurance {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 10px rgba(7, 32, 58, 0.5);
  opacity: 1;
  animation: reassuranceIn 1s 1s var(--ease-out-soft) both;
}
@keyframes reassuranceIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__reassurance svg {
  width: 14px;
  height: 14px;
  color: var(--lime);
  flex-shrink: 0;
}

/* ---- Badge "credential" (PMA) — pill sobre, ton lime ---- */
.credential {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(174, 239, 77, 0.45);
  background: rgba(174, 239, 77, 0.08);
  color: var(--lime) !important;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1rem;
  white-space: nowrap;
}
.credential svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.team-card .credential {
  margin-top: 0.65rem;
  font-size: 0.66rem;
  padding: 0.32rem 0.7rem;
}

/* ============================================
   NAV CAPSULE — style FluidBody+
   Pilule glassy sombre flottante, accent lime sur l'item actif.
   Surcharge intégralement les styles nav précédents.
   ============================================ */

.nav {
  position: fixed !important;
  top: 1.25rem !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  max-width: calc(100vw - 2rem) !important;
  padding: 0.55rem 0.55rem 0.55rem 1.25rem !important;
  background: rgba(10, 37, 64, 0.65) !important;
  -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
  backdrop-filter: blur(22px) saturate(160%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}
.nav.is-scrolled {
  background: rgba(10, 37, 64, 0.78) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* Logo dans la capsule */
.nav__logo {
  padding-right: 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  margin-right: 0.15rem;
}
.nav__logo-text strong,
.nav.is-scrolled .nav__logo-text strong {
  color: #FFFFFF !important;
  text-shadow: none !important;
  font-size: 0.85rem;
}
.nav__logo-text small,
.nav.is-scrolled .nav__logo-text small {
  color: rgba(255, 255, 255, 0.7) !important;
  text-shadow: none !important;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

/* Liens menu : pill arrondi sur hover, lime sur actif */
.nav__link,
.nav.is-scrolled .nav__link {
  color: #FFFFFF !important;
  text-shadow: none !important;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem !important;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--ease-out-soft), color 0.2s var(--ease-out-soft);
}
.nav__link::after { display: none !important; }
.nav__link:hover,
.nav.is-scrolled .nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF !important;
}
.nav__link.is-active,
.nav.is-scrolled .nav__link.is-active {
  background: var(--lime) !important;
  color: #0A2540 !important;
  font-weight: 600;
}

/* Bascule de langue : pills FR/EN dans un groupe arrondi.
   margin-right: auto = pousse les items suivants (.nav__cta, .nav__toggle)
   à droite du header flex, et garde .nav__lang collé au menu sur desktop.
   En mobile, comme .nav__menu et .nav__cta sont cachés, ce margin laisse
   .nav__lang à gauche du burger — toggle accessible en un clic. */
.nav__lang {
  display: inline-flex !important;
  align-items: center;
  gap: 0.15rem;
  padding: 0.18rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  margin-left: 0.35rem;
  margin-right: auto;
}
.nav__lang a,
.nav.is-scrolled .nav__lang a {
  color: #FFFFFF !important;
  text-shadow: none !important;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.65;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.nav__lang a:hover { opacity: 1; }
.nav__lang a.is-active,
.nav.is-scrolled .nav__lang a.is-active {
  background: var(--lime) !important;
  color: #0A2540 !important;
  opacity: 1;
}
.nav__lang .sep { display: none !important; }

/* CTA "Réserver" : pill lime intégrée à la capsule */
.nav__cta {
  background: var(--lime) !important;
  color: #0A2540 !important;
  padding: 0.55rem 1.1rem !important;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  margin-left: 0.35rem;
  gap: 0.4rem;
}
.nav__cta:hover {
  background: var(--lime-dark) !important;
  color: #0A2540 !important;
  box-shadow: 0 6px 18px rgba(174, 239, 77, 0.4);
  transform: translateY(-1px);
}
.nav__cta:active {
  background: var(--lime-dark) !important;
  color: #0A2540 !important;
  transform: translateY(0);
}

/* Hamburger : pastille verre dépoli arrondi 44x44 */
.nav__toggle {
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
}
.nav__toggle span,
.nav.is-scrolled .nav__toggle span { background: #FFFFFF !important; }

/* Responsive : capsule compacte ≤ 900px */
@media (max-width: 900px) {
  .nav {
    top: 0.85rem !important;
    padding: 0.4rem 0.45rem 0.4rem 0.85rem !important;
    gap: 0.55rem !important;
  }
  .nav__menu, .nav__cta { display: none !important; }
  .nav__toggle { display: block !important; }
  .nav__logo { border-right: none; padding-right: 0; margin-right: 0; }
  .nav__logo-text strong { font-size: 0.8rem; }
  .nav__logo-text small { font-size: 0.55rem; }
}

/* Drawer mobile : panneau glass sombre cohérent */
.drawer {
  background: rgba(10, 37, 64, 0.88) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px 0 0 28px;
}
.drawer__link {
  color: #FFFFFF !important;
  padding: 0.65rem 1.1rem !important;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.drawer__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF !important;
}
.drawer__link.is-active {
  background: var(--lime) !important;
  color: #0A2540 !important;
}
.drawer__secondary a {
  color: rgba(255, 255, 255, 0.78) !important;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
}
.drawer__secondary a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF !important;
}

/* ============================================
   NAV CAPSULE — affinage v2
   Logo extrait de la capsule, capsule recentrée et compactée à son contenu.
   ============================================ */

/* Logo extrait de la capsule : flotte en haut à gauche, indépendant.
   position:fixed le retire du flex parent → la capsule se compacte autour
   des seuls liens / lang / CTA. */
.nav__logo {
  position: fixed !important;
  top: 1.25rem !important;
  left: 1.5rem !important;
  z-index: 101 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.7rem;
  padding: 0 !important;
  border-right: none !important;
  margin-right: 0 !important;
  background: none !important;
}

/* Baseline du logo : tient sur une seule ligne, plus de wrap caractère par caractère */
.nav__logo-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  line-height: 1.05;
}
.nav__logo-text strong {
  color: #FFFFFF !important;
  text-shadow: 0 2px 8px rgba(10, 37, 64, 0.5) !important;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}
.nav__logo-text small {
  color: rgba(255, 255, 255, 0.78) !important;
  text-shadow: 0 1px 6px rgba(10, 37, 64, 0.5) !important;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

/* Capsule : reste centrée, compacte autour de son contenu (menu + lang + CTA).
   max-width réduit pour éviter qu'elle traîne d'un bord à l'autre. */
.nav {
  max-width: max-content !important;
}

/* Sur mobile : logo à gauche, capsule (hamburger seul) à droite */
@media (max-width: 900px) {
  .nav {
    left: auto !important;
    right: 1rem !important;
    transform: none !important;
    padding: 0.3rem !important;
    max-width: none !important;
  }
  .nav__logo {
    top: 0.95rem !important;
    left: 1rem !important;
  }
  .nav__logo-text strong { font-size: 0.82rem; }
  .nav__logo-text small  { font-size: 0.55rem; letter-spacing: 0.14em; }
}

/* ============================================
   NAV CAPSULE — affinage v4 : lime glassy centrée
   - Re-centrage horizontal (annule v3 alignement à droite, desktop)
   - Fond lime translucide + backdrop-blur (verre teinté lime)
   - Texte des liens en bleu nuit pour contraster sur lime
   - États actifs (FR + Réserver) : pill bleu nuit plein + texte blanc
   ============================================ */

.nav {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  background: rgba(174, 239, 77, 0.65) !important;
  -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
  backdrop-filter: blur(22px) saturate(160%) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 8px 30px rgba(10, 37, 64, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}
.nav.is-scrolled {
  background: rgba(174, 239, 77, 0.82) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 10px 36px rgba(10, 37, 64, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* Liens : bleu nuit pour contraster sur lime */
.nav__link,
.nav.is-scrolled .nav__link {
  color: #0A2540 !important;
  text-shadow: none !important;
}
.nav__link:hover,
.nav.is-scrolled .nav__link:hover {
  background: rgba(10, 37, 64, 0.10);
  color: #0A2540 !important;
}

/* Groupe de langues : conteneur sobre, cohérent avec le lime */
.nav__lang {
  background: rgba(10, 37, 64, 0.08) !important;
}
.nav__lang a,
.nav.is-scrolled .nav__lang a {
  color: #0A2540 !important;
  text-shadow: none !important;
}

/* États actifs (lien menu + FR/EN) : pill bleu nuit plein + texte blanc */
.nav__link.is-active,
.nav.is-scrolled .nav__link.is-active,
.nav__lang a.is-active,
.nav.is-scrolled .nav__lang a.is-active {
  background: #0A2540 !important;
  color: #FFFFFF !important;
}

/* CTA "Réserver" : pill bleu nuit plein + texte blanc */
.nav__cta {
  background: #0A2540 !important;
  color: #FFFFFF !important;
}
.nav__cta:hover {
  background: #06304A !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.35);
}
.nav__cta:active {
  background: #06304A !important;
  color: #FFFFFF !important;
}

/* Hamburger : barres en bleu nuit pour contraste sur lime */
.nav__toggle {
  background: rgba(10, 37, 64, 0.08) !important;
  border-color: rgba(10, 37, 64, 0.15) !important;
}
.nav__toggle span,
.nav.is-scrolled .nav__toggle span {
  background: #0A2540 !important;
}

/* Mobile : capsule garde la position à droite (le centre chevaucherait le logo) */
@media (max-width: 900px) {
  .nav {
    left: auto !important;
    right: 1rem !important;
    transform: none !important;
  }
}

/* ============================================
   NAV CAPSULE — affinage v5 : verre dépoli ultra-transparent
   - Fond : voile blanc léger (~18 %) + nuance lime à 10 %, c'est le
     backdrop-blur qui crée la matière, pas la couleur.
   - Bouton "Réserver" en BLANC clair : devient le point lumineux.
   - FR actif : pilule blanche discrète (vs pill bleu nuit du v4).
   ============================================ */

.nav {
  /* Multi-bg : gradient blanc translucide POSÉ sur teinte lime, l'ensemble
     reste ultra-clair → opacité visible ~26 %, blur fait le reste */
  background:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    rgba(174, 239, 77, 0.10) !important;
  -webkit-backdrop-filter: blur(20px) saturate(120%) !important;
  backdrop-filter: blur(20px) saturate(120%) !important;
  border: 1px solid rgba(255, 255, 255, 0.40) !important;
  box-shadow: 0 8px 28px rgba(10, 37, 64, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
}
.nav.is-scrolled {
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    rgba(174, 239, 77, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.50) !important;
  box-shadow: 0 10px 34px rgba(10, 37, 64, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
}

/* Groupe FR/EN : fond très subtil, juste assez pour grouper visuellement */
.nav__lang { background: rgba(10, 37, 64, 0.06) !important; }

/* États actifs (lien menu + FR/EN) : pill blanche discrète */
.nav__link.is-active,
.nav.is-scrolled .nav__link.is-active,
.nav__lang a.is-active,
.nav.is-scrolled .nav__lang a.is-active {
  background: rgba(255, 255, 255, 0.75) !important;
  color: #0A2540 !important;
  box-shadow: 0 1px 4px rgba(10, 37, 64, 0.10);
}

/* CTA "Réserver" : pill blanc clair, point lumineux de la capsule */
.nav__cta {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #0A2540 !important;
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.nav__cta:hover {
  background: #FFFFFF !important;
  color: #0A2540 !important;
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.22), inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}
.nav__cta:active {
  background: rgba(255, 255, 255, 0.94) !important;
  color: #0A2540 !important;
  box-shadow: 0 3px 10px rgba(10, 37, 64, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(0);
}

/* Hamburger : fond clair plus aéré, barres bleu nuit conservées */
.nav__toggle {
  background: rgba(255, 255, 255, 0.5) !important;
  border-color: rgba(10, 37, 64, 0.12) !important;
}

/* ============================================
   HERO BADGE — pilule "2003" en lime, texte bleu nuit
   La position est dans le flux (sous le titre, dans le HTML).
   ============================================ */

.hero__badge-pill {
  background: #AEEF4D !important;
  color: #0A2540 !important;
}

/* Desktop uniquement : empile le badge sous la ligne PMA
   (sur mobile, le wrap inline produit déjà ce résultat — on n'y touche pas) */
@media (min-width: 769px) {
  .hero__badge {
    display: flex !important;
    width: fit-content;
    margin-top: 1.25rem;
  }
}

/* ============================================
   CREDENTIALS WRAPPER — empile les pills de credentials et permet le
   wrap de leur contenu (pour les libellés longs type ELDOA / Odaka Yoga).
   ============================================ */
.credentials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1rem;
}
.credentials .credential {
  margin-top: 0 !important;
  white-space: normal;
  line-height: 1.45;
  text-align: left;
}

/* ============================================
   SECTION TARIFS — cartes verre + accents lime
   ============================================ */
.pricing {
  padding: var(--section) var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
}
.pricing__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.pricing__head h2 {
  font-size: var(--fs-display);
  margin-bottom: 1.25rem;
}
.pricing__intro {
  margin: 0 auto;
  max-width: 60ch;
  line-height: 1.65;
  color: rgba(232, 245, 248, 0.78);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  padding: 2.25rem 1.75rem;
  transition: background 0.3s var(--ease-out-soft);
}
.pricing-card:hover { background: rgba(255, 255, 255, 0.14); }
.pricing-card::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(174, 239, 77, 0.22), 0 0 16px rgba(174, 239, 77, 0.45);
}
.pricing-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.55rem;
  font-weight: 600;
}
.pricing-card__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #EAF7FA;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.pricing-card__list li:last-child { border-bottom: none; }
.pricing-card__list span {
  color: rgba(232, 245, 248, 0.78);
  font-size: 0.95rem;
}
.pricing-card__list strong {
  font-family: var(--font-sans);
  font-weight: 700;
  color: #EAF7FA;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pricing-card { padding: 1.75rem 1.4rem; }
  .pricing-card::after { top: 0.85rem; right: 0.85rem; }
}

/* "TVA offerte" — texte signature sous la grille de prix.
   Dégradé lime → teal sur le texte (background-clip: text). */
.tva-offerte {
  margin: 3.5rem auto 2.5rem;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  background: linear-gradient(90deg, var(--lime) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   APP STORES — colonne droite contenant mockups + badges (App Store /
   Apple TV / Google Play) sous les iPhones. Non cliquables pour l'instant.
   ============================================ */
.app__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.app__right .app__mockups { width: 100%; }
.app__stores {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}
.app__stores-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}
.app__stores-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.app__store-link {
  display: inline-block;
  cursor: default;
  pointer-events: none;
  user-select: none;
}
.app__store-badge {
  height: 48px;
  width: auto;
  display: block;
  user-select: none;
}
@media (max-width: 480px) {
  .app__store-badge { height: 44px; }
  .app__stores-row { gap: 10px; }
}

/* ============================================
   DRAWER MOBILE — entrée "Réserver" : accent lime discret
   Place-la en tête de liste, dans l'esprit pill du drawer mais teintée
   lime pour signaler l'action principale.
   ============================================ */
.drawer__link.drawer__link--cta {
  background: rgba(174, 239, 77, 0.18);
  border: 1px solid rgba(174, 239, 77, 0.45);
  color: #0A2540 !important;
}
.drawer__link.drawer__link--cta:hover {
  background: rgba(174, 239, 77, 0.32);
  border-color: rgba(174, 239, 77, 0.65);
  color: #0A2540 !important;
}

/* ============================================
   NAV CTA "Réserver" — glassy lime (esprit verre, sur capsule lime)
   Lime translucide + bordure lime nette pour rester distinct du fond
   capsule (lui aussi lime ultra-transparent). Texte bleu nuit.
   ============================================ */
.nav__cta {
  background: rgba(174, 239, 77, 0.30) !important;
  -webkit-backdrop-filter: blur(8px) saturate(150%) !important;
  backdrop-filter: blur(8px) saturate(150%) !important;
  border: 1px solid rgba(174, 239, 77, 0.55) !important;
  color: #0A2540 !important;
  box-shadow:
    0 2px 8px rgba(10, 37, 64, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
}
.nav__cta:hover {
  background: rgba(174, 239, 77, 0.50) !important;
  border-color: rgba(174, 239, 77, 0.75) !important;
  color: #0A2540 !important;
  box-shadow:
    0 6px 18px rgba(174, 239, 77, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.40) !important;
}
.nav__cta:active {
  background: rgba(174, 239, 77, 0.55) !important;
  color: #0A2540 !important;
  transform: translateY(0);
}

/* ============================================
   FOOTER POLISH — logo plus grand + dégagement du FAB WhatsApp
   ============================================ */

/* Logo footer agrandi (avant 88×88, baseline 0.7rem) */
.footer__brand-img {
  width: 120px !important;
  height: 120px !important;
}
.footer__brand-text strong { font-size: 1.1rem !important; }
.footer__brand-text small  { font-size: 0.72rem !important; }

/* Éviter que les liens légaux ("Confidentialité · CGV · EN") soient
   recouverts par le FAB WhatsApp en bas à droite.
   FAB desktop = 60×60 + 2rem ; mobile ≤600px = 54×54 + 1.25rem.
   On pousse la dernière ligne au-dessus + on aère à droite. */
.footer__bottom {
  padding-bottom: 5rem !important;
  padding-right: 6rem !important;
}
@media (max-width: 768px) {
  .footer__bottom {
    padding-bottom: 4.5rem !important;
    padding-right: 0 !important;        /* sur mobile, on laisse wrapper */
    justify-content: center !important;
    text-align: center;
  }
  .footer__brand-img {
    width: 100px !important;
    height: 100px !important;
  }
}

/* ============================================
   HERO MOBILE — empilement photo bannière + texte sur fond uni
   Sur mobile (≤ 768px), photo et texte ne se superposent plus :
   - la photo devient une bannière en haut (48vh, Sabrina visible),
   - le texte (titre / lede / CTAs / PMA / badge) passe en dessous
     sur fond bleu nuit #0A2540, parfaitement lisible.
   Desktop strictement inchangé.
   ============================================ */
@media (max-width: 768px) {
  .hero {
    display: block !important;
    min-height: 0 !important;
    padding: 0 !important;
    background: #0A2540 !important;
    align-items: initial !important;
  }

  /* Photo : bannière en haut, plus en position absolue */
  .hero__bg {
    position: relative !important;
    inset: auto !important;
    height: 48vh;
    width: 100%;
  }
  .hero__bg img {
    -webkit-mask-image: none !important;
    mask-image: none !important;
    object-position: center 30%;
  }

  /* Scrim / bulles ambiantes : neutralisés, on ne superpose plus rien */
  .hero__overlay,
  .hero__bubbles {
    display: none !important;
  }

  /* Bloc texte : sous la bannière, fond bleu nuit, padding aéré */
  .hero__inner {
    position: relative !important;
    z-index: 3;
    padding: 2.5rem var(--gutter) 3.25rem !important;
  }
}

/* ============================================
   MOBILE MENU — hamburger nu (sans capsule) + drawer typo épurée
   ============================================ */

/* Sur mobile : la capsule de nav devient transparente (le hamburger seul
   flottait dedans, ça faisait un "rond dans un rond" pas joli) */
@media (max-width: 900px) {
  .nav,
  .nav.is-scrolled {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  /* Hamburger nu : pas de fond ni de bordure, juste l'icône.
     drop-shadow porte sur les barres pour garantir la visibilité sur
     les zones claires de la photo hero. */
  .nav__toggle {
    background: transparent !important;
    border: none !important;
    filter: drop-shadow(0 1px 6px rgba(10, 37, 64, 0.55));
  }
  .nav__toggle span,
  .nav.is-scrolled .nav__toggle span {
    background: #FFFFFF !important;
  }
}

/* Drawer (menu déroulé) : entrées principales plus fines et un peu plus
   petites, espacement aéré, rendu épuré. Ne touche PAS aux liens secondaires
   (Boutique, Espace client, English version). */
.drawer__menu { gap: 1.5rem !important; }
.drawer__link {
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  letter-spacing: -0.005em !important;
}

/* Préférence utilisateur "reduce motion" : on coupe partout */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.001ms !important;
  }
  #oceanJellies, #oceanParticles, .caustics,
  .app__jelly, .app__bubbles, .hero__bubbles {
    display: none !important;
  }
}
