/* Variables CSS centralisées */
:root {
  --font-header: 'Raleway', sans-serif;
  --font-text: 'Raleway', sans-serif;
  --color-dark: #111;
  --color-border: #ccc;
  --color-trans-bg: #ededed;
  --color-bg: #f5f5f5;
  --ease-cb: cubic-bezier(.4,0,.2,1);
  --ease-cb-2: cubic-bezier(.19,1,.22,1);
  --ease-cb-3: cubic-bezier(.77,0,.175,1);
  --ease-cb-4: cubic-bezier(.99,1,.92,1);
  --pad: 3em;
  --mq-med: 54em;
  --mq-large: 65em;
  --mq-xlarge: 91em;
}

/* Reset et styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-header);
  font-size: 1rem;
  color: black;
}

.ext-links {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  align-items: center;
  flex-wrap: wrap;
}

.ext-links a {
  color: inherit;
}

.fab {
  font-size: 24px;
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}

.fab.fa-instagram {
  font-size: 1.5rem;
  color: #E4405F;
  display: inline-block;
}

.fab.fa-facebook {
  color: #1877F2;
}

.fab.fa-pinterest {
  color: #BD081C;
}

/* ANIMATION REVEAL GÉNÉRALE */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Classes utilitaires */
.raleway {
  font-family: var(--font-header);
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

/* HEADER STYLES */
.transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 200;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 30px 0;
  z-index: 200;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  font-family: var(--font-text);
  font-weight: 200;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0.75px;
  bottom: -3px;
  left: 0;
  background-color: currentColor;
  transition: width 0.3s ease;
}

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

.header-icons a {
  text-decoration: none;
  margin-left: 1rem;
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 28px;
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}

.transparent-header .logo,
.transparent-header .nav-links li a,
.transparent-header .header-icons a,
.transparent-header .material-symbols-outlined {
  color: white;
}

.transparent-header .burger-btn {
  color: white;
}

/* HERO SECTION (Page d'accueil) */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: left;
  background: rgba(0, 0, 0, 0.3);
}

.hero-overlay h1 {
  position: absolute;
  text-align: end;
  top: 60%;
  left: 40%;
  font-size: 4rem;
  font-family: var(--font-header);
  font-weight: 100;
}

/* SECTION CITATION (Page d'accueil) */
.section-spacer {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 4rem;
  background: var(--color-bg);
  overflow: hidden;
}

.citation-text {
  position: relative;
  text-align: left;
  max-width: 100%;
  z-index: 2;
}

.citation-text h2 {
  font-family: var(--font-header);
  font-size: clamp(2rem, 2.3rem, 4.5rem);
  font-weight: 200;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  margin: 0;
}

.citation-text h2 span {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: rgba(44, 44, 44, 0.3);
}

.citation-text h2 span strong {
  color: rgba(0, 0, 0, 1);
  font-weight: 300;
}

/* Animations citation */
.citation-text.visible h2 span:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.citation-text.visible h2 span:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.citation-text.visible h2 span:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.citation-text.visible h2 span:nth-of-type(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

.citation-text.visible h2 span:nth-of-type(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}

.citation-text::before,
.citation-text::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: black;
  opacity: 0;
  transition: opacity 1s ease 1.2s;
}

.citation-text::before {
  top: -2rem;
}

.citation-text::after {
  bottom: -2rem;
}

.citation-text.visible::before,
.citation-text.visible::after {
  opacity: 0.2;
}

/* CTA SECTION (Page d'accueil) */
.cta-section {
  position: relative;
  padding-bottom: 10rem;
  background-color: var(--color-bg);
}

.cta-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: min(80vh, 720px);
  overflow: hidden;
}

.cta-wrapper > a {
  position: relative;
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: flex-basis 800ms ease-in-out;
}

.cta-wrapper > a > img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.cta-wrapper .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: 800ms ease-in-out;
}

.cta-wrapper .side-left:hover .overlay,
.cta-wrapper .side-left:focus-within .overlay,
.cta-wrapper .side-right:hover .overlay,
.cta-wrapper .side-right:focus-within .overlay {
  opacity: 1;
}

.cta-wrapper.left-active .side-left .overlay,
.cta-wrapper.right-active .side-right .overlay {
  opacity: 1;
}

