/* Reset */
@import url('https://fonts.googleapis.com/css?family=Cinzel+Decorative:400,700,900');
@import url('https://fonts.googleapis.com/css?family=MonteCarlo:400,700,900');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --bg:      #FAF7F2;
      --cream:   #F2EBE0;
      --stone:   #C8BFB0;
      --taupe:   #8C7E70;
      --deep:    #1C2B3A;
      --accent:  #C27B4E;
      --line:    rgba(28, 43, 58, 0.10);
      --font-d:  'Cormorant Garamond', Georgia, serif;
      --font-b:  'DM Sans', system-ui, sans-serif;
    }
 
    html { scroll-behavior: smooth; }
 
    body {
      font-family: var(--font-b);
      background: var(--bg);
      color: var(--deep);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
 
    /* ─── HEADER ─── */
    .header {
      background: var(--bg);
      border-bottom: 1px solid var(--line);
      position: sticky;
      top: 0;
      z-index: 200;
    }
 
    .header-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }
 
    .header-inner img { height: 68px; width: auto; }
 
    .nav ul { display: flex; list-style: none; gap: 0; }
 
    .nav a {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--deep);
      text-decoration: none;
      padding: 0.5rem 1rem;
      transition: color 0.2s;
    }
 
    .nav a:hover { color: var(--accent); }
    .nav a.active { color: var(--accent); border-bottom: 1px solid var(--accent); }
 
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
    }
 
    .burger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--deep);
      transition: all 0.25s ease;
    }
 
    .burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
 
    /* ─── PAGE HERO ─── */
    .page-hero {
      background: var(--cream);
      border-bottom: 1px solid var(--line);
      padding: 4rem 2rem 3.5rem;
    }
 
    .page-hero-inner {
      max-width: 860px;
      margin: 0 auto;
    }
 
    .eyebrow {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--taupe);
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.1s ease forwards;
    }
 
    .page-title {
      font-family: var(--font-d);
      font-size: clamp(2.8rem, 7vw, 5rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--deep);
      margin-bottom: 0.4rem;
      letter-spacing: -0.02em;
      opacity: 0;
      animation: fadeUp 0.9s 0.25s ease forwards;
    }
 
    .page-subtitle {
      font-family: var(--font-d);
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      font-weight: 300;
      font-style: italic;
      color: var(--accent);
      opacity: 0;
      animation: fadeUp 0.9s 0.4s ease forwards;
    }
 
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
 /* ─── BANDEAU NOTE ─── */
    .intro-band {
      border-bottom: 1px solid var(--line);
      padding: 1.5rem 2rem;
      text-align: center;
    }
 
    .intro-band p {
      font-family: var(--font-d);
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 300;
      font-style: italic;
      color: var(--taupe);
    }
	
	
    /* ─── PROFIL SECTION ─── */
    .section-profil {
      max-width: 1060px;
      margin: 0 auto;
      padding: 5rem 2rem;
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 5rem;
      align-items: start;
    }
 
    /* Colonne image */
    .profil-image-wrap {
      position: sticky;
      top: 100px;
    }
 
    .profil-image-wrap img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top;
      filter: saturate(0.9);
      display: block;
    }
 
    .profil-caption {
      margin-top: 1rem;
      font-size: 12px;
      color: var(--stone);
      letter-spacing: 0.04em;
      line-height: 1.5;
    }
 
  
    /* Colonne contenu */
    .profil-content {}
 
    .profil-block {
      padding-bottom: 3rem;
      margin-bottom: 3rem;
      border-bottom: 1px solid var(--line);
    }
 
    .profil-block:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
 
    .block-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 0.6rem;
    }
 
    .block-title {
      font-family: var(--font-d);
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 300;
      color: var(--deep);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
 
    /* Intro paragraphe */
    .profil-intro {
      font-size: 15px;
      color: var(--taupe);
      line-height: 1.85;
      margin-bottom: 2rem;
      font-style: italic;
      border-left: 2px solid var(--stone);
      padding-left: 1.25rem;
    }
 
    /* Liste parcours */
    .parcours-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
 
    .parcours-item {
      display: flex;
      gap: 1.5rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--line);
      align-items: flex-start;
    }
 
    .parcours-item:last-child { border-bottom: none; }
 
    .parcours-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
      margin-top: 0.55rem;
    }
 
    .parcours-text {
      font-size: 14px;
      color: var(--taupe);
      line-height: 1.8;
    }
 
    .parcours-text strong {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: var(--deep);
      margin-bottom: 0.2rem;
    }
 
    /* Objectifs */
    .objectifs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
 
    .objectif-item {
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--line);
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }
 
    .objectif-item:nth-child(odd)  { padding-right: 2rem; border-right: 1px solid var(--line); }
    .objectif-item:nth-child(even) { padding-left: 2rem; }
    .objectif-item:nth-last-child(-n+2) { border-bottom: none; }
 
    .objectif-num {
      font-family: var(--font-d);
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--stone);
      flex-shrink: 0;
      line-height: 1;
      margin-top: 2px;
    }
 
    .objectif-text {
      font-size: 14px;
      color: var(--taupe);
      line-height: 1.75;
    }
 
    .objectif-text strong {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: var(--deep);
      margin-bottom: 0.2rem;
    }

 
    /* CTA RDV */
    .rdv-cta {
      margin-top: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--deep);
      text-decoration: none;
      border: 1px solid var(--deep);
      padding: 0.9rem 2rem;
      transition: background 0.22s, color 0.22s;
    }
 
    .rdv-cta:hover {
      background: var(--deep);
      color: var(--bg);
    }
 
    /* ─── SÉPARATEUR ─── */
    .sep {
      text-align: center;
      padding: 0.5rem 0;
      border-top: 0.5px solid var(--line);
      border-bottom: 0.5px solid var(--line);
      background: var(--cream);
    }
 
    .sep img { height: 48px; width: auto; opacity: 0.65; }
 
    /* ─── SECTION APPROCHE ─── */
    .section-approche {
      padding: 5rem 2rem;
      background: var(--cream);
    }
 
    .approche-head {
      max-width: 860px;
      margin: 0 auto 3.5rem;
    }
 
    .approche-head .eyebrow { margin-bottom: 1rem; opacity: 1; animation: none; }
 
    .approche-head .block-title { margin-bottom: 0; }
 
    .approche-grid {
      max-width: 1060px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--line);
    }
 
    .approche-card {
      background: var(--bg);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: background 0.2s;
    }
 
    .approche-card:hover { background: #fff; }
 
    .approche-img-wrap { overflow: hidden; }
 
    .approche-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      filter: saturate(0.85);
      transition: filter 0.3s, transform 0.4s;
    }
 
    .approche-card:hover .approche-img {
      filter: saturate(1);
      transform: scale(1.02);
    }
 
    .approche-body {
      padding: 1.75rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
 
    .approche-num {
      font-size: 11px;
      letter-spacing: 0.12em;
      color: var(--stone);
      margin-bottom: 0.5rem;
    }
 
    .approche-titre {
      font-family: var(--font-d);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--deep);
      line-height: 1.25;
      margin-bottom: 0.75rem;
    }
 
    .approche-desc {
      font-size: 13px;
      color: var(--taupe);
      line-height: 1.75;
      flex: 1;
      margin-bottom: 1.5rem;
    }
 
    .approche-link {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: gap 0.2s;
    }
 
    .approche-link:hover { gap: 0.8rem; }
	
	
	/* ─── LIEU ─── */
    .section-lieu {
      max-width: 860px;
      margin: 0 auto;
      padding: 4rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      border-bottom: 1px solid var(--line);
    }
 
    .lieu-text .section-eyebrow { 
	font-size: clamp(1.2rem, 1.5vw, 1.2rem);
	margin-bottom: 0.75rem; }
 
    .lieu-text .section-title {
      font-size: clamp(1.2rem, 1.5vw, 1.2rem);
      margin-bottom: 0.75rem;
    }
 
    .lieu-text p {
      font-size: 14px;
      color: var(--taupe);
      line-height: 1.8;
    }
 
    .lieu-text a {
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid currentColor;
    }
 
    .lieu-tarifs {
      flex-shrink: 0;
    }
 
    .tarifs-btn {
      display: inline-block;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--deep);
      text-decoration: none;
      border: 1px solid var(--deep);
      padding: 0.9rem 2rem;
      transition: background 0.22s, color 0.22s;
    }
 
    .tarifs-btn:hover {
      background: var(--deep);
      color: var(--bg);
    }
	
 
    /* ─── RÉSEAUX ─── */
    .section-reseaux {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      padding: 3rem 2rem;
    }
 
    .section-reseaux img {
      width: 24px;
      height: 24px;
      object-fit: contain;
      opacity: 0.5;
      transition: opacity 0.2s;
    }
 
    .section-reseaux img:hover { opacity: 1; }
 
    /* ─── FOOTER ─── */
    .footer {
      background: var(--cream);
      border-top: 1px solid var(--line);
      padding: 2.5rem 2rem;
    }
 
    .footer-inner {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
    }
 
    .footer img { height: 60px; width: auto; }
 
    .footer p { font-size: 12px; color: var(--taupe); line-height: 1.7; }
 
    .footer a { color: var(--taupe); text-decoration: none; }
    .footer a:hover { color: var(--deep); }
 
    /* ─── FADE IN ─── */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
 
    .fade-in.visible { opacity: 1; transform: translateY(0); }
 
    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .section-profil {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
 
      .profil-image-wrap {
        position: static;
        max-width: 320px;
      }
 
      .approche-grid { grid-template-columns: 1fr; }
    }
 
    @media (max-width: 600px) {
      .objectifs-grid { grid-template-columns: 1fr; }
      .objectif-item:nth-child(odd) { padding-right: 0; border-right: none; }
      .objectif-item:nth-child(even) { padding-left: 0; }
      .objectif-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
      .objectif-item:last-child { border-bottom: none; }
    }
 
    @media (max-width: 480px) {
      .header-inner { padding: 0 1.25rem; height: 68px; }
      .header-inner img { height: 54px; }
      .burger { display: flex; }
 
      .nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0; right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        z-index: 200;
      }
 
      .nav.active { display: block; }
      .nav ul { flex-direction: column; }
 
      .nav a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--line);
        font-size: 12px;
      }
 
      .page-hero { padding: 3rem 1.25rem 2.5rem; }
      .section-profil { padding: 3rem 1.25rem; }
      .section-approche { padding: 3rem 1.25rem; }
      .approche-head { margin-bottom: 2.5rem; }
	  .section-lieu { padding-left: 1.25rem; padding-right: 1.25rem; }
      .intro-band { padding: 1.25rem; }

    }

	@media (max-width: 768px) {
      .services-grid { grid-template-columns: 1fr; }
      .besoins-grid { grid-template-columns: 1fr; }
      .besoin-item:nth-child(odd) { padding-right: 0; border-right: none; }
      .besoin-item:nth-child(even) { padding-left: 0; }
      .section-lieu { flex-direction: column; gap: 2rem; }
    }