/* =====================================================
   CoconBike — V1
   ===================================================== */

:root {
  --white:      #FFFFFF;
  --cream:      #F1EAD0;
  --teal-dark:  #06323B;
  --teal-mid:   #0E4F5C;
  --sage:       #7FB89C;
  --rose:       #E8C4B8;
  --terracotta: #C97D4F;
  --terracotta-hover: #B26A40;
  --ink:        #06323B;
  --ink-soft:   rgba(6, 50, 59, 0.65);
  --line:       rgba(6, 50, 59, 0.12);
  --placeholder-bg: #EFEEEC;

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1320px;
  --header-h: 64px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 1024px) {
  :root { --header-h: 80px; }
}

/* RESET ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* TYPO ----------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-weight: 300; line-height: 1.02; letter-spacing: -0.03em; }
h3 { font-size: 1.5rem; }
p  { margin: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}
.eyebrow-sage { color: var(--sage); }

/* BOUTONS -------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0.875rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 250ms var(--ease-out), color 250ms var(--ease-out), box-shadow 250ms var(--ease-out), transform 250ms var(--ease-out);
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--terracotta); color: #FFF8F2; }
.btn-primary:hover {
  background: var(--terracotta-hover);
  box-shadow: 0 4px 16px rgba(201, 125, 79, 0.25);
  transform: translateY(-1px);
}
.btn-lg { padding: 1.25rem 2.5rem; font-size: 1rem; }

/* HEADER --------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  background: transparent;
  transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out), backdrop-filter 300ms var(--ease-out);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.header-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo-link { position: relative; display: inline-flex; align-items: center; height: 44px; }
.logo { height: 44px; width: auto; transition: opacity 300ms var(--ease-out); }
.logo-light { opacity: 1; }
.logo-dark { position: absolute; top: 0; left: 0; opacity: 0; }
.site-header.is-scrolled .logo-light { opacity: 0; }
.site-header.is-scrolled .logo-dark { opacity: 1; }

.header-nav {
  display: none;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.header-nav a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 200ms var(--ease-out);
}
.header-nav a:hover { color: var(--terracotta); }
.site-header.is-scrolled .header-nav a { color: var(--ink); }
.site-header.is-scrolled .header-nav a:hover { color: var(--terracotta); }

.header-cta { display: inline-block; }

@media (min-width: 1024px) {
  .header-nav { display: flex; }
  .logo-link { height: 48px; }
  .logo { height: 48px; }
}

/* HERO IMMERSIF -------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  margin-top: calc(-1 * var(--header-h));
  overflow: hidden;
  color: var(--white);
}
@media (min-width: 1024px) {
  .hero { min-height: 720px; }
}

/* Image de fond plein écran */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Overlay sombre uniforme pour lisibilité */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 50, 59, 0.45);
  z-index: 1;
  pointer-events: none;
}

/* Conteneur du texte par-dessus la photo */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  padding-top: var(--header-h);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .hero-content {
    padding: 0 3rem 5rem;
    padding-top: var(--header-h);
  }
}

/* Bloc texte aligné à gauche, mais positionné dans la zone droite */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 540px;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-text {
    max-width: 560px;
  }
}

.hero-text .eyebrow { margin-bottom: 1.25rem; }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 480px;
}
@media (min-width: 768px) {
  .hero-sub { font-size: 1.1875rem; }
}

.hero-cta { margin-top: 2rem; }

.hero-link {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  transition: color 200ms, border-color 200ms;
}
.hero-link:hover { color: var(--white); border-color: var(--white); }

/* REVEAL WORDS --------------------------------------- */
.reveal-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal-words.is-revealed .word {
  opacity: 1;
  transform: translateY(0);
}

/* REVEAL GENERIC ------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* PLACEHOLDERS PRODUIT ------------------------------- */
.placeholder {
  background: var(--placeholder-bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.875rem;
  font-weight: 400;
}
.placeholder span { max-width: 22ch; line-height: 1.5; }
.placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
}
.placeholder:has(img) { padding: 0; }
.placeholder-produit { aspect-ratio: 4 / 5; }
@media (min-width: 1024px) {
  .placeholder-produit { aspect-ratio: 3 / 4; }
}

/* SECTION LE PRODUIT --------------------------------- */
.produit {
  background: var(--cream);
  padding: 6rem 0;
  color: var(--ink);
}
@media (min-width: 1024px) {
  .produit { padding: 10rem 0; }
}
.produit-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .produit-grid {
    grid-template-columns: 55% 45%;
    gap: 6rem;
    align-items: center;
  }
}
.produit-content h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-top: 1.25rem;
}
.produit-intro {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .produit-intro { font-size: 1.125rem; }
}
.benefits { border-top: 1px solid var(--line); }
.benefit {
  display: grid;
  grid-template-columns: 4ch 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.benefit-num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--sage);
}
.benefit-body h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.benefit-body p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* SECTION COMMENT ÇA MARCHE -------------------------- */
.how {
  background: var(--white);
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .how { padding: 10rem 0; }
}
.how-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.how-header h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-top: 1.25rem;
}
.how-grid { display: block; }
.sticky-visual { display: none; }

