/* ============================================================
   AUBE — Design System v2 | Moderne · Audacieux · Original
   ============================================================ */

:root {
  --linen:      #F3EEE7;
  --sand:       #E8DDD0;
  --nude:       #DCC9B8;
  --terracotta: #C98E6B;
  --cinnamon:   #A66E4D;
  --copper:     #B97858;
  --oak:        #9B7657;
  --cacao:      #5E4738;
  --taupe:      #7B685B;
  --champagne:  #D7BE9A;

  --f-display: "Playfair Display", Georgia, serif;
  --f-body:    "DM Sans", system-ui, sans-serif;
  --ease:      cubic-bezier(.76,0,.24,1);
  --ease-out:  cubic-bezier(.22,1,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--linen);
  color: var(--cacao);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: none; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--cinnamon); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   CURSOR CUSTOM
   ============================================================ */
.cursor {
  position: fixed; z-index: 9999; pointer-events: none;
  mix-blend-mode: multiply;
}
.cursor__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cinnamon);
  position: fixed; top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease), height .2s var(--ease), background .3s ease;
  z-index: 9999; pointer-events: none;
}
.cursor__ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--cinnamon);
  position: fixed; top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: transform .12s var(--ease-out), width .35s var(--ease), height .35s var(--ease), opacity .3s ease;
  z-index: 9998; pointer-events: none;
}
body.cursor--hover .cursor__dot { width: 14px; height: 14px; background: var(--terracotta); }
body.cursor--hover .cursor__ring { width: 56px; height: 56px; opacity: .5; }
body.cursor--click .cursor__dot { width: 6px; height: 6px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.t-eyebrow {
  font-family: var(--f-body);
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--cinnamon); font-weight: 600;
  display: inline-flex; align-items: center; gap: .75em;
}
.t-eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }

