:root {
      --bleu: #3a5a72;
      --bleu-light: #4e728f;
      --bleu-pale: #d8e5ed;
      --coral: #c47e6b;
      --coral-light: #d9a090;
      --coral-pale: #f2ddd7;
      --creme: #faf7f4;
      --dark: #1e2d38;
      --text: #3a3a3a;
      --white: #ffffff;
		--ocre: #c89b3c;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--creme);
      font-size: 16px;
      line-height: 1.7;
    }

    /* ─── HAMBURGER ─── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      width: 36px;
      height: 36px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--bleu);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
      transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-mobile-menu {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: rgba(250,247,244,0.98);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(58,90,114,0.12);
      flex-direction: column;
      z-index: 99;
      padding: 0.5rem 0 1rem;
    }
    .nav-mobile-menu.open { display: flex; }
    .nav-mobile-menu a {
      text-decoration: none;
      color: var(--dark);
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.85rem 2rem;
      border-bottom: 1px solid rgba(58,90,114,0.06);
      transition: color 0.2s, background 0.2s;
    }
    .nav-mobile-menu a:hover { color: var(--coral); background: rgba(58,90,114,0.03); }
    .nav-mobile-menu > a:last-child {
      border-bottom: none;
      color: var(--coral);
      font-weight: 600;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3rem;
      height: 72px;
      background: rgba(250,247,244,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(58,90,114,0.12);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--bleu);
      letter-spacing: 0.05em;
      text-decoration: none;
    }
    .nav-logo span { color: var(--coral); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links > li {
      display: flex;
      align-items: center;
    }
    .nav-links > li > a {
      display: flex;
      align-items: center;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--dark);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--coral); }

    .nav-cta {
      background: var(--coral);
      color: white !important;
      padding: 0.5rem 1.3rem;
      border-radius: 2px;
    }
    .nav-cta:hover { background: var(--bleu) !important; color: white !important; }

    /* ─── SOUS-MENU DESKTOP ─── */
    .nav-has-sub {
      position: relative;
    }
    .nav-has-sub-link {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }
    .nav-arrow {
      font-size: 0.65rem;
      transition: transform 0.2s;
      display: inline-block;
    }
    .nav-has-sub.sub-open .nav-arrow {
      transform: rotate(180deg);
    }
    .nav-submenu {
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      padding-top: 16px;
      min-width: 160px;
      list-style: none;
      z-index: 200;
      transition: opacity 0.15s, visibility 0.15s;
    }
    .nav-submenu::after {
      content: '';
      position: absolute;
      top: 16px; left: 0; right: 0; bottom: 0;
      background: rgba(250,247,244,0.98);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(58,90,114,0.12);
      border-radius: 6px;
      box-shadow: 0 8px 24px rgba(58,90,114,0.12);
      z-index: -1;
    }
    .nav-has-sub.sub-open .nav-submenu {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
    }
    .nav-submenu li a {
      display: block;
      padding: 0.6rem 1.2rem;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--dark);
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.2s, background 0.2s;
    }
    .nav-submenu li:first-child a { padding-top: 0.85rem; }
    .nav-submenu li:last-child a  { padding-bottom: 0.85rem; }
    .nav-submenu li a:hover {
      color: var(--coral);
      background: rgba(58,90,114,0.04);
    }

    /* ─── SOUS-MENU MOBILE ─── */
    .mobile-has-sub {
      border-bottom: 1px solid rgba(58,90,114,0.06);
    }
    .mobile-sub-toggle {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--dark);
      padding: 0.85rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: color 0.2s;
    }
    .mobile-sub-toggle:hover { color: var(--coral); }
    .mobile-has-sub.open .nav-arrow { transform: rotate(180deg); }
    .mobile-submenu {
      display: none;
      flex-direction: column;
      background: rgba(58,90,114,0.04);
    }
    .mobile-has-sub.open .mobile-submenu { display: flex; }
    .mobile-submenu a {
      padding: 0.65rem 2rem 0.65rem 3rem !important;
      font-size: 0.82rem !important;
      border-bottom: none !important;
      color: var(--dark) !important;
      opacity: 0.8;
    }
    .mobile-submenu a:hover { color: var(--coral) !important; opacity: 1; }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 72px;
    }

    .hero-left {
      background: var(--bleu);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5rem 4rem 5rem 6rem;
      position: relative;
      overflow: hidden;
    }

    .hero-left::before {
      content: '';
      position: absolute;
      bottom: -80px; right: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: rgba(196,126,107,0.15);
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--coral-light);
      margin-bottom: 1.5rem;
      font-weight: 500;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 6vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      color: white;
      margin-bottom: 2rem;
    }
    .hero-title strong {
      font-weight: 600;
      font-style: italic;
      color: var(--coral-light);
      display: block;
    }

    .hero-subtitle {
	  text-align: justify;
      color: rgba(255,255,255,0.75);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 400px;
      margin-bottom: 2.5rem;
    }

    .hero-badges {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    .badge {
      border: 1px solid rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.85);
      padding: 0.35rem 1rem;
      border-radius: 100px;
      font-size: 0.8rem;
      letter-spacing: 0.04em;
    }

    .hero-right {
      background: var(--coral-pale);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 5rem 3rem;
      text-align: center;
      position: relative;
    }

    .hero-right {
      background: var(--coral-pale);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
      padding: 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-logo-bg {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      /* height: 100%; */
      object-fit: cover;
      object-position: center top;
    }

    .hero-right-overlay {
      position: relative;
      z-index: 1;
      margin-top: 72%;
      background: linear-gradient(to bottom, rgba(232,189,183,0) 0%, rgba(232,189,183,0.92) 18%, rgba(232,189,183,0.97) 100%);
      padding: 2rem 2.5rem 0.75rem;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
	.hero-right-title {
	  font-family: 'Cormorant Garamond', serif;
	  font-size: 1.7rem;
	  font-weight: 600;
	  color: var(--bleu);
	  margin-bottom: 0.5rem;
	  position: relative;
	}

	/* ligne décorative sous le titre */
	.hero-right-title::after {
	  content: "";
	  display: block;
	  width: 50px;
	  height: 2px;
	  background: var(--ocre);
	  margin-top: 8px;
	  margin-bottom: 16px;
	}

    /* Texte du bloc hero-right : italique, DM Sans, 1rem */
    .hero-right-text {
      text-align: justify;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-style: italic;
      font-weight: 400;
      line-height: 1.6;
      color: var(--bleu);
    }

    /* Nhúc nhích : gras, pas italique, DM Sans, 1rem */
    .hero-right-nhuc {
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-style: normal;
      font-weight: 700;
      color: var(--coral) !important;
      line-height: 1.5;
    }

    /* Tagline Cabinet : DM Sans normal, cohérent avec hero-left */
    .hero-right-tagline {
      position: relative;
      z-index: 1;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-style: normal;
      font-weight: 500;
      color: var(--bleu);
      padding: 0.5rem 2.5rem 0.2rem;
      background: rgba(232,189,183,0.97);
      text-align: left;
    }

    /* Adresse : DM Sans, sobre, cohérent hero-left */
    .hero-address {
      position: relative;
      z-index: 1;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      font-style: normal;
      font-weight: 400;
      color: var(--coral);
      letter-spacing: 0.05em;
      padding: 0 2.5rem 1.5rem;
      background: rgba(232,189,183,0.97);
      text-align: left;
      height: 100%;
    }

    /* Scroll hint */
    /* .scroll-hint { */
      /* position: absolute; */
      /* bottom: 2rem; */
      /* left: 50%; */
      /* transform: translateX(-50%); */
      /* display: flex; */
      /* flex-direction: column; */
      /* align-items: center; */
      /* gap: 0.4rem; */
      /* font-size: 0.7rem; */
      /* letter-spacing: 0.15em; */
      /* text-transform: uppercase; */
      /* color: var(--coral); */
      /* opacity: 0.7; */
      /* animation: bounce 2s infinite; */
    /* } */
    /* .scroll-hint::after { */
      /* content: ''; */
      /* width: 1px; */
      /* height: 40px; */
      /* background: var(--coral); */
    /* } */
    /* @keyframes bounce { */
      /* 0%,100% { transform: translateX(-50%) translateY(0); } */
      /* 50% { transform: translateX(-50%) translateY(6px); } */
    /* } */

    /* ─── SECTION COMMON ─── */
    section { padding: 6rem 6rem; }

    @media (min-width: 901px) {
      section {
        padding-left: clamp(4rem, 15vw, 15rem);
        padding-right: clamp(4rem, 15vw, 15rem);
      }
    }
    .section-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--coral);
      font-weight: 500;
      margin-bottom: 1rem;
    }
    .section-title { 
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 300;
      color: var(--bleu);
      line-height: 1.15;
      margin-bottom: 2rem;
    }
    .section-title em { font-style: italic; color: var(--coral); }


    /* ── SECTION APERÇU AGENDA ── */
  #agenda-apercu {
    background: var(--bleu);
    color: white;
  }
  #agenda-apercu .section-eyebrow {
    color: #d9a090;
    text-align: center;
  }
  #agenda-apercu .section-title { color: white; }
  #agenda-apercu .section-title em { color: #d9a090; font-style: italic; }

  .agenda-apercu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
  }
  .agenda-apercu-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto 1.25rem;
  }
  .agenda-apercu-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 1100px;
    margin: 0 auto 1rem;
  }
  .agenda-apercu-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
  .agenda-apercu-periode { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }
  .agenda-apercu-link { font-size: 0.82rem; color: #d9a090; text-decoration: none; font-weight: 500; white-space: nowrap; }
  .agenda-apercu-link:hover { text-decoration: underline; }

  .mini-nav-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.15); color: white;
    border-radius: 6px; font-size: 1.3rem; line-height: 1;
    border: none; cursor: pointer;
    transition: background 0.2s; user-select: none;
  }
  .mini-nav-btn:hover:not(:disabled) { background: rgba(255,255,255,0.28); }
  .mini-nav-btn:disabled { opacity: 0.25; cursor: default; }

  .mini-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .mini-col-header {
    text-align: center;
    padding: 0.55rem 0.3rem;
    background: var(--bleu);
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; align-items: center; gap: 0.1rem;
    min-width: 0;
  }
  .mini-col-header:last-child { border-right: none; }
  .mini-col-header.today { background: #c47e6b; }
  .mini-lj-day  { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.9); }
  .mini-lj-date { font-size: 0.68rem; color: rgba(255,255,255,0.65); }
  .mini-col-header.today .mini-lj-day,
  .mini-col-header.today .mini-lj-date { color: white; }

  .mini-col-body {
    padding: 0.4rem 0.25rem;
    border-right: 1px solid #e8f0f6;
    min-height: 100px;
    display: flex; flex-direction: column; gap: 0.3rem;
    min-width: 0; overflow: hidden;
    background: white;
  }
  .mini-col-body:last-child { border-right: none; }
  .mini-col-body.today-col { background: #fffbf5; }

  .mini-card {
    display: block;
    border-left: 3px solid transparent;
    border-radius: 5px;
    padding: 0.3rem 0.25rem;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .mini-card:hover { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(0,0,0,0.13); }
  .mini-heure { display: block; font-size: 0.62rem; font-weight: 700; white-space: nowrap; overflow: hidden; }
  .mini-nom   { display: block; font-size: 0.65rem; font-weight: 700; color: #1e2d38; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 0.08rem; }
  .mini-dispo { display: block; font-size: 0.55rem; font-weight: 700; text-align: center; border-radius: 3px; padding: 0.05rem 0.15rem; margin-top: 0.15rem; }
  .mini-dispo.ok   { background: rgba(0,0,0,0.07); color: inherit; }
  .mini-dispo.low  { background: #fff3cd; color: #856404; }
  .mini-dispo.zero { background: #f8d7da; color: #721c24; }
  .mini-vide { color: #ccc; font-size: 0.75rem; text-align: center; padding: 0.5rem 0; }

  .agenda-apercu-footer { text-align: center; margin-top: 1.5rem; }
  .agenda-apercu-btn {
    display: inline-block; background: #c47e6b; color: white;
    padding: 0.65rem 1.5rem; border-radius: 8px; text-decoration: none;
    font-size: 0.88rem; font-weight: 500; transition: background 0.2s;
  }
  .agenda-apercu-btn:hover { background: #d9a090; }

  @media (max-width: 600px) {
    #agenda-apercu { padding: 3rem 0.75rem 2.5rem; }
    .agenda-apercu-head { flex-direction: column; gap: 0.4rem; }
    .mini-col-header { padding: 0.35rem 0.1rem; }
    .mini-lj-day  { font-size: 0.6rem; }
    .mini-lj-date { font-size: 0.55rem; }
    .mini-col-body { padding: 0.25rem 0.1rem; min-height: 70px; }
    .mini-card { padding: 0.22rem 0.15rem; border-left-width: 2px; }
    .mini-heure { font-size: 0.55rem; }
    .mini-nom   { font-size: 0.58rem; }
    .mini-dispo { font-size: 0.5rem; }
  }
  


    /* ─── NAISSANCE ─── */
    #naissance {
      background: white;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .naissance-text p {
      margin-bottom: 1.2rem;
      color: var(--text);
      font-size: 1rem;
      line-height: 1.8;
    }

    .naissance-right {
      padding-top: 1rem;
    }

    .pilier {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--bleu-pale);
    }
    .pilier:last-child { border-bottom: none; }

    .pilier-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: var(--coral-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.3rem;
    }

    .pilier h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--bleu);
      margin-bottom: 0.3rem;
    }
    .pilier p { font-size: 0.88rem; color: var(--text); opacity: 0.85; }

    /* ─── AMBITIONS ─── */
    #ambitions {
      background: var(--bleu);
      color: white;
    }
    #ambitions .section-title { color: white; }
    #ambitions .section-title em { color: var(--coral-light); }
    #ambitions .section-eyebrow { color: var(--coral-light); }

    .ambitions-grid {
	  display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  gap: 1.5rem;
	  margin-top: 3rem;
	}

    .ambition-card {
	  text-align: justify;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 2rem;
      transition: background 0.3s, transform 0.3s;
    }
    .ambition-card:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-4px);
    }

    .ambition-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: var(--coral-light);
      line-height: 1;
      margin-bottom: 1rem;
      opacity: 0.6;
    }

    .ambition-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: white;
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }
    .ambition-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

    /* ─── AMBITIONS LIST (nouvelle section) ─── */
    #offre {
      background: var(--creme);
    }

    .ambitions-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 2.5rem;
    }

    .ambition-item {
      display: flex;
      align-items: flex-start;
      gap: 2rem;
      padding: 1.75rem 0;
      border-bottom: 1px solid var(--bleu-pale);
    }
    .ambition-item:last-child { border-bottom: none; }

    .ambition-item .ambition-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--coral);
      line-height: 1;
      opacity: 0.5;
      flex-shrink: 0;
      width: 3rem;
      text-align: right;
    }

    .ambition-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--bleu);
      margin-bottom: 0.3rem;
    }

    .ambition-body p {
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.7;
      opacity: 0.8;
    }
	
	/* ─── CONSTATS ─── */
	#constats {
      background: var(--bleu);
      color: white;
    }
    #constats .section-title { color: white;}
    #constats .section-title em { color: var(--coral-light); }
    #constats .section-eyebrow { color: var(--coral-light); }

    .constats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .constat-card {
	  text-align: justify;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 2rem;
      transition: background 0.3s, transform 0.3s;
    }
    .constat-card:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-4px);
    }

    .constat-card.constat-full {
      grid-column: 1 / -1;
    }

    .constat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: var(--coral-light);
      line-height: 1;
      margin-bottom: 1rem;
      opacity: 0.6;
    }

    .constat-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: white;
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }
    .constat-card p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
      margin-bottom: 0.5rem;
    }
    .constat-card p:last-child { margin-bottom: 0; }

    /* ─── ÉQUIPE ─── */
    #equipe {
      background: var(--creme);
    }

    .equipe-contact-hint {
      font-size: 0.88rem;
      color: var(--bleu);
      margin-top: 0.3rem;
      margin-bottom: 0.5rem;
      font-style: normal;
      font-weight: 600;
      opacity: 1;
    }
    .equipe-hint {
      font-size: 0.82rem;
      color: var(--text);
      opacity: 0.5;
      font-style: italic;
      margin-top: 0;
      margin-bottom: 0;
    }

    .equipe-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    /* Flip card container */
    .flip-card {
      text-align: justify;
      perspective: 1000px;
      cursor: pointer;
    }

    .flip-inner {
      position: relative;
      width: 100%;
      transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
      transform-style: preserve-3d;
    }

    .flip-card.flipped .flip-inner {
      transform: rotateY(180deg);
    }

    .flip-front,
    .flip-back {
      width: 100%;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border-radius: 12px;
      overflow: hidden;
    }

    .flip-back {
      position: absolute;
      top: 0; left: 0;
      height: 100%;
    }

    /* FRONT */
    .flip-front {
      background: white;
      box-shadow: 0 2px 20px rgba(58,90,114,0.08);
      display: flex;
      flex-direction: column;
    }

    .coach-photo-placeholder {
      width: 100%;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      letter-spacing: 0.05em;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }
    .coach-photo-placeholder img {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .coach-photo-placeholder.bleu {
      background: var(--bleu-pale);
      color: var(--bleu);
    }
    .coach-photo-placeholder.coral {
      background: var(--coral-pale);
      color: var(--coral);
    }

    .flip-front-info {
      padding: 0.6rem 1rem 0.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .coach-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--bleu);
      line-height: 1.2;
    }

    .coach-role {
      font-size: 0.72rem;
      color: var(--coral);
      font-weight: 500;
      letter-spacing: 0.03em;
      margin: 0;
    }

    .coach-contact {
      display: inline-block;
      font-size: 0.75rem;
      color: var(--bleu-light);
      text-decoration: none;
      font-weight: 500;
      padding: 0.25rem 0.7rem;
      border: 1px solid var(--bleu-pale);
      border-radius: 100px;
      transition: background 0.2s, color 0.2s;
    }
    .coach-contact:hover {
      background: var(--bleu);
      color: white;
      border-color: var(--bleu);
    }

    .flip-cta {
      padding: 0.4rem 1rem 0.6rem;
      font-size: 0.72rem;
      color: var(--bleu);
      opacity: 0.45;
      letter-spacing: 0.04em;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .flip-cta span {
      transition: transform 0.2s;
    }
    .flip-card:hover .flip-cta {
      opacity: 0.8;
    }
    .flip-card:hover .flip-cta span {
      transform: translateX(4px);
    }

    /* BACK */
    .flip-back {
      transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 2rem 1.75rem;
      gap: 0.75rem;
    }

    .flip-back.bleu-bg { background: var(--bleu); }
    .flip-back.coral-bg { background: var(--coral); }

    /* Scroll sur la carte dont le texte est long */
    .flip-back {
      overflow-y: auto;
      justify-content: flex-start;
    }
    .marc-card .flip-back::-webkit-scrollbar { width: 8px; }
    .marc-card .flip-back::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); border-radius: 4px; }
    .marc-card .flip-back::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.5); border-radius: 4px; }
    .marc-card .flip-back::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.75); }

    .flip-back h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: white;
      line-height: 1.2;
    }

    .coach-role-back {
      overflow: auto;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.6);
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: -0.25rem;
    }

    .flip-back p {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.82);
      line-height: 1.65;
    }

    .back-link {
      display: inline-block;
      margin-top: auto;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-weight: 500;
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 0.75rem;
      transition: color 0.2s;
    }
    .back-link:hover { color: white; }

    .recrutement-card .flip-front {
      border: 2px dashed var(--bleu-pale);
      box-shadow: none;
    }
    .recrutement-placeholder {
      opacity: 0.5;
      font-size: 4rem !important;
      font-weight: 200 !important;
    }
    .recrutement-big {
      font-size: 1rem !important;
      line-height: 1.4 !important;
    }
    .recrutement-big em {
      font-style: bold;
      color: var(--beu);
      font-weight: 900;
    }
    .recrutement-card .flip-back {
      overflow-y: auto;
      justify-content: flex-start;
      gap: 0.5rem;
    }
    .recrutement-card .flip-back::-webkit-scrollbar { width: 8px; }
    .recrutement-card .flip-back::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); border-radius: 4px; }
    .recrutement-card .flip-back::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.5); border-radius: 4px; }

    /* ─── OFFRE ─── */
    #offre {
      background: var(--creme);
    }

    .offre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      margin-top: 3rem;
    }

    .offre-card { 
	  text-align: justify;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 24px rgba(58,90,114,0.06);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .offre-card:hover {
      box-shadow: 0 8px 40px rgba(58,90,114,0.12);
      transform: translateY(-4px);
    }

    .offre-card-header {
      padding: 2rem 2.5rem;
      background: var(--coral);
    }
    .offre-card:nth-child(2) .offre-card-header { background: var(--bleu); }

    .offre-card-header .tag {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-bottom: 0.5rem;
    }
    .offre-card-header h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      color: white;
      font-weight: 400;
    }
    .offre-card-header .capacity {
      margin-top: 0.5rem;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.7);
    }

    .offre-card-body {
      padding: 2rem 2.5rem;
    }
    .offre-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--bleu-pale);
      font-size: 0.9rem;
    }
    .offre-item:last-child { border-bottom: none; }
    .offre-item a {
      color: var(--bleu);
      text-decoration: none;
      font-weight: 700;
      transition: color 0.2s;
    }
    .offre-item a:hover {
      color: var(--coral);
    }
    .offre-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--bleu);
      flex-shrink: 0;
      margin-top: 8px;
    }
    .offre-card:nth-child(2) .offre-dot { background: var(--coral); }

    .offre-card-full {
      grid-column: 1 / -1;
    }
    .offre-card-full .offre-card-header { background: var(--bleu-pale); }
    .offre-card-full .offre-card-header h3 { color: var(--bleu); }
    .offre-card-full .offre-dot { background: var(--coral); }

    /* Boîte à idées */
    .ideas-box {
      margin-top: 2.5rem;
      background: linear-gradient(145deg, #eef4f8 0%, #f7fbfd 40%, #e8f0f5 100%);
      border-radius: 24px;
      padding: 2.5rem;
      text-align: left;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      border: 1px solid rgba(255,255,255,0.95);
      box-shadow:
        0 2px 0 rgba(255,255,255,0.9) inset,
        1px 0 0 rgba(255,255,255,0.7) inset,
        0 12px 40px rgba(58,90,114,0.12),
        0 2px 8px rgba(58,90,114,0.06);
      position: relative;
      overflow: hidden;
    }
    /* Reflet haut-gauche */
    .ideas-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(255,255,255,0));
      pointer-events: none;
      border-radius: 24px 24px 0 0;
    }
    /* Reflet diagonal */
    .ideas-box::after {
      content: '';
      position: absolute;
      top: -60px; left: -60px;
      width: 220px; height: 220px;
      background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 70%);
      pointer-events: none;
    }
    .sondage-header { text-align: center; margin-bottom: 1.8rem; }
    .ideas-box h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      color: var(--dark);
      margin-bottom: 0.4rem;
    }
    .ideas-box .section-eyebrow {
      color: var(--coral);
      filter: brightness(0.7);
    }
    .sondage-intro { font-size: 0.88rem; color: var(--dark); line-height: 1.6; }

    /* ─── Barre de progression ─── */
    .sondage-progress {
      background: rgba(58,90,114,0.1);
      border-radius: 100px;
      height: 5px;
      margin-bottom: 0.4rem;
      overflow: hidden;
    }
    .sondage-progress-bar {
      height: 5px;
      background: linear-gradient(to right, var(--bleu), var(--coral));
      border-radius: 100px;
      transition: width 0.4s ease;
      width: 0%;
    }
    .sondage-step-label {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--bleu);
      margin-bottom: 1.8rem;
      text-align: right;
    }

    .sondage-form { display: flex; flex-direction: column; }

    .sondage-fieldset { border: none; padding: 0; margin: 0; }
    .sondage-fieldset legend {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 1.2rem;
      display: block;
      width: 100%;
      line-height: 1.3;
    }

    /* Options en style pill */
    .sondage-options {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .sondage-check {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.9rem;
      color: var(--dark);
      cursor: pointer;
      padding: 0.75rem 1rem;
      border-radius: 100px;
      border: 1px solid rgba(255,255,255,0.9);
      background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(232,242,248,0.6));
      box-shadow: 0 1px 3px rgba(58,90,114,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
      user-select: none;
    }
    .sondage-check:hover {
      border-color: rgba(58,90,114,0.3);
      background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(216,229,237,0.7));
      box-shadow: 0 2px 8px rgba(58,90,114,0.12), inset 0 1px 0 rgba(255,255,255,1);
    }
    .sondage-check:has(input:checked) {
      border-color: var(--bleu);
      background: linear-gradient(135deg, rgba(216,229,237,0.9), rgba(186,210,224,0.7));
      color: var(--bleu);
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(58,90,114,0.15), inset 0 1px 0 rgba(255,255,255,0.8);
    }
    .sondage-check input[type="checkbox"] {
      width: 17px; height: 17px;
      accent-color: var(--bleu);
      cursor: pointer;
      flex-shrink: 0;
    }
    .sondage-check.sub {
      border-radius: 16px;
      font-size: 0.87rem;
      padding: 0.6rem 0.9rem;
    }
    .sondage-check.sub2 {
      border-radius: 12px;
      font-size: 0.84rem;
      padding: 0.55rem 0.85rem;
    }
    .detail { color: var(--bleu); font-size: 0.82em; font-weight: 400; }

    .sondage-sublabel {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 0.6rem;
    }
    .horaire-groupe {
      background: rgba(58,90,114,0.04);
      border-radius: 10px;
      padding: 0.9rem 1rem;
    }
    .horaire-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 1.5rem;
    }
    .horaire-col-title {
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--bleu);
      margin-bottom: 0.4rem;
      opacity: 0.7;
    }

    .sondage-textarea {
      width: 100%;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
      color: var(--dark);
      background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(232,242,248,0.7));
      border: 1px solid rgba(255,255,255,0.9);
      border-radius: 16px;
      padding: 1rem 1.2rem;
      resize: vertical;
      min-height: 100px;
      outline: none;
      box-shadow: 0 1px 4px rgba(58,90,114,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
      transition: border-color 0.2s, box-shadow 0.2s;
      box-sizing: border-box;
      line-height: 1.6;
    }
    .sondage-textarea:focus {
      border-color: rgba(58,90,114,0.75);
      box-shadow: 0 2px 10px rgba(58,90,114,0.12), inset 0 1px 0 rgba(255,255,255,1);
    }
    .sondage-textarea::placeholder { color: rgba(58,90,114,0.3); }

    /* ─── Navigation ─── */
    .sondage-nav {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-top: 1.8rem;
    }
    .sondage-prev {
      background: none;
      border: 1.5px solid rgba(58,90,114,0.2);
      color: rgba(58,90,114,0.5);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      padding: 0.65rem 1.1rem;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .sondage-prev:hover { border-color: var(--bleu); color: var(--bleu); }
    .sondage-next {
      flex: 1;
      background: var(--bleu);
      color: white;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 0.75rem 1.5rem;
      border-radius: 100px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .sondage-next:hover { background: var(--bleu-light); transform: translateX(2px); }

    .sondage-rgpd {
      font-size: 0.7rem;
      color: rgba(58,90,114,0.75);
      font-style: italic;
      margin-top: 1.2rem;
      text-align: center;
    }
    .sondage-submit {
      flex: 1;
      background: linear-gradient(135deg, var(--coral), var(--coral-light));
      color: white;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 0.75rem 1.5rem;
      border-radius: 100px;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
    }
    .sondage-submit:hover { opacity: 0.88; transform: translateX(2px); }
    .sondage-merci {
      display: none;
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-style: italic;
      color: var(--bleu);
      padding: 2rem 1rem;
      line-height: 1.6;
    }



    /* ─── Barre de progression ─── */
    .sondage-progress {
      background: rgba(58,90,114,0.1);
      border-radius: 100px;
      height: 5px;
      margin-bottom: 0.4rem;
      overflow: hidden;
    }
    .sondage-progress-bar {
      height: 5px;
      background: linear-gradient(to right, var(--bleu), var(--coral));
      border-radius: 100px;
      transition: width 0.4s ease;
      width: 0%;
    }
    .sondage-step-label {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(58,90,114,0.4);
      margin-bottom: 1.8rem;
      text-align: right;
    }

    .sondage-form { display: flex; flex-direction: column; }

    .sondage-fieldset { border: none; padding: 0; margin: 0; }
    .sondage-fieldset legend {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 1.2rem;
      display: block;
      width: 100%;
      line-height: 1.3;
    }

    /* Options en style pill */
    .sondage-options {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .sondage-check {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.9rem;
      color: var(--dark);
      cursor: pointer;
      padding: 0.75rem 1rem;
      border-radius: 100px;
      border: 1.5px solid rgba(58,90,114,0.15);
      background: white;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
      user-select: none;
    }
    .sondage-check:hover {
      border-color: var(--bleu);
      background: var(--bleu-pale);
    }
    .sondage-check:has(input:checked) {
      border-color: var(--bleu);
      background: var(--bleu-pale);
      color: var(--bleu);
      font-weight: 600;
    }
    .sondage-check input[type="checkbox"] {
      width: 17px; height: 17px;
      accent-color: var(--bleu);
      cursor: pointer;
      flex-shrink: 0;
      border-radius: 50%;
    }
    .sondage-check.sub {
      border-radius: 16px;
      font-size: 0.87rem;
      padding: 0.6rem 0.9rem;
    }
    .sondage-check.sub2 {
      border-radius: 12px;
      font-size: 0.84rem;
      padding: 0.55rem 0.85rem;
    }
    .detail { color: var(--bleu); font-size: 0.82em; font-weight: 400; }

    .sondage-textarea {
      width: 100%;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
      color: var(--dark);
      background: var(--bleu-pale);
      border: 1.5px solid transparent;
      border-radius: 16px;
      padding: 1rem 1.2rem;
      resize: vertical;
      min-height: 100px;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      box-sizing: border-box;
      line-height: 1.6;
    }
    .sondage-textarea:focus {
      border-color: var(--bleu);
      background: white;
    }
    .sondage-textarea::placeholder { color: rgba(58,90,114,0.75); }

    /* ─── Navigation ─── */
    .sondage-nav {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-top: 1.8rem;
    }
    .sondage-prev {
      background: none;
      border: 1.5px solid rgba(58,90,114,0.2);
      color: rgba(58,90,114,0.6);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      padding: 0.65rem 1.1rem;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .sondage-prev:hover { border-color: var(--bleu); color: var(--bleu); }
    .sondage-next {
      flex: 1;
      background: var(--bleu);
      color: white;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 0.75rem 1.5rem;
      border-radius: 100px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .sondage-next:hover { background: var(--bleu-light); transform: translateX(2px); }

    .sondage-rgpd {
      font-size: 0.7rem;
      color: rgba(58,90,114,0.75);
      font-style: italic;
      margin-top: 1.2rem;
      text-align: center;
    }
    .sondage-submit {
      flex: 1;
      background: linear-gradient(135deg, var(--coral), var(--coral-light));
      color: white;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 0.75rem 1.5rem;
      border-radius: 100px;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
    }
    .sondage-submit:hover { opacity: 0.88; transform: translateX(2px); }
    .sondage-merci {
      display: none;
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-style: italic;
      color: var(--bleu);
      padding: 2rem 1rem;
      line-height: 1.6;
    }
	
	
	/* Section Analyse IA spécifique */
	/* Le conteneur de l'analyse, placé hors de la grille */
	/* Conteneur principal de l'analyse */
/* --- SECTION ANALYSE IA AMÉLIORÉE --- */
    /* Espace entre le header (boutons) et l'analyse */
	#ia-analysis-container {
		margin-top: 2rem; /* Espace au-dessus du bloc blanc */
		margin-bottom: 2rem; /* Espace au-dessous du bloc blanc */
		background: white;
		border-left: 5px solid #3a5a72;
		border-radius: 12px;
		padding: 2rem;
		box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	}

	/* Style des titres générés par l'IA (anciennement ###) */
	#ia-content h4 {
		color: #3a5a72;
		margin-top: 1.5rem;
		margin-bottom: 0.8rem;
		font-size: 1.1rem;
		border-bottom: 1px solid #eee;
		padding-bottom: 0.3rem;
	}

    #ia-analysis-container::before {
      content: "";
      position: absolute;
      top: 0; left: 0; width: 6px; height: 100%;
      background: var(--bleu);
    }

    .ia-title {
      font-size: 1.2rem;
      font-weight: bold;
      color: var(--bleu);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    #ia-content { line-height: 1.8; color: #444; font-size: 1.05rem; }
    #ia-content strong { color: var(--bleu); font-weight: 600; }
    
    /* Style des listes de l'IA */
	/* Espacement des paragraphes et listes */
	#ia-content p { margin-bottom: 1rem; line-height: 1.6; }
	#ia-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
	#ia-content li { margin-bottom: 0.5rem; }
    

    
    /* ─── LOCALISATION ─── */
    #localisation {
      background: white;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .loc-address {
      font-size: 1.1rem;
      color: var(--bleu);
      font-weight: 500;
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: var(--coral-pale);
      border-left: 4px solid var(--coral);
      border-radius: 0 8px 8px 0;
    }

    .loc-section { margin-bottom: 2rem; }
    .loc-section h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--bleu);
      font-weight: 600;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .loc-section ul { list-style: none; padding: 0; }
    .loc-section li {
      font-size: 0.88rem;
      padding: 0.3rem 0;
      color: var(--text);
      padding-left: 1rem;
      position: relative;
    }
    .loc-section li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--coral);
      font-size: 0.75rem;
    }

    .map-placeholder {
      background: var(--bleu-pale);
      border-radius: 12px;
      height: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--bleu);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      overflow: hidden;
      position: relative;
    }
    .map-placeholder iframe {
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 12px;
    }

    /* ─── CONTACT ─── */
    #contact {
      background: var(--bleu);
      color: white;
    }
	#contact-card {
		text-align: center;
	}
    #contact .section-title { color: white; }
    #contact .section-eyebrow { color: var(--coral-light); }

    .contact-card {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 16px;
      padding: 3rem 4rem;
      margin-top: 2.5rem;
    }

    .contact-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      color: white;
    }
    .contact-name strong { font-weight: 600; color: var(--coral-light); }

    .contact-phone {
      font-size: 1.5rem;
      font-weight: 500;
      color: white;
      letter-spacing: 0.05em;
      text-decoration: none;
    }
    .contact-phone:hover { color: var(--coral-light); }

    .contact-website {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      letter-spacing: 0.05em;
    }
    .contact-website:hover { color: var(--coral-light); }

    .contact-website:hover { color: var(--coral-light); }

    .contact-form-btn {
      display: inline-block;
      background: none;
      border: 1px solid rgba(255,255,255,0.35);
      color: rgba(255,255,255,0.85);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.6rem 1.4rem;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .contact-form-btn:hover {
      background: rgba(255,255,255,0.08);
      border-color: var(--coral-light);
      color: var(--coral-light);
    }

    /* ─── MODALE FORMULAIRE ─── */
    .form-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(30,45,56,0.7);
      backdrop-filter: blur(4px);
      z-index: 200;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .form-overlay.open { display: flex; }

    .form-modal {
      background: var(--creme);
      border-radius: 4px;
      padding: 2.5rem 2.5rem 2rem;
      width: 100%;
      max-width: 520px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
    }

    .form-close {
      position: absolute;
      top: 1rem; right: 1.2rem;
      background: none;
      border: none;
      font-size: 1rem;
      color: var(--text);
      opacity: 0.4;
      cursor: pointer;
      line-height: 1;
      padding: 0;
      transition: opacity 0.2s;
    }
    .form-close:hover { opacity: 1; }

    .form-modal-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 400;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 1.8rem;
    }
    .form-modal-title em { color: var(--coral); font-style: italic; }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1.1rem;
    }
    .form-group label {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--bleu);
    }
    .form-optional {
      font-weight: 400;
      text-transform: none;
      letter-spacing: 0;
      color: var(--text);
      opacity: 0.5;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
      color: var(--dark);
      background: #fff;
      border: 1px solid rgba(58,90,114,0.2);
      border-radius: 2px;
      padding: 0.65rem 0.9rem;
      outline: none;
      transition: border-color 0.2s;
      resize: vertical;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--bleu); }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(58,90,114,0.3); }

    .form-submit {
      margin-top: 0.5rem;
      width: 100%;
      background: var(--bleu);
      color: #fff;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.9rem;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .form-submit:hover { background: var(--bleu-light); }
    .form-rgpd {
      font-size: 0.72rem;
      color: rgba(58,90,114,0.5);
      font-style: italic;
      margin-top: 0.9rem;
      line-height: 1.5;
      text-align: center;
    }

    .contact-desc {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      font-style: italic;
    }

	/* Version ultra-compacte pour éviter le scroll */
	.rgpd-container-mini {
		margin: 1rem 0; /* Réduit de 2rem à 1rem */
		padding: 0.75rem; /* Réduit */
		background-color: rgba(58, 90, 114, 0.04);
		border-radius: 6px;
		border-left: 3px solid var(--bleu);
	}

	.rgpd-label {
		display: flex;
		align-items: flex-start;
		gap: 8px; /* Espace réduit entre check et texte */
		cursor: pointer;
	}

	.rgpd-checkbox {
		margin-top: 3px;
		width: 15px; /* Checkbox légèrement plus petite */
		height: 15px;
		cursor: pointer;
		accent-color: var(--bleu);
	}

	.rgpd-text {
		text-align: justify;
		font-size: 0.75rem; /* Taille réduite pour le gain de place */
		color: #555;
		line-height: 1.3; /* Interligne serré pour gagner de la hauteur */
		user-select: none;
	}

	.rgpd-text strong {
		color: var(--bleu);
		font-weight: 500;
	}

	/* Optimisation mobile agressive */
	@media (max-width: 480px) {
		.rgpd-container-mini {
			margin: 0.75rem 0;
			padding: 0.6rem;
		}
		.rgpd-text {
			font-size: 0.7rem;
		}
	}
    /* ─── SÉPARATEURS VAGUE ─── */
    .wave-sep {
      display: block;
      line-height: 0;
      overflow: hidden;
      margin: 0;
      padding: 0;
    }
    .wave-sep svg {
      display: block;
      width: 100%;
      height: 64px;
    }
    /* hero bleu → constats bleu : pas de vague (même couleur) */
    .wave-hero-constats { background: var(--creme); }
    .wave-hero-constats svg path { fill: var(--bleu); }

    /* creme → bleu */
    .wave-creme-to-bleu { background: var(--creme); }
    .wave-creme-to-bleu svg path { fill: var(--bleu); }

    /* bleu → creme */
    .wave-bleu-to-creme { background: var(--creme); }
    .wave-bleu-to-creme svg path { fill: var(--bleu); }

    /* ─── STAGGER ANIMATIONS ─── */
    /* La transition-delay est injectée via JS depuis --stagger */
    .fade-in[style*="--stagger"] {
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    /* ─── HOVER OFFRE CARDS amélioré ─── */
    .offre-card {
      transition: box-shadow 0.35s cubic-bezier(.22,.68,0,1.2), transform 0.35s cubic-bezier(.22,.68,0,1.2);
    }
    .offre-card:hover {
      box-shadow: 0 16px 48px rgba(58,90,114,0.16);
      transform: translateY(-8px);
    }

    /* ─── HOVER FLIP CARDS amélioré ─── */
    .flip-card .flip-front {
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .flip-card:not(.flipped):hover .flip-front {
      box-shadow: 0 12px 36px rgba(58,90,114,0.14);
      transform: translateY(-4px);
    }

    /* ─── PILIERS LISTE ─── */
    .piliers-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin: 1rem 0 1.2rem;
      padding: 0;
    }

    .pilier-row {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .pilier-svg {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      color: var(--coral-light);
      overflow: visible;
    }

    .pilier-row span {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.5;
    }

    .pilier-row strong {
      color: rgba(255,255,255,0.95);
      font-weight: 600;
    }

    /* ─── SCROLL HINT ─── */
    /* .scroll-hint { */
      /* display: inline-flex; */
      /* flex-direction: column; */
      /* align-items: center; */
      /* gap: 0.4rem; */
      /* font-size: 0.7rem; */
      /* letter-spacing: 0.15em; */
      /* text-transform: uppercase; */
      /* color: var(--coral-light); */
      /* text-decoration: none; */
      /* margin-top: 2.5rem; */
      /* opacity: 0.7; */
      /* animation: scrollBounce 2.2s ease-in-out infinite; */
      /* width: fit-content; */
    /* } */
	
	.scroll-hint {
	  display: none; /* caché sur mobile */
	  flex-direction: column;
	  align-items: center;
	  gap: 0.5rem;
	  margin-top: 2rem;
	  color: var(--coral-light);
	  opacity: 0.65;
	  text-decoration: none;
	  transition: opacity 0.2s;
	  animation: scrollBounce 2.2s ease-in-out infinite;
	  width: fit-content;
	}
	.scroll-hint-label {
	  font-family: 'Cormorant Garamond', serif;
	  font-size: 1.15rem;
	  font-style: italic;
	  font-weight: 400;
	  letter-spacing: 0.08em;
	  color: var(--coral-light);
	  opacity: 0.85;
	}
	.scroll-hint svg {
	  border: 1px solid rgba(255,255,255,0.2);
	  border-radius: 50%;
	  padding: 6px;
	  width: 36px;
	  height: 36px;
	  transition: border-color 0.2s;
	}
	.scroll-hint:hover { opacity: 1; }
	.scroll-hint:hover svg { border-color: var(--coral-light); }
	@media (min-width: 901px) {
	  .scroll-hint { display: inline-flex; }
	}
	
	.scroll-hint::after {
      content: '';
      width: 1px;
      height: 36px;
      /* background: linear-gradient(to bottom, var(--coral-light), transparent); */
    }
    /* .scroll-hint:hover { opacity: 1; } */
    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); }
      55% { transform: translateY(7px); }
    }

    /* ─── FOOTER enrichi ─── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.5);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      padding: 4rem 6rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    @media (min-width: 901px) {
      .footer-inner {
        padding-left: clamp(4rem, 15vw, 15rem);
        padding-right: clamp(4rem, 15vw, 15rem);
      }
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: white;
      letter-spacing: 0.05em;
    }
    .footer-logo em { color: var(--coral); font-style: normal; }

    .footer-tagline {
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--coral-light);
      margin-top: 0.6rem;
      opacity: 0.8;
    }

    .footer-address {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.35);
      margin-top: 0.75rem;
      line-height: 1.6;
    }

    .footer-nav-title {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .footer-nav ul,
    .footer-contact ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }

    .footer-nav a,
    .footer-contact a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-contact a:hover { color: var(--coral-light); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 6rem;
      font-size: 0.75rem;
      letter-spacing: 0.03em;
    }

    @media (min-width: 901px) {
      .footer-bottom {
        padding-left: clamp(4rem, 15vw, 15rem);
        padding-right: clamp(4rem, 15vw, 15rem);
      }
    }

    .footer-mentions-btn {
      background: none;
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.4);
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      padding: 0.35rem 0.9rem;
      border-radius: 2px;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .footer-mentions-btn:hover {
      border-color: var(--coral-light);
      color: var(--coral-light);
    }

    /* ─── MENTIONS LÉGALES modale ─── */
    .mentions-body h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--bleu);
      margin: 1.4rem 0 0.4rem;
    }
    .mentions-body h4:first-child { margin-top: 0; }
    .mentions-body p {
      font-size: 0.86rem;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 0.3rem;
    }
    .mentions-body a {
      color: var(--coral);
      text-decoration: none;
    }
    .mentions-body a:hover { text-decoration: underline; }

    @media (max-width: 900px) {
      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
      }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { padding: 1rem 2rem; flex-direction: column; gap: 0.75rem; text-align: center; }
    }
    @media (max-width: 580px) {
      .footer-inner { grid-template-columns: 1fr; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      nav { padding: 0 1.5rem; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      #hero { grid-template-columns: 1fr; }
      .hero-left { padding: 3.5rem 2rem 3rem; }
      .hero-right { padding: 0; min-height: 100vw; }
      .hero-right-overlay { margin-top: calc(85vw - 6rem); }
      section { padding: 4rem 2rem; }
      #naissance,
      #localisation { grid-template-columns: 1fr; gap: 2.5rem; }
      .ambitions-grid { grid-template-columns: 1fr; }
      .constats-grid { grid-template-columns: 1fr; }
      .constat-card.constat-full { grid-column: 1; }
      .equipe-grid { grid-template-columns: repeat(2, 1fr); }
      .offre-grid { grid-template-columns: 1fr; }
      .contact-card { padding: 2rem; }

    }

    @media (max-width: 580px) {
      .ambitions-grid { grid-template-columns: 1fr; }
      .equipe-grid { grid-template-columns: 1fr; }
      .hero-right-overlay { margin-top: calc(85vw - 4rem); }
    }

    /* ─── ANIMATIONS ─── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: none;
    }

    /* Bouton Connexion / Mon Compte */
.btn-nav-login, .btn-nav-account {
    background: var(--coral);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-nav-login:hover, .btn-nav-account:hover {
    background: var(--bleu);
    transform: translateY(-2px);
}

/* Wrapper pour aligner Compte + Logout */
.nav-auth-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-nav-logout {
  margin-left: 1rem;
    color: var(--bleu);
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.btn-nav-logout:hover {
    opacity: 1;
    color: var(--coral);
}

/* Adaptation Mobile (Responsive) */
@media (max-width: 900px) {
    .nav-auth-wrapper {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    .btn-nav-login, .btn-nav-account {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
}



.btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0rem; border-radius: 6px; font-size: 0.82rem; font-family: 'DM Sans', sans-serif; font-weight: 500; cursor: pointer; border: none; text-decoration: none; transition: background 0.2s, color 0.2s; }
.btn-ghost { background: rgba(255,255,255,0.12); color: var(--bleu); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
    