.cta-wrapper .label {
  position: absolute;
  top: 50%;
  z-index: 2;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 5rem;
  backdrop-filter: blur(2px);
  color: rgba(255,255,255,0.25);
  -webkit-text-stroke: 2px white;
  pointer-events: none;
  transform-origin: 50% 50%;
  --label-scale: 1;
}

.cta-wrapper .side-left .label {
  right: 5rem;
  transform: translate(50%, -50%) rotate(-90deg) scale(var(--label-scale));
}

.cta-wrapper .side-right .label {
  left: 5rem;
  transform: translate(-50%, -50%) rotate(-90deg) scale(var(--label-scale));
}

.cta-wrapper .desc,
.cta-wrapper .btn-cta {
  position: absolute;
  z-index: 2;
  font-family: var(--font-text);
  opacity: 0;
  transition: opacity 260ms ease 0ms, transform 260ms ease 0ms;
}

.cta-wrapper .desc {
  transform: translateY(6px);
  cursor: default;
  top: 40%;
  left: clamp(2rem, 6vw, 4rem);
  right: clamp(2rem, 6vw, 4rem);
  text-align: center;
  max-width: 42ch;
  margin-inline: auto;
  line-height: 1.55;
  font-size: clamp(1rem, 1.5rem, 2rem);
  pointer-events: none;
}

.cta-wrapper .btn-cta {
  transform: translate(-50%, 6px);
  pointer-events: auto;
  cursor: pointer;
  bottom: 22%;
  left: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  padding: .75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
}

.cta-wrapper .btn-cta:hover {
  background: rgba(255,255,255,0.5);
  color: rgba(0,0,0,0.5);
}

.cta-wrapper .btn-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* États CTA actifs */
.cta-wrapper.left-active .side-left { flex-basis: calc(100% - 5rem); }
.cta-wrapper.left-active .side-right { flex-basis: 5rem; }
.cta-wrapper.left-active .side-left .desc,
.cta-wrapper.left-active .side-left .btn-cta { 
  opacity: 1; 
  transform: translateY(0); 
  transition-delay: 800ms; 
}
.cta-wrapper.left-active .side-left .btn-cta { transform: translate(-50%, 0); }

.cta-wrapper.right-active .side-right { flex-basis: calc(100% - 5rem); }
.cta-wrapper.right-active .side-left { flex-basis: 5rem; }
.cta-wrapper.right-active .side-right .desc,
.cta-wrapper.right-active .side-right .btn-cta { 
  opacity: 1; 
  transform: translateY(0); 
  transition-delay: 800ms; 
}
.cta-wrapper.right-active .side-right .btn-cta { transform: translate(-50%, 0); }

/* TESTIMONIALS SECTION (Page d'accueil) */
.testimonials {
  background-color: var(--color-bg);
  position: relative;
  padding: 6rem 4rem;
}

.testimonials h2 {
  position: absolute;
  text-align: end;
  top: 2.5rem;
  right: 11rem;
  z-index: 101;
  font-size: 5rem;
  color: transparent;
  -webkit-text-stroke: 2px #8F877E;
  margin: 0;
}

.testimonials .container {
  position: relative;
  max-width: 1200px;
  height: 550px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-stage {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.testimonials .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: none;
  pointer-events: none;
}

.testimonials .slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 850ms ease-in-out;
}

.testimonials .slide .slide-flex {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 4rem;
  height: 100%;
}

.testimonials .slide .media {
  flex: 0 1 50%;
  min-height: 260px;
  position: relative;
}

.testimonials .slide .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.testimonials .slide .content {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 60ch;
  padding: 3rem 2rem 5rem;
}

.testimonials .slide .content h3 {
  font-family: var(--font-header);
  font-weight: 800;
  margin: 0;
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  line-height: 1.2;
  --title-lines: 2;
  min-height: calc(var(--title-lines) * 1.2em);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: var(--title-lines);
  -webkit-box-orient: vertical;
}

.testimonials .slide .content p {
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
}

.testimonial-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 100;
  color: black;
}

.testimonial-controls .arrow {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; 
  height: 44px;
  cursor: pointer;
}

.testimonial-controls .arrow:hover svg { transform: scale(1.1); }
.testimonial-controls .arrow:active svg { transform: scale(.96); }

.counter { 
  font-size: 1rem; 
  min-width: 80px; 
  text-align: center; 
}

/* SECTION CRÉATRICE (Page d'accueil) */
.section-creatrice {
  background-color: white;
  padding: 10rem 4rem;
  font-family: var(--font-text);
}