h1, .h1 {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 400; line-height: .97; letter-spacing: -.02em;
  color: var(--cacao);
}
h2, .h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -.015em;
  color: var(--cacao);
}
h3, .h3 {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400; color: var(--cacao);
}
.t-body { font-size: clamp(.95rem, 1.1vw, 1.1rem); line-height: 1.7; color: var(--taupe); }
.t-large { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.6; color: var(--taupe); }
em, i { font-style: italic; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: 1360px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 4rem); }
.wrap--wide { max-width: 100%; padding-inline: clamp(1.25rem, 4vw, 4rem); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .7em;
  padding: 1em 2em; border-radius: 100px;
  font-size: .9rem; font-weight: 600; letter-spacing: .03em;
  position: relative; overflow: hidden;
  transition: color .35s ease;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
  border-radius: inherit;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn--dark {
  background: var(--cacao); color: var(--linen);
}
.btn--dark::before { background: var(--cinnamon); }

.btn--outline {
  background: transparent; color: var(--cacao);
  border: 1.5px solid var(--cacao);
}
.btn--outline::before { background: var(--cacao); }
.btn--outline:hover { color: var(--linen); }

.btn--light {
  background: var(--linen); color: var(--cacao);
}
.btn--light::before { background: var(--champagne); }

.btn svg { width: 16px; height: 16px; flex: none; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

/* ============================================================
   NAVIGATION — ultra-minimal, horizontale fixe
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto;
  z-index: 200; padding: 1.4rem 0;
  transition: padding .5s var(--ease), background .5s ease;
}
.nav.is-scrolled {
  padding: .9rem 0;
  background: rgba(243,238,231,.88);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(215,190,154,.3);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: var(--f-display);
  font-size: 1.5rem; letter-spacing: .04em; color: var(--cacao);
  display: flex; align-items: center; gap: .5rem;
}
.nav__logo-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: conic-gradient(from 200deg, var(--cinnamon), var(--champagne), var(--cinnamon));
  flex: none;
}
.nav__links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav__links a {
  font-size: .88rem; font-weight: 500; color: var(--taupe);
  position: relative; padding-bottom: .2rem;
  transition: color .3s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--cinnamon);
  transition: width .4s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--cacao); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta { font-size: .88rem; }

/* burger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  width: 26px; z-index: 300;
}
.nav__burger span {
  height: 1.5px; background: var(--cacao); border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s ease, width .3s ease;
}
.nav__burger span:nth-child(2) { width: 70%; }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 100%; }

/* fullscreen overlay menu */
.nav__overlay {
  position: fixed; inset: 0; z-index: 250;
  background: var(--cacao);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(2rem, 6vw, 5rem);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease);
  pointer-events: none;
}
.nav__overlay.open { clip-path: inset(0 0 0% 0); pointer-events: auto; }
.nav__overlay nav { display: flex; flex-direction: column; gap: .4rem; }
.nav__overlay a {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: rgba(243,238,231,.2);
  line-height: 1.1;
  transform: translateY(40px); opacity: 0;
  transition: color .3s ease, transform .6s var(--ease), opacity .5s ease;
  display: inline-block;
}
.nav__overlay.open a { transform: translateY(0); opacity: 1; }
.nav__overlay.open a:nth-child(1) { transition-delay: .08s; }
.nav__overlay.open a:nth-child(2) { transition-delay: .14s; }
.nav__overlay.open a:nth-child(3) { transition-delay: .20s; }
.nav__overlay.open a:nth-child(4) { transition-delay: .26s; }
.nav__overlay a:hover { color: var(--linen); }
.nav__overlay-sub {
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(215,190,154,.2);
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.nav__overlay-sub a {
  font-family: var(--f-body); font-size: .85rem; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(215,190,154,.6);
  transform: none; opacity: 1;
}
.nav__overlay-sub a:hover { color: var(--champagne); }

@media (max-width: 840px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================================
   HERO — Plein écran, typographie géante, image à droite 
   decoupée en clip-path
   ============================================================ */
.hero {
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero__left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(1.5rem,4vw,5rem) clamp(3rem,6vw,6rem);
  padding-top: 8rem;
  position: relative; z-index: 2;
}
.hero__right {
  position: relative; overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.hero__right img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease;
  filter: saturate(.9);
}
.hero__right::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--linen) 0%, transparent 40%);
  z-index: 1;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: .8rem;
  background: rgba(215,190,154,.25); border: 1px solid rgba(215,190,154,.5);
  border-radius: 100px; padding: .5em 1.1em;
  font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--oak); font-weight: 600;
  width: fit-content; margin-bottom: 2.5rem;
}
.hero__tag span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cinnamon);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.hero__title { margin-bottom: 2rem; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span {
  display: block;
  transform: translateY(110%);
  transition: transform .9s var(--ease-out);
}
.hero.ready .hero__title .line:nth-child(1) span { transform: translateY(0); }
.hero.ready .hero__title .line:nth-child(2) span { transform: translateY(0); transition-delay: .08s; }
.hero.ready .hero__title .line:nth-child(3) span { transform: translateY(0); transition-delay: .16s; }

.hero__desc {
  max-width: 42ch; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s ease .5s, transform .8s var(--ease) .5s;
}
.hero.ready .hero__desc { opacity: 1; transform: translateY(0); }
.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s ease .65s, transform .8s var(--ease) .65s;
}
.hero.ready .hero__actions { opacity: 1; transform: translateY(0); }

