/* =========================================
   Ô LOUNGE — Design System (aligné maquette Sandra)
   ========================================= */

:root {
  /* Couleurs */
  --cream: #F4EDE3;
  --cream-soft: #FAF6EF;
  --cream-warm: #EFE5D2;
  --ink: #1A1612;
  --ink-2: #2A231C;
  --ink-soft: #4A413A;
  --text: #2B2520;
  --text-soft: rgba(43, 37, 32, 0.7);
  --text-mute: rgba(43, 37, 32, 0.55);
  --gold: #C99858;
  --gold-2: #B07F45;
  --gold-soft: #D9B47B;
  --ember: #E47A3C;
  --line: rgba(26, 22, 18, 0.10);
  --line-soft: rgba(26, 22, 18, 0.06);
  --line-light: rgba(244, 237, 227, 0.14);

  /* Typo */
  --ff-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --ff-caps: 'Marcellus', Georgia, serif;
  --ff-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-display-xl: clamp(2.6rem, 5.2vw, 4.4rem);
  --fs-display: clamp(2rem, 3.4vw, 2.9rem);
  --fs-display-sm: clamp(1.5rem, 2.3vw, 2rem);
  --fs-body: 0.95rem;
  --fs-small: 0.86rem;
  --fs-caps: 0.72rem;
  --fs-caps-sm: 0.66rem;

  /* Layout */
  --nav-h: 84px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
  --section-py: clamp(4rem, 7vw, 6.5rem);
  --radius: 4px;
  --radius-lg: 14px;

  /* Anim */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
.no-scroll { overflow: hidden; }

/* Bilingue : défaut FR visible, EN caché. JS bascule html[lang]. */
html[lang="fr"] .lang-en { display: none !important; }
html[lang="en"] .lang-fr { display: none !important; }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 var(--gutter);
  height: var(--nav-h);
  min-height: var(--nav-h);
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav > nav { display: flex; justify-content: center; min-width: 0; }
.nav__actions { justify-self: end; min-width: 0; }
.nav.is-scrolled {
  background: rgba(250, 246, 239, 0.98);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav.on-dark:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--cream);
}
.nav.on-dark:not(.is-scrolled) .nav__brand-img { filter: brightness(0) invert(1); }

.nav__brand { display: flex; align-items: center; gap: 0.7rem; height: 100%; }
.nav__brand-img { height: 48px; width: auto; display: block; transition: filter 0.3s ease; }
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__links {
  display: flex;
  gap: clamp(1.4rem, 2.4vw, 2.6rem);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 400;
}
.nav__links a {
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--gold); }
.nav__links a.is-active::after,
.nav__links a:hover::after { width: 18px; left: calc(50% - 9px); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__lang button {
  padding: 0.35rem 0.15rem;
  color: var(--text-mute);
  font-weight: 400;
  transition: color 0.2s ease;
}
.nav.on-dark:not(.is-scrolled) .nav__lang button { color: rgba(244, 237, 227, 0.55); }
.nav__lang button.is-active { color: var(--gold); }
.nav.on-dark:not(.is-scrolled) .nav__lang button.is-active { color: var(--gold-soft); }
.nav__lang span { color: var(--line); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-right: -8px;
}
.nav__burger span {
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav.on-dark:not(.is-scrolled) .nav__burger span { background: var(--cream); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream-soft);
  padding: 2rem var(--gutter) 3rem;
  transform: translateY(-110%);
  transition: transform 0.45s var(--ease);
  z-index: 99;
  box-shadow: 0 12px 30px rgba(26, 22, 18, 0.08);
}
.nav__mobile.is-open { transform: translateY(0); }
.nav__mobile-links {
  display: flex;
  flex-direction: column;
}
.nav__mobile-links a {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 400;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.nav__mobile-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}
@media (max-width: 540px) {
  .nav__lang { display: none; }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--ff-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn:hover { background: var(--gold-2); border-color: var(--gold-2); color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--gold);
}
.btn--outline:hover { background: var(--gold); color: #fff; }
.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 237, 227, 0.4);
}
.btn--outline-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--light {
  background: var(--cream-soft);
  color: var(--ink);
  border-color: var(--cream-soft);
}
.btn--light:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.btn--block { width: 100%; }
.btn__arrow {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  transition: transform 0.3s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =========================================
   TYPO HELPERS
   ========================================= */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-caps);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.display {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display em { font-style: italic; }

.divider {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.3rem 0 1.6rem;
}

/* =========================================
   HERO — half-screen
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  background: var(--cream-soft);
  overflow: hidden;
}
.hero__text {
  padding: calc(var(--nav-h) + 3.5rem) clamp(2rem, 4vw, 4.5rem) 4.5rem clamp(2rem, 5vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero__media {
  position: relative;
  overflow: hidden;
}
.hero__media img,
.hero__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: var(--fs-display-xl);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.hero__sub {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero__cta { align-self: flex-start; margin-bottom: 2.5rem; }

/* Pictos en bas du hero text */
.hero__pictos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 1.2rem 1rem;
  margin-top: auto;
  max-width: 640px;
}
.picto {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
}
.picto__icon {
  width: 36px; height: 36px;
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 1.3;
  fill: none;
}
.picto__icon.fill { fill: currentColor; stroke: none; }
.picto__label {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Hero dark variant (Sophro) */
.hero.is-dark { background: var(--ink); color: var(--cream); }
.hero.is-dark .hero__title { color: var(--cream); }
.hero.is-dark .hero__body { color: rgba(244, 237, 227, 0.72); }
.hero.is-dark .hero__sub { color: var(--gold-soft); }
.hero.is-dark .picto__label { color: rgba(244, 237, 227, 0.65); }

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__media {
    height: 56vh;
    min-height: 340px;
    order: -1;
  }
  .hero__text {
    padding: 3rem var(--gutter) 3.5rem;
  }
}

