/* ============================================
   Design system — Mindset with Melly
   ============================================ */
:root {
  /* Couleurs — turquoise du logo */
  --teal: #3BB7B4;
  --teal-light: #5ac7c4;
  --teal-mint: #8ed9d7;
  --teal-dark: #2E5D61;
  --white: #ffffff;
  --gray-50: #f8fafb;
  --gray-100: #eef2f4;
  --gray-300: #c5d0d8;
  --gray-500: #6b7c87;
  --gray-700: #3d4a52;
  --gray-900: #1a2228;

  /* Typo */
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;

  /* Spacing & radius */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Layout */
  --container-max: 1440px;
  --header-height: 88px;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
}

main {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  overflow: hidden;
  background: var(--teal);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 4px 20px rgba(59, 183, 180, 0.4),
    0 8px 40px rgba(59, 183, 180, 0.2);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: box-shadow 0.3s ease;
}
.header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  pointer-events: none;
}
.header.header--scrolled {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 6px 28px rgba(59, 183, 180, 0.45),
    0 12px 48px rgba(59, 183, 180, 0.25);
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.25s ease;
}
.logo:hover .logo-badge {
  transform: scale(1.02);
}

.logo-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-img--footer {
  width: 100px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.92;
  position: relative;
  padding-bottom: 2px;
  transition: opacity 0.2s, color 0.2s;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav a:hover {
  opacity: 1;
}
.nav a:hover::after { width: 100%; }

.nav-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.92;
  cursor: pointer;
  position: relative;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.nav-link-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-link-btn:hover {
  opacity: 1;
}
.nav-link-btn:hover::after { width: 100%; }

/* Get in Touch visible only in burger menu on mobile */
.nav-get-in-touch { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.btn-header {
  background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.12) 100%);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1), 0 1px 0 rgba(255,255,255,0.3) inset;
}
.btn-header:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.2) 100%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15), 0 1px 0 rgba(255,255,255,0.4) inset;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover { background: var(--teal-dark); }

.btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Cross icon when menu is open (burger → X) */
.nav.open ~ .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.open ~ .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav.open ~ .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero — photo + MINDSET COACH
   ============================================ */
#home.hero {
  overflow-x: hidden !important;
}
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
  padding-inline: var(--space-2xl);
  margin-bottom: -6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fcfc 100%);
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.hero.hero--is-small {
  background: var(--gray-50);
}

/* Animation: photo + MINDSET COACH visible first, then slogan/logo/card */
.hero:not(.hero--loaded) .hero-slogan,
.hero:not(.hero--loaded) .hero-logo,
.hero:not(.hero--loaded) .hero-ideas-card,
.hero:not(.hero--loaded) .hero-dots {
  opacity: 0;
  pointer-events: none;
}

.hero:not(.hero--loaded) .hero-slogan { transform: translateY(-30%); }
.hero:not(.hero--loaded) .hero-logo { transform: translate(-50%, -40%); }
.hero:not(.hero--loaded) .hero-ideas-card { transform: translate(-50%, 20px); }