.creatrice-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.creatrice-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.creatrice-text h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: black;
}

.creatrice-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

.btn-a-propos {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: black;
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid black;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn-a-propos:hover {
  background-color: black;
  color: white;
}

.creatrice-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.creatrice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PAGE À PROPOS - HERO SECTION */
.page-a-propos {
  margin: 0;
  padding: 0;
}

.a-propos-hero {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 2rem 6rem;
  box-sizing: border-box;
  margin-top: 0;
}

.a-propos-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 35%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.a-propos-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.a-propos-hero h1 {
  position: relative;
  z-index: 3;
  font-family: var(--font-header);
  font-size: clamp(3rem, 5rem, 7rem);
  color: transparent;
  -webkit-text-stroke: 2px black;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  top: 118px;
}

.a-propos-text {
  text-align: left;
  padding: 12rem 6rem 10rem;
}
.a-propos-text-cta {
  padding: 2rem 6rem 5rem;
}

.a-propos-text p {
  font-family: var(--font-header);
  font-size: clamp(1rem, 1.5rem, 2rem);
  font-weight: 200;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.a-propos-text-cta p {
  font-family: var(--font-header);
  font-size: clamp(1rem, 1.5rem, 2rem);
  font-weight: 200;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* SLICE SLIDER STYLES (Page à propos uniquement) */
.slides-nav {
  z-index: 99;
  position: absolute;
  right: 6rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-dark);
}

.slides-nav__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slides-nav__bullet {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--color-dark);
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-cb);
  opacity: 0.5;
}

.slides-nav__bullet:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

.slides-nav__bullet.is-active {
  background: var(--color-dark);
  opacity: 1;
}

.slides-nav__bullet:focus {
  outline: 0;
}

.is-sliding .slides-nav {
  pointer-events: none;
}

.slides {
  position: relative;
  display: block;
  height: 60vh;
  width: 100%;
  background: var(--color-bg) !important;
  transition: background 1s var(--ease-cb-4);
  overflow: hidden;
  margin-bottom: 10rem;
}

.is-sliding .slides {
  background: transparent !important;
  transition: background 0.3s var(--ease-cb-4);
}

/* --- CONTAINER sticky : se fixe au viewport sans JS ---  */
.page-a-propos .slides {
  /* Le wrapper occupe N × 100vh pour que le scroll "passe" sur lui */
  height: var(--slides-total-height, 300vh);
  overflow: visible;
}

/* La scène sticky se fixe au viewport pendant le scroll du wrapper */
.page-a-propos .slides-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* --- SLIDE --- */
.page-a-propos .slides .slide {
  position: absolute;
  inset: 0; /* remplit tout l'espace du parent */
  z-index: -1;
  transition: z-index 1s ease;
  background: transparent;
  overflow: hidden;
}

.page-a-propos .slides .slide.is-active {
  z-index: 19;
}

/* --- GRID WRAPPER --- */
.slide__inner {
  box-sizing: border-box;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(240px, 40vh, 420px);
  align-items: center;
  gap: clamp(16px, 30vh, 100px);

  /* padding fluide selon hauteur et largeur */
  padding: clamp(1.5rem, 7vh, 4rem) clamp(1rem, 6vw, 6rem);
}

/* --- CONTENU --- */
.slide__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 2vh, 24px);
  min-width: 0; /* évite le débordement horizontal */
  overflow: hidden;
}

/* --- TITRES --- */
.slide__header {
  width: 100%;
  overflow: hidden;
}

.slide__title {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.2vh + 1vw, 2.5em);
  color: var(--color-dark);
  margin: 0 0 clamp(0.4em, 1.6vh, 1em);
  text-align: left;
  text-wrap: balance;
  overflow: hidden;
}

/* animations existantes conservées */
.title-line { display: block; overflow: hidden; }
.title-line span {
  display: inline-block;
  transform: translate3d(0, 140%, 0);
  opacity: 0;
  transition: transform .6s var(--ease-cb-3), opacity .1s ease;
}
.is-active .title-line span { transform: translate3d(0,0,0); opacity: 1; }
.title-line:nth-child(1) span { transition-delay: .15s; }
.title-line:nth-child(2) span { transition-delay: .3s; }
.is-active .title-line:nth-of-type(2n) span { transition-delay: .2s; }