/* =========================================
   3 UNIVERS — cards horizontales
   ========================================= */
.universes {
  background: var(--cream-soft);
  padding: var(--section-py) var(--gutter);
  position: relative;
}
.universes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 3.5rem);
  max-width: 1340px;
  margin: 0 auto;
}
.universe {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.universe__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-warm);
  border-radius: 2px;
}
.universe__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.universe:hover .universe__media img { transform: scale(1.05); }

.universe__media.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  background: var(--cream-warm);
}
.universe__media.mosaic img {
  position: static;
  width: 100%; height: 100%;
}

.universe__eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fs-caps);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.universe__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.2;
  color: var(--ink);
}
.universe__body {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.75;
}
.universe__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.2rem;
}
.universe__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.universe__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6rem;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.universe__cta {
  margin-top: 0.6rem;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .universes__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* =========================================
   SECTION HEAD
   ========================================= */
.section {
  padding: var(--section-py) var(--gutter);
  background: var(--cream-soft);
}
.section.dark { background: var(--ink); color: var(--cream); }
.section.cream { background: var(--cream); }
.section-head {
  max-width: 760px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head .display {
  font-size: var(--fs-display);
  margin-top: 0.9rem;
}

/* =========================================
   AU FIL DE L'Ô
   ========================================= */
.aufil-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 3vw, 3rem);
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.aufil-main { display: flex; flex-direction: column; }
.aufil-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(2rem, 3vw, 3rem);
}
.aufil-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  min-height: 320px;
}
.aufil-card.vertical {
  grid-template-columns: 1fr;
  grid-template-rows: 200px auto;
  min-height: 0;
}
.aufil-card__media {
  position: relative;
  overflow: hidden;
}
.aufil-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.aufil-card:hover .aufil-card__media img { transform: scale(1.05); }
.aufil-card__body {
  padding: clamp(1.5rem, 2.4vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  justify-content: center;
}
.aufil-card__eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fs-caps);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.aufil-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  font-weight: 400;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.aufil-card__title svg {
  width: 22px; height: 22px;
  color: var(--gold);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}
.aufil-card__text {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.aufil-card__cta { align-self: flex-start; margin-top: 0.5rem; }

.aufil-astrolab {
  margin: clamp(2rem, 3vw, 3rem) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  max-width: 1340px;
  border-radius: 2px;
  overflow: hidden;
  min-height: 380px;
}
.aufil-astrolab__body {
  padding: clamp(2rem, 3.5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.aufil-astrolab__media { position: relative; overflow: hidden; }
.aufil-astrolab__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .aufil-grid { grid-template-columns: 1fr; }
  .aufil-side { grid-template-rows: auto auto; }
  .aufil-card { grid-template-columns: 1fr 1fr; }
  .aufil-astrolab { grid-template-columns: 1fr; }
  .aufil-astrolab__media { height: 280px; order: -1; }
}
@media (max-width: 640px) {
  .aufil-card { grid-template-columns: 1fr; }
  .aufil-card__media { height: 220px; }
}

.aufil-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding: clamp(3rem, 5vw, 4.5rem) var(--gutter);
  max-width: 900px;
  margin: 1.5rem auto 0;
  text-align: center;
  flex-wrap: wrap;
}
.aufil-cta__icon {
  width: 36px; height: 36px;
  color: var(--gold);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  flex-shrink: 0;
}
.aufil-cta__text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.4rem;
}
.aufil-cta__title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--ink);
}
.aufil-cta__sub {
  font-size: 0.88rem;
  color: var(--text-soft);
  max-width: 360px;
  line-height: 1.6;
}