.hero__scroll {
  position: absolute; bottom: 2.5rem; left: clamp(1.5rem,4vw,5rem);
  display: flex; align-items: center; gap: .8rem;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--taupe); z-index: 2;
  opacity: 0; transition: opacity .8s ease .9s;
}
.hero.ready .hero__scroll { opacity: 1; }
.hero__scroll-line {
  width: 40px; height: 1px; background: var(--champagne);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--cinnamon);
  animation: slide-line 2s var(--ease) infinite;
}
@keyframes slide-line { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.hero__counter {
  position: absolute; right: 3rem; bottom: 2.5rem; z-index: 3;
  font-family: var(--f-display); font-size: .95rem; color: var(--linen);
  opacity: .7;
}
.hero__dots {
  position: absolute; right: 2.5rem; top: 50%; z-index: 3;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: .6rem;
}
.hero__dots button {
  width: 4px; height: 20px; border-radius: 2px;
  background: rgba(255,255,255,.3);
  transition: background .3s ease, height .4s var(--ease);
}
.hero__dots button.active { background: var(--linen); height: 36px; }

@media (max-width: 840px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto 50vw; }
  .hero__right { clip-path: none; }
  .hero__left { padding-top: 7rem; }
  .hero__counter, .hero__dots { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-block: 1px solid var(--champagne);
  padding-block: 1.1rem; overflow: hidden; background: var(--sand);
}
.marquee__track {
  display: inline-flex; gap: 0; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--f-display); font-style: italic;
  font-size: 1.1rem; color: var(--taupe);
  padding-inline: 2.5rem;
  display: inline-flex; align-items: center; gap: 2.5rem;
}
.marquee__track span::after {
  content: "✦"; font-size: .6rem; color: var(--cinnamon); font-style: normal;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION INTRO — chiffres flottants, texte centré grand
   ============================================================ */
.intro {
  padding: clamp(5rem,10vw,10rem) 0;
  text-align: center; position: relative; overflow: hidden;
}
.intro__bg-num {
  position: absolute; font-family: var(--f-display);
  font-size: clamp(8rem,18vw,16rem); font-weight: 400;
  color: rgba(166,110,77,.06); line-height: 1;
  pointer-events: none; user-select: none;
}
.intro__bg-num--1 { top: -1rem; left: -2rem; }
.intro__bg-num--2 { bottom: -1rem; right: -1rem; }
.intro__eyebrow { margin-bottom: 1.5rem; justify-content: center; }
.intro__text {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  line-height: 1.3; font-weight: 400;
  color: var(--cacao); max-width: 800px; margin-inline: auto;
  margin-bottom: 3rem;
}
.intro__text em { color: var(--cinnamon); }
.intro__stats {
  display: flex; justify-content: center; gap: clamp(2rem,6vw,6rem);
  flex-wrap: wrap; margin-top: 4rem; padding-top: 3rem;
  border-top: 1px solid var(--champagne);
}
.intro__stat-num {
  font-family: var(--f-display); font-size: clamp(2.5rem,5vw,4rem);
  color: var(--cinnamon); line-height: 1; display: block;
}
.intro__stat-label {
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--taupe); margin-top: .4rem; display: block;
}

/* ============================================================
   SYMPTOMS — grille avec numérotation, ligne de trait
   ============================================================ */
.symptoms { padding: clamp(4rem,8vw,8rem) 0; background: var(--cacao); overflow: hidden; }
.symptoms__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: clamp(3rem,6vw,6rem); flex-wrap: wrap;
}
.symptoms__head h2 { color: var(--linen); max-width: 14ch; }
.symptoms__head p { color: rgba(243,238,231,.6); max-width: 36ch; }
.symptoms__head .t-eyebrow { color: var(--champagne); }
.symptoms__head .t-eyebrow::before { background: var(--champagne); }

.symptoms__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(215,190,154,.2);
}
.symptom-item {
  padding: 2.5rem 2rem 2.5rem;
  border-right: 1px solid rgba(215,190,154,.15);
  border-bottom: 1px solid rgba(215,190,154,.15);
  position: relative; overflow: hidden;
  transition: background .4s ease;
}
.symptom-item:hover { background: rgba(215,190,154,.07); }
.symptom-item:nth-child(3n) { border-right: none; }
.symptom-item:nth-child(n+4) { border-bottom: none; }
.symptom-num {
  font-family: var(--f-display); font-size: .85rem;
  color: var(--cinnamon); margin-bottom: 1.5rem; display: block;
}
.symptom-title {
  font-family: var(--f-display); font-size: clamp(1.1rem,1.5vw,1.3rem);
  color: var(--linen); margin-bottom: .8rem; display: block;
}
.symptom-desc { font-size: .9rem; color: rgba(243,238,231,.55); line-height: 1.6; }
.symptom-arrow {
  position: absolute; bottom: 2rem; right: 2rem;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(215,190,154,.25);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.7);
  transition: opacity .3s ease, transform .3s var(--ease);
}
.symptom-item:hover .symptom-arrow { opacity: 1; transform: scale(1); }
.symptom-arrow svg { width: 12px; height: 12px; stroke: var(--champagne); }

@media (max-width: 720px) {
  .symptoms__grid { grid-template-columns: 1fr 1fr; }
  .symptom-item:nth-child(3n) { border-right: 1px solid rgba(215,190,154,.15); }
  .symptom-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
  .symptoms__grid { grid-template-columns: 1fr; }
  .symptom-item { border-right: none !important; }
}