/* --- TEXTE --- */
.slide__text {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: clamp(.95rem, 1.6vh + .4vw, 1.1em);
  line-height: clamp(1.35, 2.2vh, 1.6);
  color: var(--color-dark);
  max-width: 60ch;
  text-align: left;
  opacity: 0;
  transition: opacity .5s ease .3s;
}
.is-active .slide__text { opacity: 1; transition-delay: 1.2s; }

.slide__text p { margin-bottom: clamp(.5em, 1.6vh, 1em); }
.slide__text strong { font-weight: 700; }

/* --- IMAGE --- */
.slide__image {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 0;
  max-height: 100%;
}

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

/* --- PETITES HAUTEURS --- */
@media (max-height: 650px) {
  .slide__inner {
    grid-template-columns: minmax(0, 1fr) clamp(200px, 22vh, 320px);
    gap: clamp(12px, 2vh, 24px);
    padding: 1rem clamp(1rem, 4vw, 2rem);
  }
}

/* --- ÉCRANS ÉTROITS --- */
@media (max-width: 900px) {
  .slide__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .slide__image {
    order: -1;
    height: clamp(160px, 28vh, 320px);
  }
}

/* --- TRÈS PETITES HAUTEURS --- */
@media (max-height: 560px) {
  .slide__title { font-size: clamp(1.2rem, 2.4vh + .6vw, 2rem); }
  .slide__text  { font-size: clamp(.9rem, 1.2vh + .5vw, 1rem); }
}


/* CTA Section à propos */
.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 6rem auto 0;
  padding: 4rem 6rem;
  background: var(--color-bg);
}