/* =========================================
   SOPHRO — STORM OF CHANGE
   ========================================= */
.storm-logo {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 1.6rem;
}
.storm-logo__main {
  font-family: var(--ff-caps);
  font-size: clamp(1.3rem, 1.6vw, 1.5rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
}
.storm-logo__main .ember {
  color: var(--ember);
  font-style: normal;
}
.storm-logo__sub {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.storm-logo__sub::before,
.storm-logo__sub::after { content: "+"; color: var(--ember); }

.hero__title .accent {
  display: block;
  color: var(--ember);
  font-style: italic;
}

/* Cercle décoratif outils */
.tools-circle {
  position: absolute;
  top: 50%;
  right: clamp(2rem, 5vw, 5rem);
  transform: translateY(-50%);
  width: clamp(220px, 22vw, 290px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(20, 16, 12, 0.62);
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  border: 1px solid rgba(217, 180, 123, 0.32);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  gap: 0.6rem;
  z-index: 3;
}
.tools-circle__icon {
  width: 32px; height: 32px;
  color: var(--ember);
  margin-bottom: 0.5rem;
  fill: none; stroke: currentColor; stroke-width: 1.3;
}
.tools-circle__item {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.5;
}
@media (max-width: 960px) {
  .tools-circle { position: relative; top: auto; right: auto; transform: none; margin: 2rem auto 0; }
}

/* SophrÔ - section déroulement + accompagnements + Sandra */
.sophro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1360px;
  margin: 0 auto;
}
.sophro-block__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.sophro-block__head svg {
  width: 22px; height: 22px;
  color: var(--ember);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}
.sophro-block__head h3 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.sophro-block__intro {
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 1.6rem;
  font-weight: 400;
}

.step {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.step__num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__num svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.step__num.fill { background: var(--ember); color: #fff; }
.step__title {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.step__body {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.aquatique-note {
  background: var(--ink);
  color: var(--cream);
  padding: 1.4rem 1.6rem;
  font-size: 0.88rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
  border-radius: 2px;
}
.aquatique-note svg {
  width: 22px; height: 22px;
  color: var(--ember);
  flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 1.4;
}

.accompagnements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.2rem;
}
.accompagnement {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.accompagnement svg {
  width: 22px; height: 22px;
  color: var(--ember);
  flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 1.4;
}
.accompagnement span {
  font-size: 0.88rem;
  color: var(--text);
}

.sandra-card {
  background: var(--cream);
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sandra-card__top {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.sandra-card__photo {
  width: 110px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream-warm) center/cover no-repeat;
  flex-shrink: 0;
}
.sandra-card__name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.sandra-card__credentials {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  line-height: 1.7;
}
.sandra-card__bio {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.sandra-card__quote {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ember);
  line-height: 1.6;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}
.hugo-block {
  background: var(--cream);
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.hugo-block__photo {
  width: 70px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream-warm) center/cover no-repeat;
  flex-shrink: 0;
}
.hugo-block__name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--ink);
}
.hugo-block__role {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.4rem;
}
.hugo-block__sub { font-size: 0.82rem; color: var(--text-soft); line-height: 1.5; }
.hugo-intro {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.hugo-intro__head {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hugo-intro__head svg { width: 16px; height: 16px; color: var(--ember); fill: none; stroke: currentColor; stroke-width: 1.4; }

@media (max-width: 1100px) {
  .sophro-grid { grid-template-columns: 1fr 1fr; }
  .sophro-grid > :last-child { grid-column: span 2; }
}
@media (max-width: 760px) {
  .sophro-grid { grid-template-columns: 1fr; }
  .sophro-grid > :last-child { grid-column: span 1; }
  .accompagnements { grid-template-columns: 1fr; }
}

/* Sophro banner 3 colonnes dark */
.sophro-banner {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2.5rem, 4vw, 4rem) var(--gutter);
}
.sophro-banner__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.sophro-banner__col {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.sophro-banner__col svg {
  width: 32px; height: 32px;
  color: var(--ember);
  flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 1.4;
}
.sophro-banner__col h4 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.sophro-banner__col p {
  font-size: 0.88rem;
  color: rgba(244, 237, 227, 0.7);
  line-height: 1.6;
}
@media (max-width: 760px) {
  .sophro-banner__grid { grid-template-columns: 1fr; }
}

.sophro-cta-section {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}
.sophro-cta-section__inner {
  max-width: 640px;
  margin: 0 auto;
}
.sophro-footer-cta {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2rem, 3vw, 2.8rem);
  text-align: center;
  border-radius: 2px;
}
.sophro-footer-cta svg {
  width: 28px; height: 28px;
  color: var(--ember);
  margin: 0 auto 0.8rem;
  fill: none; stroke: currentColor; stroke-width: 1.4;
}
.sophro-footer-cta__title {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.sophro-footer-cta__sub {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-soft);
  margin-bottom: 1.3rem;
}

/* =========================================
   SÔ PRIVATE
   ========================================= */
.so-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 2.5vw, 2.4rem);
  max-width: 1340px;
  margin: 0 auto;
}
.so-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.so-card__media {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.so-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.so-card:hover .so-card__media img { transform: scale(1.04); }
.so-card__body {
  padding: clamp(1.6rem, 2.4vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.so-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.so-card__eyebrow svg { width: 18px; height: 18px; color: var(--gold-soft); fill: none; stroke: currentColor; stroke-width: 1.4; }
.so-card__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  line-height: 1.2;
  color: var(--cream);
}
.so-card__text {
  font-size: 0.9rem;
  color: rgba(244, 237, 227, 0.72);
  line-height: 1.75;
}
.so-card__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin-top: 0.4rem;
}
.so-card__list li {
  font-size: 0.88rem;
  color: rgba(244, 237, 227, 0.85);
  position: relative;
  padding-left: 1rem;
}
.so-card__list li::before {
  content: "▸";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold-soft);
}
.so-card__cta { margin-top: auto; align-self: flex-start; padding-top: 0.6rem; }
.so-sub {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
}
.so-sub__title {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}
.so-sub__text {
  font-size: 0.88rem;
  color: rgba(244, 237, 227, 0.72);
  line-height: 1.7;
}

@media (max-width: 880px) {
  .so-grid { grid-template-columns: 1fr; }
  .so-card__list { grid-template-columns: 1fr; }
}

/* Partenaires */
.partners {
  padding: clamp(3rem, 5vw, 5rem) var(--gutter);
  max-width: 1340px;
  margin: 0 auto;
}
.partners__grid {
  display: grid;
  grid-template-columns: 1.2fr auto auto 1fr;
  gap: 2rem;
  align-items: center;
}
.partners__intro h4 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.partners__intro p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 360px;
}
.partner-placeholder {
  width: 200px;
  height: 100px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.partners__cta { justify-self: end; }
@media (max-width: 900px) {
  .partners__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .partners__intro, .partners__cta { grid-column: span 2; }
  .partners__cta { justify-self: start; }
  .partner-placeholder { width: 100%; }
}

/* =========================================
   FOOTER — crème compact
   ========================================= */
.footer {
  background: var(--cream);
  padding: clamp(3rem, 4vw, 4rem) var(--gutter) 0;
  border-top: 1px solid var(--line-soft);
}
.footer__grid {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.footer__brand-img { height: 40px; margin-bottom: 1rem; }
.footer__tagline {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  line-height: 1.4;
}
.footer__socials {
  display: flex;
  gap: 0.8rem;
}
.footer__socials a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.footer__socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.footer__socials svg { width: 15px; height: 15px; fill: currentColor; }

.footer__col h5 {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer__coords {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text);
}
.footer__coords a { color: inherit; }
.footer__coords a:hover { color: var(--gold); }
.footer__coords-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.footer__coords-item svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.footer__sitemap {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
}
.footer__sitemap a { color: var(--text); }
.footer__sitemap a:hover { color: var(--gold); }
.footer__sitemap a.is-active { color: var(--gold); }

.footer__hours {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.footer__bottom {
  max-width: 1340px;
  margin: 0 auto;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-mute);
  flex-wrap: wrap;
}
.footer__legal {
  display: flex;
  gap: 1.6rem;
}
.footer__legal a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: flex-start; }
}

/* =========================================
   REVEAL ON SCROLL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.d-1 { transition-delay: 0.08s; }
.reveal.d-2 { transition-delay: 0.16s; }
.reveal.d-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =========================================
   UTILITIES
   ========================================= */
.container { max-width: 1340px; margin: 0 auto; padding: 0 var(--gutter); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