.steps { display: flex; flex-direction: column; gap: 4rem; }
.step { display: flex; flex-direction: column; gap: 1.25rem; }
.step .mobile-visual { aspect-ratio: 4 / 5; width: 100%; }
.step-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--sage);
}
.step h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.75rem;
  margin: 0;
}
.step p {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 32rem;
}

@media (min-width: 1024px) {
  .how-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 6rem;
    align-items: start;
  }
  .sticky-visual {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 4rem);
    height: calc(100vh - var(--header-h) - 8rem);
    max-height: 640px;
  }
  .sticky-visual .visual-stack {
    height: 100%;
  }
  .visual-stack {
    position: relative;
    aspect-ratio: 3 / 4;
    width: 100%;
  }
  .how-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    opacity: 0;
    transition: opacity 400ms var(--ease-out);
  }
  .how-visual.is-active { opacity: 1; }
  .step .mobile-visual { display: none; }
  .steps { gap: 0; }
  .step {
    min-height: 60vh;
    justify-content: center;
    gap: 1.5rem;
  }
  .step:first-child { padding-top: 4rem; }
  .step:last-child { padding-bottom: 6rem; }
}

/* SECTION DÉMARCHE ----------------------------------- */
.demarche {
  background: var(--teal-dark);
  color: var(--white);
}
.demarche-inner {
  max-width: 720px;
  text-align: center;
  padding: 6rem 1.5rem;
}
@media (min-width: 1024px) {
  .demarche-inner { padding: 10rem 1.5rem; }
}
.demarche-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-top: 1.5rem;
  color: var(--white);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.demarche-body {
  margin-top: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) {
  .demarche-body { font-size: 1.375rem; }
}
.demarche-emphasis { position: relative; }
.demarche-emphasis::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rose);
  margin: 0 auto 1.5rem;
}

/* PARALLAXE ------------------------------------------ */
.parallax-banner {
  position: relative;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -25%;
  height: 150%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 50, 59, 0.4);
}
.parallax-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  text-align: center;
  padding: 0 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* SECTION CONSTAT ------------------------------------ */
.constat {
  background: var(--white);
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .constat { padding: 6rem 0; }
}
.constat-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.constat-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.75rem;
  max-width: 600px;
  margin: 1.25rem auto 0;
  letter-spacing: -0.01em;
}
.constat-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 1rem auto 0;
}
.constat-block {
  margin-top: 3rem;
  background: rgba(127, 184, 156, 0.12);
  border-radius: 8px;
  padding: 2.5rem;
}
.constat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .constat-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.constat-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
}
.constat-line {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
.constat-source {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--ink-soft);
}

/* SECTION COMMANDE (injectée) ------------------------ */
.commande {
  background: var(--white);
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .commande { padding: 10rem 0; }
}
.commande-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.commande-inner h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin: 1.25rem auto 0;
  max-width: 720px;
}
.commande-sub {
  margin: 1.5rem auto 0;
  max-width: 600px;
  color: var(--ink-soft);
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Cartes Ulule */
.tier-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
}
@media (min-width: 1024px) {
  .tier-grid { grid-template-columns: repeat(3, 1fr); }
}
.tier {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--terracotta);
  border-radius: 4px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 40px rgba(6, 50, 59, 0.18);
}
.tier-featured { border: 2px solid var(--terracotta); }
.tier-ribbon {
  position: absolute;
  top: -0.75rem;
  left: 2.5rem;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
}
.tier-badge {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tier-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0.5rem 0 0;
}
.tier-price {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
  margin: 1.5rem 0 0.25rem;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
}
.tier-subprice {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.tier-list {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  border-top: 1px solid var(--line);
}
.tier-list li {
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}
.tier-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
  font-weight: 500;
}
.tier-extra {
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  text-align: center;
}
.commande-cta { margin-top: 2.5rem; }

/* Phase boutique */
.boutique-card {
  margin: 4rem auto 0;
  max-width: 480px;
  background: var(--cream);
  border-radius: 4px;
  padding: 3rem;
  text-align: center;
}
.boutique-card .placeholder {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  font-size: 0.8125rem;
}
.boutique-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
}
.boutique-price {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3.5rem;
  line-height: 1;
  margin: 1rem 0 1.5rem;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
}
.boutique-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 320px;
  margin: 0 auto 2rem;
}
.boutique-list li {
  font-size: 0.9375rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink);
}
.boutique-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 500;
}

/* FAQ ------------------------------------------------ */
.faq {
  background: var(--white);
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .faq { padding: 8rem 0; }
}
.faq-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .faq-grid { grid-template-columns: 40% 1fr; gap: 6rem; align-items: start; }
}
.faq-intro h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-top: 1.25rem;
}
.faq-contact {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--ink-soft);
}
.faq-contact a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 200ms, border-color 200ms;
}
.faq-contact a:hover { color: var(--teal-mid); border-color: var(--teal-mid); }