/* ============================================================
   ABOUT — plein largeur, image qui déborde + texte en overlay
   ============================================================ */
.about { padding: clamp(5rem,10vw,10rem) 0; }
.about__grid {
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: clamp(3rem,6vw,7rem); align-items: center;
}
.about__visual { position: relative; }
.about__img {
  aspect-ratio: 4/5; border-radius: 4px;
  overflow: hidden; position: relative;
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: clamp(120px,16vw,180px); height: clamp(120px,16vw,180px);
  border-radius: 50%;
  background: var(--cinnamon);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1rem;
  box-shadow: 0 20px 50px -10px rgba(94,71,56,.5);
}
.about__img-badge strong {
  font-family: var(--f-display); font-size: clamp(1.8rem,3vw,2.6rem);
  color: var(--linen); line-height: 1;
}
.about__img-badge span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(243,238,231,.75); margin-top: .3rem; }

.about__copy .t-eyebrow { margin-bottom: 1.5rem; }
.about__copy h2 { margin-bottom: 1.8rem; }
.about__copy p { margin-bottom: 1.2rem; }
.about__copy blockquote {
  margin: 2.5rem 0; padding: 1.5rem 2rem;
  border-left: 3px solid var(--cinnamon);
  background: var(--sand); border-radius: 0 8px 8px 0;
  font-family: var(--f-display); font-style: italic;
  font-size: 1.1rem; color: var(--cacao); line-height: 1.5;
}

@media (max-width: 840px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__img-badge { right: 1rem; }
}

/* ============================================================
   MÉTHODE — grande timeline horizontale
   ============================================================ */
.method { padding: clamp(5rem,9vw,9rem) 0; background: var(--sand); overflow: hidden; }
.method__head { margin-bottom: clamp(3rem,6vw,6rem); }
.method__head h2 { max-width: 16ch; }

.method__steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.method__steps::before {
  content: ""; position: absolute; top: 2.2rem; left: 0; right: 0; height: 1px;
  background: var(--champagne); z-index: 0;
}
.method-step { padding: 0 2rem 0 0; position: relative; z-index: 1; }
.method-step:last-child { padding-right: 0; }
.method-step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--linen); border: 1px solid var(--champagne);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: .95rem; color: var(--cinnamon);
  margin-bottom: 2rem;
  transition: background .4s ease, border-color .4s ease;
}
.method-step:hover .method-step__num { background: var(--cinnamon); border-color: var(--cinnamon); color: var(--linen); }
.method-step h3 { font-size: 1.35rem; margin-bottom: .8rem; }
.method-step p { font-size: .95rem; line-height: 1.7; color: var(--taupe); }

@media (max-width: 640px) {
  .method__steps { grid-template-columns: 1fr; gap: 3rem; }
  .method__steps::before { display: none; }
}

/* ============================================================
   GALLERY — scroll horizontal avec effet parallaxe
   ============================================================ */
.gallery { padding: clamp(5rem,9vw,9rem) 0; }
.gallery__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem;
}
.gallery__nav { display: flex; gap: .6rem; }
.gallery__nav button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--champagne);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease);
}
.gallery__nav button:hover { background: var(--cacao); border-color: var(--cacao); }
.gallery__nav button:hover svg { stroke: var(--linen); }
.gallery__nav svg { width: 18px; height: 18px; stroke: var(--cacao); transition: stroke .3s ease; }

.gallery__track {
  display: flex; gap: 1.2rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem; scrollbar-width: none; cursor: grab;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track.dragging { cursor: grabbing; scroll-snap-type: none; }

.gallery-card {
  flex: 0 0 auto; width: clamp(260px,30vw,360px);
  scroll-snap-align: start; border-radius: 6px; overflow: hidden;
  position: relative;
}
.gallery-card__img {
  aspect-ratio: 3/4; overflow: hidden;
}
.gallery-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery-card:hover .gallery-card__img img { transform: scale(1.07); }
.gallery-card__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(94,71,56,.75), transparent);
  font-family: var(--f-display); font-style: italic;
  color: var(--linen); font-size: 1rem;
  transform: translateY(4px); opacity: 0;
  transition: opacity .4s ease, transform .4s var(--ease);
}
.gallery-card:hover .gallery-card__label { opacity: 1; transform: translateY(0); }