.hero-slogan,
.hero-logo,
.hero-ideas-card {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero.hero--loaded .hero-slogan {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
  transition-delay: 0.2s;
}

.hero.hero--loaded .hero-logo {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition-delay: 0.4s;
}

.hero.hero--loaded .hero-ideas-card {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0.6s;
}

.hero-dots {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.hero.hero--loaded .hero-dots {
  opacity: 1;
  transition-delay: 0.8s;
}

.hero-inner {
  animation: hero-inner-fade-in 0.8s ease-out;
}

@keyframes hero-inner-fade-in {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.hero-slogan {
  position: absolute;
  top: 42%;
  left: 15%;
  transform: translateY(-50%);
  max-width: 340px;
}

.hero-slogan-line {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--gray-900);
  line-height: 1.2;
  margin: 0 0 0.1em;
}

.hero-slogan-accent {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

.hero-slogan-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 400;
  color: var(--gray-700);
  line-height: 1.5;
  margin: 0 0 var(--space-xl);
}

.hero-slogan-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-slogan-btns .btn {
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-outline:hover {
  background: rgba(59, 183, 180, 0.08);
}

/* Petits points verts montant de la photo vers le logo */
.hero-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.5;
}

.hero-dots span:nth-child(1) { top: 55%; left: 52%; }
.hero-dots span:nth-child(2) { top: 50%; left: 54%; }
.hero-dots span:nth-child(3) { top: 45%; left: 56%; }
.hero-dots span:nth-child(4) { top: 40%; left: 57.5%; }
.hero-dots span:nth-child(5) { top: 35%; left: 59%; }
.hero-dots span:nth-child(6) { top: 32%; left: 60%; }
.hero-dots span:nth-child(7) { top: 30%; left: 60.5%; }
.hero-dots span:nth-child(8) { top: 28%; left: 61%; }
.hero-dots span:nth-child(9) { display: none; }
.hero-dots span:nth-child(10) { display: none; }

.hero-dots span:nth-child(odd) { width: 5px; height: 5px; opacity: 0.4; }
.hero-dots span:nth-child(3n) { opacity: 0.6; }

.hero-logo {
  position: absolute;
  top: 24%;
  left: 64%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hero-logo-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

/* My Mission — modern glass card + checkmarks */
.hero-ideas-card {
  position: absolute;
  top: 32%;
  left: 80%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 400px;
  padding: var(--space-2xl);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 0 0 1px rgba(59, 183, 180, 0.06),
    0 2px 4px rgba(26, 34, 40, 0.04),
    0 12px 48px rgba(26, 34, 40, 0.06);
}

.hero-ideas-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 var(--space-xl);
  padding: 0;
}

.hero-ideas {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--gray-700);
  min-width: 0;
}

.hero-ideas li {
  position: relative;
  padding-left: 2em;
  margin-bottom: var(--space-md);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero-ideas li:last-child {
  margin-bottom: 0;
}

.hero-ideas li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 14px;
  height: 10px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
  transform-origin: center;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  min-width: 0;
  max-width: 100%;
}

/* Bandeau MINDSET COACH à cheval sur la photo — pleine largeur */
.hero-label-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 2%;
  padding-bottom: 2%;
  background: linear-gradient(to top, rgba(59, 183, 180, 0.9) 0%, rgba(59, 183, 180, 0.5) 20%, transparent 45%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.hero-inner.hero-inner--is-small {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  align-self: flex-end;
  margin-right: var(--space-lg);
}

.hero-inner.hero-inner--is-small .hero-label {
  font-size: clamp(4.5rem, 18vw, 8rem);
}


.hero-image-wrap {
  width: min(540px, 85vw);
  max-width: 100%;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* MINDSET COACH — texte blanc sur gradient, à cheval sur la photo */
.hero-label {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 7.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.9;
  margin: 0 0 -0.05em;
  text-align: center;
  max-width: 100%;
  min-width: 0;
  padding: 0 var(--space-sm);
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  white-space: nowrap;
  align-items: baseline;
  gap: 0.08em;
  overflow: hidden;
}

.hero-label-left,
.hero-label-right {
  display: inline-block;
  opacity: 0;
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
}

.hero-label-left {
  animation-name: hero-label-in-from-left;
  animation-delay: 0.35s;
}

.hero-label-right {
  animation-name: hero-label-in-from-right;
  animation-delay: 0.5s;
}

@keyframes hero-label-in-from-left {
  from {
    opacity: 0;
    transform: translateX(-80%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-label-in-from-right {
  from {
    opacity: 0;
    transform: translateX(80%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Desktop: 3 colonnes — slogan | image | My Mission */
@media (min-width: 901px) {
  /* Colonne gauche visible dès le chargement pour éviter le "trait" (gap visible quand contenu en opacity 0) */
  .hero .hero-slogan,
  .hero .hero-ideas-card {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-xl);
    align-items: center;
    justify-items: stretch;
    max-width: min(1400px, 100%);
    width: 100%;
    margin: 0 auto;
    padding-inline: var(--space-xl);
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* Bandeau MINDSET COACH : rangée séparée en bas, style d'origine */
  .hero-label-wrap {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 2;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    padding-top: 2%;
    padding-bottom: 2%;
    background: linear-gradient(to top, rgba(59, 183, 180, 0.9) 0%, rgba(59, 183, 180, 0.5) 20%, transparent 45%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
  }

  .hero-slogan {
    grid-column: 1;
    grid-row: 1;
    position: static;
    max-width: 320px;
    min-width: 0;
    transform: none;
    justify-self: end;
    align-self: start;
    margin-top: 8vh;
  }

  .hero.hero--loaded .hero-slogan {
    transform: none;
  }

  .hero-inner {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    min-width: 0;
  }

  /* MINDSET COACH : très grande taille (effet d'origine) */
  .hero-label {
    font-size: clamp(3.5rem, 12vw, 7rem);
    letter-spacing: 0.05em;
  }

  .hero-ideas-card {
    grid-column: 3;
    grid-row: 1;
    position: static;
    transform: none;
    margin-top: 8vh;
    width: 100%;
    max-width: 320px;
    min-width: 0;
    justify-self: start;
    align-self: start;
  }

  .hero.hero--loaded .hero-ideas-card {
    transform: none;
  }
}

/* About quote — à droite de la photo sur web uniquement */
@media (min-width: 901px) {
  .about-quote {
    left: auto;
    right: 0;
  }
}

/* ============================================
   Purpose — narrative between hero & about
   ============================================ */
.purpose {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--white);
  overflow: hidden;
}

.purpose-dots {
  position: absolute;
  width: 180px;
  height: 260px;
  background-image: radial-gradient(circle, var(--teal) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.15;
  pointer-events: none;
}

.purpose-dots--tr {
  top: var(--space-xl);
  right: 0;
}

.purpose-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.purpose-hook {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  font-style: italic;
  color: var(--gray-700);
  margin: 0 0 var(--space-lg);
}

.purpose-quote {
  margin: 0 0 var(--space-2xl);
  padding: 0;
  border: none;
}

.purpose-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.25;
  margin: 0;
}

.purpose-headline::before,
.purpose-headline::after {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55em;
  font-weight: 700;
  font-style: normal;
  color: var(--teal);
  line-height: 0;
  vertical-align: -0.08em;
}

.purpose-headline::before {
  content: '\201C';
  margin-right: 0.05em;
}

.purpose-headline::after {
  content: '\201D';
  margin-left: 0.05em;
}

.purpose-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.purpose-text {
  margin: 0;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  color: var(--gray-700);
  line-height: 1.7;
}

.purpose-text strong {
  font-weight: 700;
  color: var(--teal-dark);
}

.purpose-text--closing {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--gray-900);
  line-height: 1.65;
}

.purpose-text--closing em {
  font-style: normal;
  font-weight: 600;
  color: var(--teal);
}

/* ============================================
   About — ABOUT ME
   ============================================ */
.about {
  position: relative;
  min-height: 100vh;
  padding: var(--space-md) 0 var(--space-xl);
  background: var(--gray-50);
  scroll-margin-top: var(--header-height);
  overflow-x: hidden;
  overflow-y: visible;
  display: flex;
  align-items: center;
}


/* Motif de points en fond */
.about-dots {
  position: absolute;
  width: 200px;
  height: 300px;
  background-image: radial-gradient(circle, var(--teal) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.2;
  pointer-events: none;
}

.about-dots--tl {
  top: 0;
  left: 0;
}

.about-dots--br {
  bottom: 0;
  right: 0;
  width: 150px;
  height: 200px;
  opacity: 0.12;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}

/* Citation — ligne 1: "...obstacles," | ligne 2: "and build confidence for life." */
.about-quote {
  position: absolute;
  bottom: calc(-1 * var(--space-2xl));
  left: 0;
  width: 85%;
  max-width: 320px;
  padding: var(--space-md) var(--space-md) var(--space-md) var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-quote-mark {
  position: absolute;
  top: var(--space-xs);
  left: var(--space-sm);
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.about-quote-text {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-900);
  line-height: 1.45;
  margin: 0;
}

/* Contenu droit */
.about-content {
  max-width: 600px;
}

.about-intro {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 var(--space-md);
}

.about-intro-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.about-intro-line {
  width: 32px;
  height: 2px;
  background: var(--teal);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin: 0 0 var(--space-xl);
}

.about-title em {
  font-style: italic;
  color: var(--teal);
}

.about-text {
  margin: 0 0 var(--space-md);
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.about-text:last-of-type { margin-bottom: var(--space-xl); }

.about-signature {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.about-signature-name {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: 0.02em;
}

.about-signature-role {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ============================================
   Services — style Program Offerings
   ============================================ */
.services {
  position: relative;
  padding: calc(var(--space-3xl) + var(--space-lg)) 0;
  background: var(--white);
  scroll-margin-top: var(--header-height);
  overflow: hidden;
}

.services-leaf {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120'%3E%3Cpath d='M50 20c-15 0-30 15-30 40 0 25 15 50 30 60 15-10 30-35 30-60 0-25-15-40-30-40z' fill='%232d9d9a' fill-opacity='0.04'/%3E%3C/svg%3E") no-repeat;
  opacity: 0.6;
  pointer-events: none;
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.services-visual {
  position: relative;
}

.services-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.services-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.services-content {
  max-width: 560px;
}

.services-subtitle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 var(--space-md);
}

.services-subtitle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.services-subtitle-line {
  width: 32px;
  height: 2px;
  background: var(--teal);
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin: 0 0 var(--space-md);
}

.services-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(59, 183, 180, 0.12);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin: 0 0 var(--space-lg);
}

.services-text {
  margin: 0 0 var(--space-md);
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.services-text--closing {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 0;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.service-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
  padding: var(--space-lg) var(--space-lg) var(--space-sm);
}

.service-card-desc {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin: 0;
  padding: 0 var(--space-lg) var(--space-lg);
  line-height: 1.55;
}

.service-card-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-900);
  text-decoration: none;
  transition: color 0.2s;
}

.service-card-link:hover {
  color: var(--teal);
}

.service-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  flex-shrink: 0;
}

.service-card-arrow svg {
  width: 10px;
  height: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 var(--space-sm);
}

.section-title-center {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* ============================================
   Feedback
   ============================================ */
.feedback {
  padding: var(--space-3xl) 0;
  background: var(--gray-50);
}

.feedback-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.feedback-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 var(--space-md);
}

.feedback-subtitle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.feedback-subtitle-line {
  width: 32px;
  height: 2px;
  background: var(--teal);
}

.feedback-title {
  font-family: Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--gray-900);
  line-height: 1.35;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
}

.feedback-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin: 0;
}

.feedback-text {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0 0 var(--space-md);
}

.feedback-author {
  font-size: 0.875rem;
  color: var(--teal);
  font-style: normal;
}

.feedback-author cite {
  font-style: normal;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: var(--space-3xl) 0;
  background: var(--teal);
  color: var(--white);
}

.cta-inner {
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 var(--space-md);
}

.cta-desc {
  font-size: 1.125rem;
  opacity: 0.95;
  margin: 0 0 var(--space-xl);
}

.cta .btn-primary {
  background: var(--white);
  color: var(--teal);
}

.cta .btn-primary:hover {
  background: var(--gray-50);
  color: var(--teal-dark);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: var(--space-xl) 0;
  background: var(--teal-dark);
  color: var(--gray-300);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
}

.footer-logo .logo-img { filter: none; }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--white);
}

.footer-social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-social a[aria-label="Instagram"] .footer-social-icon { color: #E4405F; }
.footer-social a[aria-label="LinkedIn"] .footer-social-icon { color: #0A66C2; }
.footer-social a[aria-label="Facebook"] .footer-social-icon { color: #1877F2; }

.footer-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.footer-media-consent {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-media-consent:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.875rem;
  margin: 0;
}

/* ============================================
   Contact modal
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 34, 40, 0.6);
  cursor: pointer;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.modal-close:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 var(--space-sm);
}

.modal-desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin: 0 0 var(--space-xl);
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-xs);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button[type="submit"] {
  width: 100%;
  margin-top: var(--space-sm);
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form-error {
  color: #c53030;
  font-size: 0.875rem;
  margin: 0 0 var(--space-md);
}

.contact-form-success {
  text-align: center;
}

.contact-form-success-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 var(--space-xl);
}

/* Calendly embed modal — large so booking fits */
.modal--calendly .modal-content--calendly {
  max-width: 900px;
  width: 95vw;
  height: 90vh;
  max-height: 700px;
  padding: 0;
  position: relative;
}

.modal--calendly .modal-close {
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: 10;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.calendly-iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
  border-radius: var(--radius-lg);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
  .nav, .btn-header { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: var(--space-lg);
    background: var(--teal-dark);
    gap: var(--space-md);
  }
  .nav.open .nav-get-in-touch { display: inline-flex; }
  .nav.open + .btn-header { display: none; }

  /* Afficher slogan + carte dès le chargement */
  .hero .hero-slogan,
  .hero .hero-ideas-card {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    transition: none;
  }

  #home {
    scroll-margin-top: var(--header-height);
  }

  /* Tablet (601-900px): 2 colonnes avec photo */
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    padding-top: calc(var(--header-height) + var(--space-md));
    padding-bottom: var(--space-3xl);
    margin-bottom: 0;
    gap: 0;
    overflow-x: hidden;
  }
}

/* Tablet: 2 colonnes — slogan+card | photo */
@media (min-width: 601px) and (max-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: var(--space-lg);
    align-items: center;
    padding-inline: var(--space-lg);
    margin-bottom: -6rem;
    overflow-x: hidden;
  }
  .hero-slogan {
    grid-column: 1;
    grid-row: 1;
    position: static;
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(26, 34, 40, 0.1);
    padding: var(--space-lg);
  }
  .hero-ideas-card {
    grid-column: 1;
    grid-row: 2;
    position: static;
    width: 100%;
    margin: 0;
    align-self: start;
  }
  .hero-inner {
    display: flex !important;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .hero-label-wrap {
    display: flex !important;
    position: relative;
    grid-column: 1 / -1;
    grid-row: 3;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding-top: 2%;
    padding-bottom: 2%;
    background: linear-gradient(to top, rgba(59, 183, 180, 0.9) 0%, rgba(59, 183, 180, 0.5) 20%, transparent 45%, transparent 100%);
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
  }
  .hero-label {
    display: flex !important;
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  .hero-image-wrap {
    width: 100%;
    max-width: 100%;
  }
}

/* Mobile: photo cercle + slogan + carte */
@media (max-width: 600px) {
  .hero-logo,
  .hero-dots { display: none; }
  .hero-label { display: none; }
  .hero-label-wrap { display: none; }

  .hero {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    padding-top: calc(var(--header-height) + var(--space-lg));
    padding-bottom: var(--space-3xl);
    margin-bottom: 0;
    gap: 0;
  }

  /* Photo circulaire centrée, au-dessus de la première section (slogan) — pas de bloc/section autour */
  .hero-inner,
  .hero-inner.hero-inner--is-small {
    display: flex !important;
    order: -2;
    justify-content: center;
    align-items: center;
    margin: 0 0 var(--space-xl);
    padding: 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    box-shadow: none !important;
    align-self: center;
  }

  .hero-inner .hero-image-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(59, 183, 180, 0.3);
    box-shadow: 0 4px 20px rgba(26, 34, 40, 0.12);
    background: transparent;
  }

  .hero-inner .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-slogan {
    order: -1;
    position: static;
    transform: none;
    max-width: none;
    width: calc(100% - var(--space-xl));
    padding: var(--space-lg);
    margin: 0 auto var(--space-sm);
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(26, 34, 40, 0.1), 0 0 0 1px rgba(59, 183, 180, 0.12);
    border: 1px solid rgba(59, 183, 180, 0.15);
  }

  .hero-slogan-line,
  .hero-slogan-accent,
  .hero-slogan-desc {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .hero-slogan-line {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.15em;
  }

  .hero-slogan-accent {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: var(--space-md);
  }

  .hero-slogan-desc {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
  }

  .hero-slogan-btns {
    justify-content: center;
    gap: var(--space-md);
  }

  .hero-slogan-btns .btn {
    flex: 1;
    min-width: 140px;
  }

  .hero-ideas-card {
    order: 1;
    position: static;
    transform: none;
    width: calc(100% - var(--space-xl));
    max-width: 400px;
    margin: var(--space-md) auto var(--space-2xl);
    padding: var(--space-lg);
  }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .services-inner { grid-template-columns: 1fr; }
  .services-content { max-width: none; }
  .about-quote {
    width: calc(100% - var(--space-lg));
    max-width: none;
  }

  .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .feedback-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .hero-image-wrap {
    width: min(340px, 90vw);
  }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-left { flex-direction: column; }
  .footer-right { flex-direction: column; }
}

@media (max-width: 380px) {
  .hero-label {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
  }
}