.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.125rem;
  padding: 1.5rem 0;
  color: var(--ink);
  gap: 1.5rem;
  transition: color 200ms;
}
.faq-q:hover { color: var(--teal-mid); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: transform 300ms var(--ease-out);
  display: inline-block;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-a p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-bottom: 1.5rem;
  max-width: 56ch;
}

/* FOOTER --------------------------------------------- */
.site-footer {
  background: var(--teal-dark);
  color: var(--white);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 0 1.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-brand {
    max-width: 360px;
    margin-left: -2rem;
  }
  .footer-brand .footer-logo {
    margin-top: -3.5rem;
  }
}
.footer-logo { height: 270px; width: auto; margin-bottom: -3rem; }
.footer-tagline { max-width: 28ch; }
.footer-tagline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 28ch;
  line-height: 1.4;
}
.footer-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 200ms;
}
.footer-col a:hover { color: var(--white); }
.footer-col li { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.85); }

.footer-bottom {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* REDUCED MOTION ------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-words .word {
    opacity: 1 !important;
    transform: none !important;
  }
  .parallax-bg { transform: none !important; }
}

/* ===================================================== */
/* MENU MOBILE (burger + drawer)                        */
/* ===================================================== */

/* Bouton burger : caché par défaut sur desktop */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 110;
  position: relative;
}

.menu-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 300ms var(--ease-out), opacity 200ms var(--ease-out), background 300ms var(--ease-out);
}

.site-header.is-scrolled .menu-toggle-line {
  background: var(--ink);
}

/* État ouvert : transformer le burger en croix */
.menu-toggle.is-open .menu-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--cream);
}
.menu-toggle.is-open .menu-toggle-line:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open .menu-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--cream);
}

/* Drawer plein écran : caché par défaut */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--teal-dark);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 350ms var(--ease-out), transform 350ms var(--ease-out), visibility 350ms;
  overflow-y: auto;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-inner {
  min-height: 100vh;
  padding: 6rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu-link {
  font-family: var(--font-serif, "Fraunces", serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out), color 200ms var(--ease-out);
}

.mobile-menu.is-open .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu-link:nth-child(1) { transition-delay: 100ms; }
.mobile-menu.is-open .mobile-menu-link:nth-child(2) { transition-delay: 160ms; }
.mobile-menu.is-open .mobile-menu-link:nth-child(3) { transition-delay: 220ms; }
.mobile-menu.is-open .mobile-menu-link:nth-child(4) { transition-delay: 280ms; }
.mobile-menu.is-open .mobile-menu-link:nth-child(5) { transition-delay: 340ms; }

.mobile-menu-link:hover { color: var(--terracotta); }

.mobile-menu-cta {
  align-self: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms var(--ease-out) 450ms, transform 400ms var(--ease-out) 450ms, background 250ms var(--ease-out);
}

.mobile-menu.is-open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Empêcher le scroll du body quand le menu est ouvert */
body.menu-open {
  overflow: hidden;
}

/* MOBILE : afficher le burger, masquer le CTA header */
@media (max-width: 1023px) {
  .menu-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  /* Masquer l'eyebrow du hero en mobile */
  .hero-text > .eyebrow.eyebrow-sage {
    display: none;
  }
}

/* DESKTOP : masquer le drawer même s'il est ouvert (sécurité) */
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
  .menu-toggle {
    display: none !important;
  }
}

/* prefers-reduced-motion : désactiver les transitions */
@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu-link,
  .mobile-menu-cta,
  .menu-toggle-line {
    transition: none !important;
  }
}

/* Effet "Tu roules" — déplacement horizontal doux */
img.roule {
  transition: transform 0.1s linear;
  will-change: transform;
}
.placeholder:has(img.roule) { background: transparent; }

/* SECTION VIDÉO ------------------------------------- */
.video-section {
  background: var(--white);
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .video-section { padding: 8rem 0; }
}
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.film {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  background: var(--white);
}
.video-sound {
  position: absolute;
  bottom: 1rem;
  right: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 1.375rem;
  line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
  transition: opacity 300ms var(--ease-out), transform 200ms var(--ease-out);
}
.video-sound:hover { transform: scale(1.1); }
.video-sound.is-hidden { opacity: 0; pointer-events: none; }
.video-sound-label { display: none; }

/* SECTION CINQ COLORIS ------------------------------ */
.coloris {
  background: var(--white);
  padding: 6rem 0 0;
}
@media (min-width: 1024px) {
  .coloris { padding: 8rem 0 0; }
}
.coloris-inner {
  text-align: center;
  max-width: 960px;
}
.coloris-inner h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-top: 1.25rem;
}
.coloris-visual {
  margin-top: 3rem;
}
.coloris-visual img {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  height: auto;
  display: block;
  filter: brightness(0.93) contrast(1.06) saturate(1.05);
}