/* ============================================================
   TESTIMONIALS — grande citation rotative
   ============================================================ */
.testi { padding: clamp(5rem,9vw,9rem) 0; background: var(--cacao); }
.testi__inner { max-width: 900px; margin-inline: auto; text-align: center; }
.testi__inner .t-eyebrow { justify-content: center; color: var(--champagne); margin-bottom: 3rem; }
.testi__inner .t-eyebrow::before { background: var(--champagne); }

.testi__track { position: relative; min-height: 220px; }
.testi-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  pointer-events: none;
}
.testi-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.testi-quote {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(1.3rem,2.6vw,2rem); color: var(--linen);
  line-height: 1.45;
}
.testi-author {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2.5rem;
}
.testi-author__line { width: 32px; height: 1px; background: var(--champagne); }
.testi-author__name {
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--champagne); font-weight: 600;
}
.testi__dots { display: flex; justify-content: center; gap: .6rem; margin-top: 3rem; }
.testi__dots button {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(215,190,154,.3);
  transition: background .3s ease, width .35s var(--ease);
}
.testi__dots button.active { background: var(--champagne); width: 24px; border-radius: 3px; }

/* ============================================================
   VISION — plein largeur texte + image splitté
   ============================================================ */
.vision { padding: clamp(5rem,9vw,9rem) 0; }
.vision__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,7rem); align-items: center;
}
.vision__copy .t-eyebrow { margin-bottom: 1.5rem; }
.vision__copy h2 { margin-bottom: 1.5rem; max-width: 14ch; }
.vision__copy p { margin-bottom: 2.5rem; }
.vision__list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 3rem; }
.vision__list li {
  display: flex; align-items: flex-start; gap: 1rem; font-size: .95rem; line-height: 1.6; color: var(--taupe);
}
.vision__list .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(166,110,77,.12); border: 1px solid var(--cinnamon);
  display: flex; align-items: center; justify-content: center; flex: none; margin-top: .1rem;
}
.vision__list .check svg { width: 11px; height: 11px; stroke: var(--cinnamon); }
.vision__visual { position: relative; }
.vision__img {
  border-radius: 4px; overflow: hidden; aspect-ratio: 5/6;
}
.vision__img img { width: 100%; height: 100%; object-fit: cover; }
.vision__float {
  position: absolute; top: -2rem; right: -2rem;
  background: var(--sand); border: 1px solid var(--champagne);
  border-radius: 16px; padding: 1.5rem;
  max-width: 200px;
  box-shadow: 0 20px 50px -10px rgba(94,71,56,.2);
}
.vision__float strong {
  font-family: var(--f-display); font-size: 2rem; color: var(--cinnamon); display: block;
}
.vision__float span { font-size: .78rem; color: var(--taupe); letter-spacing: .06em; }

@media (max-width: 840px) {
  .vision__grid { grid-template-columns: 1fr; }
  .vision__float { right: 1rem; top: 1rem; }
}

/* ============================================================
   CTA — diagonal bold
   ============================================================ */
.cta-band {
  padding: clamp(5rem,9vw,9rem) 0;
  background: var(--cacao); position: relative; overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(166,110,77,.4), transparent);
}
.cta-band__inner { position: relative; z-index: 1; }
.cta-band .t-eyebrow { justify-content: center; color: var(--champagne); margin-bottom: 1.5rem; }
.cta-band .t-eyebrow::before { background: var(--champagne); }
.cta-band h2 { color: var(--linen); max-width: 18ch; margin-inline: auto; margin-bottom: 1.5rem; }
.cta-band p { color: rgba(243,238,231,.65); max-width: 48ch; margin-inline: auto; margin-bottom: 3rem; }
.cta-band__bg-text {
  position: absolute; bottom: -1rem; left: 50%; transform: translateX(-50%);
  font-family: var(--f-display); font-size: clamp(5rem,14vw,12rem);
  color: rgba(255,255,255,.03); white-space: nowrap; pointer-events: none;
  font-weight: 400;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-hero {
  padding-top: clamp(7rem,12vw,11rem);
  padding-bottom: clamp(3rem,6vw,6rem);
}
.page-hero h1 { max-width: 18ch; }
.page-hero p { max-width: 52ch; margin-top: 1.5rem; }

/* ============================================================
   PRESTATIONS
   ============================================================ */
.tabs-bar {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 3rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--champagne);
}
.tab-btn {
  padding: .55em 1.3em; border-radius: 100px;
  font-size: .85rem; font-weight: 600; color: var(--taupe);
  border: 1px solid transparent;
  transition: all .3s ease;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--cacao); color: var(--linen); border-color: var(--cacao);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.pricing-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; padding: 2rem 0; border-bottom: 1px solid rgba(215,190,154,.4);
  transition: background .3s ease;
}
.pricing-row:first-child { border-top: 1px solid rgba(215,190,154,.4); }
.pricing-row:hover { padding-inline: 1rem; }
.pricing-row__name {
  font-family: var(--f-display); font-size: 1.2rem; color: var(--cacao); margin-bottom: .4rem;
}
.pricing-row__desc { font-size: .9rem; color: var(--taupe); max-width: 52ch; }
.pricing-row__meta { text-align: right; flex: none; }
.pricing-row__price {
  font-family: var(--f-display); font-size: 1.4rem; color: var(--cinnamon); display: block;
}
.pricing-row__time {
  font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--taupe); margin-top: .3rem; display: block;
}