.btn-about {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: transparent;
  color: black;
  text-decoration: none;
  font-size: 1rem;
  font-family: var(--font-header);
  font-weight: 300;
  border: 1px solid black;
  border-radius: 5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-about:hover {
  background-color: black;
  color: white;
}

.about-cta img {
  flex: 1;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

/* PAGE CONTACT */
.page-contact {
  margin: 0;
  padding: 0;
}

.contact-hero {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 2rem 6rem;
  box-sizing: border-box;
  margin-top: 0;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 35%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.contact-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.contact-hero h1 {
  position: relative;
  z-index: 3;
  font-family: var(--font-header);
  font-size: clamp(3rem, 5rem, 7rem);
  color: transparent;
  -webkit-text-stroke: 2px black;
  font-weight: 700;
  margin: 0;
  top: 85px;
}

.contact-text {
  text-align: left;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.contact-text p {
  font-family: var(--font-header);
  font-size: clamp(1rem, 1.5rem, 2rem);
  font-weight: 200;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  max-width: 800px;
  margin: 4rem auto;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 6rem;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 275px;
  justify-content: space-between;
}

.contact-left .info-item,
.contact-right .info-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex: 1;
}

.contact-left .info-item:last-child,
.contact-right .info-item:last-child {
  border-bottom: none;
}

.info-icon {
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-top: 0.25rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.info-content {
  flex: 1;
}

.info-content h3 {
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 400;
  color: black;
  margin: 0 0 0.5rem 0;
}

.info-content p {
  font-family: var(--font-header);
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  line-height: 1.5;
}

.info-content a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: black;
}

.contact-cta {
  text-align: center;
  padding-bottom: 13rem;
}

/* FOOTER */
footer {
  background-color: var(--color-bg);
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 5rem;
  font-family: var(--font-text);
}

/* RESPONSIVE DESIGN */

/* Tablettes */
@media (max-width: 768px) {
  .section-spacer {
    min-height: 80vh;
    padding: 3rem 1.5rem;
  }
  
  .citation-text h2 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .citation-text::before {
    top: -1.5rem;
  }
  
  .citation-text::after {
    bottom: -1.5rem;
  }

  .cta-wrapper {
    flex-direction: column;
    height: auto;
    min-height: 60vh;
  }
  
  .cta-wrapper > a {
    flex-basis: 50vh;
    min-height: 240px;
  }
  
  .cta-wrapper.left-active .side-left { 
    flex-basis: calc(100% - 5rem); 
  }
  
  .cta-wrapper.left-active .side-right { 
    flex-basis: 5rem; 
  }
  
  .cta-wrapper.right-active .side-right { 
    flex-basis: calc(100% - 5rem); 
  }
  
  .cta-wrapper.right-active .side-left { 
    flex-basis: 5rem; 
  }

  .testimonials .slide .slide-flex {
    flex-direction: row;
  }

  .page-a-propos .slides-nav {
    right: 2rem;
  }
  
  .page-a-propos .slide__content {
    padding: 3rem 2rem;
  }
  
  .page-a-propos .slide__title {
    font-size: 2rem;
  }
  
  .page-a-propos .slide__text {
    font-size: 1em;
    line-height: 1.6;
  }

  .slide__image {
    display: none;
  }

  .slides {
    height: 60vh;
  }

  .page-a-propos .slides .slide {
    height: 60vh;
  }

  .contact-hero,
  .a-propos-hero {
    height: 60vh;
    padding: 2rem;
    justify-content: center;
    align-items: center;
  }
  
  .contact-hero h1,
  .a-propos-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    top: 0;
  }
  
  .contact-text,
  .a-propos-text {
    padding: 3rem 2rem;
  }
  
  .contact-text p,
  .a-propos-text p {
    font-size: clamp(1rem, 2vw, 1.3rem);
  }
  
  .contact-content {
    flex-direction: column;
    gap: 2rem;
    margin: 2rem auto;
    padding: 0 2rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }

  .about-cta {
    flex-direction: column;
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .about-cta img {
    max-width: 100%;
    height: 250px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .section-spacer {
    padding: 2rem 1rem;
  }
  
  .citation-text h2 span {
    transform: translateY(20px);
  }

  .contact-hero,
  .a-propos-hero {
    height: 50vh;
    padding: 1rem;
  }
  
  .contact-hero h1,
  .a-propos-hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    -webkit-text-stroke: 1.5px black;
  }
  
  .contact-text,
  .a-propos-text {
    padding: 2rem 1rem;
  }
  
  .contact-text p,
  .a-propos-text p {
    font-size: 1rem;
  }
  
  .contact-content {
    padding: 0 1rem;
    margin: 2rem auto;
  }
  
  .contact-info {
    padding: 1rem;
  }

  .about-cta {
    padding: 2rem 1rem;
  }
  
  .about-cta img {
    height: 200px;
  }

  .page-a-propos .slide__content {
    padding: 2rem 1rem;
  }
  
  .page-a-propos .slide__title {
    font-size: 1.8rem;
  }

  .slides {
    height: 50vh;
  }

  .page-a-propos .slides .slide {
    height: 50vh;
  }
}

/* Réduction des animations pour accessibilité */
@media (prefers-reduced-motion: reduce) {
  .slide,
  .testimonials .slide,
  .citation-text h2 span,
  .reveal { 
    transition: none !important; 
  }
  
  .citation-text h2 span {
    transform: none !important;
    opacity: 1 !important;
  }
}
/* ========================================
   MENU BURGER — MOBILE
   ======================================== */

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  flex-shrink: 0;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.35s var(--ease-cb-3), opacity 0.25s ease, width 0.35s var(--ease-cb);
  transform-origin: center;
}

.burger-btn.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger-btn.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.burger-btn.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Overlay mobile nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 299;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
}

/* Drawer mobile nav */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: white;
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-cb-2);
  overflow-y: auto;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

.mobile-nav-drawer .drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-bottom: 2.5rem;
  color: black;
}

.mobile-nav-drawer .drawer-close .material-symbols-outlined {
  font-size: 28px;
  color: black;
}