/* ============================================================
   GALERIE PAGE
   ============================================================ */
.gallery-masonry {
  columns: 3 220px; column-gap: 1rem; margin-top: 3rem;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 1rem;
  border-radius: 6px; overflow: hidden;
  position: relative; cursor: pointer;
}
.masonry-item:nth-child(3n+1) { aspect-ratio: 3/4; }
.masonry-item:nth-child(3n+2) { aspect-ratio: 1/1; }
.masonry-item:nth-child(3n) { aspect-ratio: 4/5; }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); display: block; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item__overlay {
  position: absolute; inset: 0;
  background: rgba(94,71,56,.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s ease;
}
.masonry-item:hover .masonry-item__overlay { opacity: 1; }
.masonry-item__overlay svg { width: 28px; height: 28px; stroke: var(--linen); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(30,18,12,.93);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }
.lightbox__close svg { stroke: #fff; width: 18px; height: 18px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(3rem,6vw,7rem); align-items: start; margin-top: 4rem;
}
.form-field { margin-bottom: 1.5rem; }
.form-field label {
  display: block; font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--oak); margin-bottom: .6rem; font-weight: 600;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: .9em 1.1em;
  background: var(--sand); border: 1px solid transparent;
  border-radius: 8px; color: var(--cacao);
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--cinnamon); background: var(--linen);
  box-shadow: 0 0 0 4px rgba(166,110,77,.1);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.contact-info { padding: 2.5rem; background: var(--sand); border-radius: 12px; }
.contact-info h3 { margin-bottom: 2rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.info-item svg { width: 20px; height: 20px; stroke: var(--cinnamon); flex: none; margin-top: 2px; }
.info-item h4 { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--oak); margin-bottom: .3rem; }
.info-item p { font-size: .95rem; color: var(--taupe); }
.map-placeholder {
  margin-top: 2rem; border-radius: 8px; overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--nude), var(--sand));
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--taupe);
}
@media (max-width: 840px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cacao); padding: clamp(4rem,7vw,6rem) 0 2rem;
}
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(215,190,154,.2);
}
.footer__brand {
  font-family: var(--f-display); font-size: 1.6rem; color: var(--linen); margin-bottom: .8rem;
}
.footer__brand-desc { font-size: .9rem; color: rgba(243,238,231,.5); max-width: 28ch; }
.footer h4 {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 1.2rem;
}
.footer li { margin-bottom: .6rem; }
.footer li a { font-size: .9rem; color: rgba(243,238,231,.5); transition: color .3s ease; }
.footer li a:hover { color: var(--linen); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.5rem; font-size: .78rem; color: rgba(243,238,231,.3);
}
@media (max-width: 780px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.sr {
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.sr.visible { opacity: 1; transform: none; }
.sr-d1 { transition-delay: .1s; }
.sr-d2 { transition-delay: .2s; }
.sr-d3 { transition-delay: .3s; }
.sr-d4 { transition-delay: .4s; }

/* ============================================================
   MISC
   ============================================================ */
.text-center { text-align: center; }
.gap-1 { gap: 1rem; }
.mt-sm { margin-top: .8rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