.mobile-nav-drawer .drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-drawer .drawer-links li {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-nav-drawer .drawer-links li:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.mobile-nav-drawer .drawer-links a {
  display: block;
  padding: 1.1rem 0;
  font-family: var(--font-header);
  font-size: 1.3rem;
  font-weight: 200;
  color: black;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: letter-spacing 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-drawer .drawer-links a:hover,
.mobile-nav-drawer .drawer-links a:focus {
  letter-spacing: 0.06em;
  opacity: 0.6;
}

.mobile-nav-drawer .drawer-cta {
  margin-top: 2.5rem;
}

.mobile-nav-drawer .drawer-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-header);
  font-size: 0.9rem;
  font-weight: 300;
  color: black;
  text-decoration: none;
  border: 1px solid black;
  border-radius: 5px;
  padding: 0.75rem 1.25rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav-drawer .drawer-cta a:hover {
  background: black;
  color: white;
}

/* Prevent body scroll when drawer open */
body.nav-open {
  overflow: hidden;
}

/* ========================================
   MOBILE — Breakpoint principal ≤ 768px
   ======================================== */

@media (max-width: 768px) {

  /* --- HEADER --- */
  .header-wrapper {
    margin: 16px 20px 0;
    flex-wrap: nowrap;
  }

  nav {
    display: none; /* caché, remplacé par le drawer */
  }

  .header-icons {
    display: none; /* l'icône calendly est dans le drawer */
  }

  .burger-btn {
    display: flex;
  }

  /* --- HERO page accueil --- */
  .hero-overlay h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
    top: auto;
    left: auto;
    right: 5%;
    bottom: 12%;
    text-align: right;
    position: absolute;
  }

  /* --- SECTION CITATION --- */
  .section-spacer {
    min-height: auto;
    padding: 3.5rem 1.5rem;
  }

  .citation-text h2 {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    line-height: 1.45;
  }

  /* --- CTA SECTION --- */
  .cta-section {
    padding-bottom: 4rem;
  }

  .cta-wrapper {
    flex-direction: column;
    height: auto;
  }

  .cta-wrapper > a {
    flex-basis: auto;
    height: 52vw;
    min-height: 200px;
    max-height: 340px;
  }

  .cta-wrapper .label {
    font-size: 2.8rem;
  }

  .cta-wrapper .side-left .label {
    right: 50%;
    transform: translate(50%, -50%) rotate(-90deg);
  }

  .cta-wrapper .side-right .label {
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
  }

  /* Sur mobile, désactiver l'animation hover, toujours visible */
  .cta-wrapper > a .btn-cta,
  .cta-wrapper > a .desc {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  .cta-wrapper > a .btn-cta {
    transform: translate(-50%, 0) !important;
    bottom: 12%;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }

  .cta-wrapper > a .desc {
    font-size: 0.85rem;
    top: 35%;
    left: 1rem;
    right: 1rem;
    line-height: 1.45;
  }

  .cta-wrapper > a .overlay {
    opacity: 1 !important;
  }

  /* Masquer les labels verticaux sur mobile */
  .cta-wrapper .label {
    display: none;
  }

  /* Masquer les états actifs complexes sur mobile */
  .cta-wrapper.left-active .side-left,
  .cta-wrapper.left-active .side-right,
  .cta-wrapper.right-active .side-right,
  .cta-wrapper.right-active .side-left {
    flex-basis: auto;
    height: 52vw;
    min-height: 200px;
    max-height: 340px;
  }

  /* --- TESTIMONIALS --- */
  .testimonials {
    padding: 4rem 1.5rem 3rem;
  }

  .testimonials h2 {
    font-size: 2.8rem;
    top: 1.5rem;
    right: 1.5rem;
  }

  .testimonials .container {
    height: auto;
    min-height: 420px;
  }

  .testimonials .slide .slide-flex {
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
  }

  .testimonials .slide .media {
    flex: none;
    width: 100%;
    height: 220px;
  }

  .testimonials .slide .content {
    flex: none;
    padding: 0 0 4rem;
    max-width: 100%;
  }

  .testimonials .slide .content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .testimonials .slide .content p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .testimonial-controls {
    bottom: 1rem;
    right: 1rem;
  }

  /* --- SECTION CRÉATRICE --- */
  .section-creatrice {
    padding: 5rem 1.5rem;
  }

  .creatrice-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .creatrice-text {
    min-width: 0;
    max-width: 100%;
  }

  .creatrice-text h2 {
    font-size: 1.6rem;
  }

  .creatrice-image {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .creatrice-image img {
    max-height: 380px;
  }

  /* --- PAGE À PROPOS --- */
  .a-propos-hero {
    height: 55vw;
    min-height: 220px;
    max-height: 380px;
    padding: 1.5rem;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .a-propos-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    top: 0;
    -webkit-text-stroke: 1.5px black;
  }

  .a-propos-text {
    padding: 3rem 1.5rem 2rem;
  }

  .a-propos-text-cta {
    padding: 1rem 1.5rem 3rem;
  }

  .a-propos-text p,
  .a-propos-text-cta p {
    font-size: 1rem;
    margin: 0;
  }

  /* ── SLIDER À PROPOS — VERSION MOBILE ── */

  /* Désactiver le sticky, remettre en flux normal */
  .slides {
    height: auto;
    min-height: 0;
    margin-bottom: 3rem;
    overflow: visible;
  }

  .page-a-propos .slides {
    height: auto !important;
    overflow: visible;
    margin-bottom: 2rem;
  }

  .page-a-propos .slides-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  /* Carrousel horizontal : les slides s'empilent en ligne dans un track */
  .page-a-propos .mobile-slider-track {
    display: flex;
    transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  /* Chaque slide prend exactement 100% de la largeur du viewport */
  .page-a-propos .slides .slide {
    position: relative;
    inset: auto;
    z-index: auto;
    opacity: 1 !important;
    pointer-events: auto !important;
    flex: 0 0 100%;
    width: 100%;
    display: flex !important;
    flex-direction: column;
    background: var(--color-bg);
    padding: 0 0 2rem;
  }

  /* Image en haut, pleine largeur */
  .page-a-propos .slides .slide .slide__image {
    order: -1;
    width: 100%;
    height: 52vw;
    min-height: 200px;
    max-height: 300px;
    display: block;
  }

  .page-a-propos .slides .slide .slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* Contenu texte sous l'image */
  .page-a-propos .slides .slide .slide__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 1.5rem 0;
    height: auto;
  }

  .page-a-propos .slides .slide .slide__content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .page-a-propos .slides .slide .slide__header {
    overflow: visible;
  }

  /* Titres : animation désactivée sur mobile */
  .page-a-propos .slides .slide .title-line span {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .page-a-propos .slides .slide .slide__title {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    margin-bottom: 0.6rem;
    line-height: 1.25;
  }

  /* Texte toujours visible */
  .page-a-propos .slides .slide .slide__text {
    font-size: 0.92rem;
    line-height: 1.65;
    opacity: 1 !important;
    transition: none !important;
    max-width: 100%;
  }

  .page-a-propos .slides .slide .slide__text p {
    margin-bottom: 0.5rem;
  }

  /* Numéro de slide discret */
  .page-a-propos .slides .slide .slide__image::after {
    content: none;
  }

  /* Nav dots en bas, centrée, sous le track */
  .page-a-propos .slides-nav {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    display: flex;
    justify-content: center;
    padding: 1.25rem 0 0.5rem;
  }

  .page-a-propos .slides-nav__nav {
    flex-direction: row;
    gap: 10px;
  }

  .page-a-propos .slides-nav__bullet {
    width: 8px;
    height: 8px;
  }

  /* Flèches swipe (ajoutées par JS) */
  .mobile-slider-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    margin-top: 1rem;
  }

  .mobile-slider-arrow {
    appearance: none;
    background: none;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: black;
    transition: background 0.2s;
  }

  .mobile-slider-arrow:active {
    background: rgba(0,0,0,0.08);
  }

  .mobile-slider-counter {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.45);
    font-family: var(--font-header);
    font-weight: 300;
  }

  /* --- PAGE CONTACT --- */
  .contact-hero {
    height: 55vw;
    min-height: 220px;
    max-height: 380px;
    padding: 1.5rem;
  }

  .contact-hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
    top: 0;
    -webkit-text-stroke: 1.5px black;
  }

  .contact-text {
    padding: 3rem 1.5rem 1.5rem;
  }

  .contact-text p {
    font-size: 1rem;
    margin: 2rem 0 0;
    padding: 0 0 1.5rem;
  }

  .contact-content {
    flex-direction: column;
    gap: 0;
    padding: 0 1.5rem;
    margin: 1rem auto;
  }

  .contact-info {
    min-height: 0;
    padding: 0;
  }

  .contact-cta {
    padding-bottom: 5rem;
  }

  /* --- PAGE SUR-MESURE / PRODUITS --- */
  .page-en-construction .a-propos-hero {
    height: 55vw;
    min-height: 220px;
  }

  /* --- FOOTER --- */
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
  }
}

/* ========================================
   MOBILE — ≤ 480px (très petits écrans)
   ======================================== */

@media (max-width: 480px) {

  .header-wrapper {
    margin: 12px 16px 0;
  }

  .hero-overlay h1 {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
  }

  .citation-text h2 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .testimonials h2 {
    font-size: 2.2rem;
  }

  .testimonials .slide .media {
    height: 180px;
  }

  .creatrice-text h2 {
    font-size: 1.4rem;
  }

  .cta-wrapper > a {
    height: 65vw;
    max-height: 300px;
  }

  .a-propos-hero h1,
  .contact-hero h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    -webkit-text-stroke: 1px black;
  }

  .mobile-nav-drawer .drawer-links a {
    font-size: 1.15rem;
  }
}

