:root {
    --creme: hsl(47, 77%, 88%);
    --creme-fonce: hsl(47, 55%, 75%);
    --creme-clair: hsl(47, 90%, 95%);
    --creme-clair2: hsl(47, 95%, 97%);
    --terre: hsl(25, 40%, 35%);
    --terre-claire: hsl(25, 30%, 55%);
    --sauge: hsl(140, 18%, 48%);
    --sauge-clair: hsl(140, 22%, 90%);
    --rose: hsl(345, 35%, 65%);
    --rose2: hsl(345, 53%, 74%);
    --encre: hsl(220, 20%, 22%);
    --encre-doux: hsl(220, 12%, 40%);
    --rose-clair: hsl(345, 30%, 90%);
    /*CV*/
    --orange: hsl(35,85%,66%);
    --orange2: hsl(35,70%,68%);
    --orange-hover: hsl(35, 75%, 45%);
    --brun: hsl(23,33%,41%);
    --solaire: hsl(47,100%,70%);
    --carmin: hsl(345,37%,50%);
    --carmin-vif: hsl(345.7, 69.7%, 58.6%);
    --carmin-clair: hsl(15, 48%, 90%);

/*Extra*/

  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: var(--encre);
    background: #fdfaf4;
    line-height: 1.75;
  }

  h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.3;
  }

  /* ——— NAV ——— */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: hsla(47, 77%, 88%, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--creme-fonce);
  }

  .logo {
    font-family: 'Aladin','Playfair Display', serif;
    font-size: 2rem;
    color: var(--terre);
    letter-spacing: 0.03em;
  }

  .logo span { font-style: italic; color: var(--carmin); }

.logo img {
max-height: 44px;
height:44px;
transform: translateY(7px);
margin-right:3px;
}

.logo a {text-decoration: none;
color: var(--terre);
}

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--encre-doux);
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--terre); }

  .nav-cta {
    background: var(--brun);
    color: var(--creme) !important;
    padding: 0.5rem 1.4rem;
    border-radius: 2rem;
    transition: background 0.3s !important;
  }

  .nav-cta:hover { 
    background: var(--orange-hover) !important;
  color:carmin;
  }

  /* ——— HERO ——— */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 5% 4rem;
    gap: 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: var(--creme);
    opacity: 0.5;
    z-index: 0;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 30%;
    width: 300px; height: 300px;
    border-radius: 50%;
    /*background: var(--sauge-clair);*/
    background: var(--rose-clair);
    opacity: 0.5;
    z-index: 0;
  }

  .hero-text {
    position: relative;
    z-index: 1;
    animation: fadeUp 0.9s ease both;
  }

  .hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sauge);
    margin-bottom: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    color: var(--terre);
    margin-bottom: 1.5rem;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--rose);
    display: block;
    margin-bottom:1em;
  }

  .hero p {
    font-size: 1.05rem;
    color: var(--encre-doux);
    max-width: 735px;
    margin-bottom: 0.5rem;
  }

  .hero-btns {
    margin-top:3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-img{
  width:100%;
  /*margin-left:25%;*/
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom:2rem;
}



/*____________________________________________________*/

  .btn-primary {
    background: var(--brun);
    color: var(--creme);
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 2rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--orange-hover);
     transform: translateY(-3px); 
    
    }

  .btn-outline {
    background: transparent;
    color: var(--terre);
    padding: 0.85rem 2rem;
    border: 1.5px solid var(--terre);
    border-radius: 2rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
  }

  .btn-outline:hover { background: var(--creme); transform: translateY(-2px); }

  .hero-visual {
    position: relative;
    z-index: 1;
    animation: fadeUp 0.9s 0.15s ease both;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-art {
    width: 420px;
    height: 480px;
    position: relative;
  }

  .art-blob {
    width: 100%;
    height: 100%;
  }

  /* ——— SECTION COMMUNE ——— */
  section { padding: 6rem 5%; }

  .section-label {
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--encre);
    margin-bottom: 1rem;
    display: block;
  }

  .section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--carmin);
    margin-bottom: 1rem;
    font-family: 'Aladin','Playfair Display', serif;
  }

  .section-intro {
    font-size: 1rem;
    color: var(--encre-doux);
    max-width: 700px;
    margin-bottom: 3.5rem;
  }

  /* ——— À PROPOS ——— */
  .about {
    background: var(--creme);
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 1rem;
    align-items: center;
  }

  .about-img-wrap {
    position: relative;
  }

  .about-portrait {
    width: 60%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #52607C 0%, #858F9C 100%);
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .about-portrait img {
    height:105%;
    max-width: 530px;
  }


  .portrait-placeholder {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: hsla(25, 40%, 35%, 0.5);
    text-align: center;
    padding: 2rem;
  }

  .about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    background: var(--sauge);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 8px 24px hsla(140, 18%, 48%, 0.3);
  }

  .about-badge strong {
    display: block;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
  }

  .about-badge span { font-size: 0.75rem; letter-spacing: 0.08em; }

  .about-text { padding-right: 2rem;
  
  }

  @media (max-width: 560px) {
     .about-text {max-width:90%;}
  }

  .about-text h2 { margin-bottom: 0.5rem; }

  .about-text p {
    color: var(--encre);
    margin-bottom: 1.2rem;
  }

  .about-text p strong { font-weight: 400; color: var(--terre); }

.about-text .btn-primary {
  width:210px;
  text-align: center;
  margin-right:1rem;
  margin-top: 1rem
}

  /* ——— SERVICES ——— */
  .services { background:url("Img/bgIntro2.png") center/cover no-repeat, #fdfaf4;
  display:flex;
  gap:1rem
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }

.services p {
  margin-bottom:1rem;
}

.services .left {
 width:55% 
}

.services .mandala {
 /* justify-self: center;*/
  vertical-align: middle;
  justify-content: start;
  text-align: left;
  width:45% 
}

.services li{

  margin-left:1rem;

}

.services li::marker{
  color:var(--carmin);
}

.mandala img{
  max-height: 500px;
}

  .service-card {
    background: white;
    border: 1px solid var(--creme-fonce);
    border-radius: 1.5rem;
    padding: 2.2rem 1.8rem;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--creme-fonce);
    transition: background 0.3s, height 0.3s;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px hsla(47, 50%, 50%, 0.15);
  }

  .service-card:hover::before { background: var(--rose); height: 5px; }

  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 1rem;
    background: var(--creme);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
  }

  .service-icon svg { width: 26px; height: 26px; }

  .service-card h3 {
    font-size: 1.2rem;
    color: var(--terre);
    margin-bottom: 0.7rem;
  }

  .service-card p {
    font-size: 0.9rem;
    color: var(--encre-doux);
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }

  .service-link {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sauge);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: color 0.2s;
  }

  .service-link:hover { color: var(--terre); }

  /* ——— PROCESSUS ——— */
  .process { background: var(--carmin-clair); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(to right, var(--orange), var(--rose), var(--orange));
    z-index: 0;
  }

  .step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--creme);
    border: 2px solid var(--creme-fonce);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-family: 'Aladin','Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--brun);
    transition: background 0.3s;
    margin-top:0px;
  }

  .step:hover .step-num { background: var(--brun); color: var(--creme); }

  .step h4 {
    font-size: 1.5rem;
    color: var(--terre);
    margin-bottom: 0.5rem;
  }

  .step p {
    font-size: 1rem;
    color: var(--encre);
  }

  /* ——— TÉMOIGNAGES ——— */
  .testimonials { background: white; }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .testi-card {
    background: var(--creme-clair);
    border-radius: 1.5rem;
    padding: 2rem;
    border-left: 3px solid var(--rose);
  }

  .testi-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--terre);
    margin-bottom: 1.5rem;
    line-height: 1.65;
  }

  .testi-text::before { content: '« '; }
  .testi-text::after { content: ' »'; }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--creme-fonce);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--terre);
    flex-shrink: 0;
  }

  .testi-name { font-size: 0.88rem; color: var(--terre); }
  .testi-meta { font-size: 0.78rem; color: var(--terre-claire); }

.gallery {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
   cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 45px;
    cursor: pointer;
}

@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: auto;
  }
}

  /* ——— TARIFS ——— */
  .pricing { background: var(--creme); }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .price-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.2rem 1.8rem;
    text-align: center;
    border: 1.5px solid var(--creme-fonce);
    transition: border-color 0.3s;
  }

  .price-card.featured {
    border-color: var(--terre);
    position: relative;
  }

  .price-card.featured::before {
    content: 'Ateliers de groupe / individuel';
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terre);
    color: var(--creme);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 1rem;
  }

 @media (max-width: 1850px) {
.price-card.featured::before {
 content: 'Groupe / Individuel';
}
 }

 @media (max-width: 850px) {
.price-card.featured::before {
font-size: 0.65rem;
letter-spacing: 0.06em;
width:75%;
}
 }

  .price-name {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--encre-doux);
    margin-bottom: 0.75rem;
    font-weight:bold;
  }

  .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--terre);
    line-height: 1;
    margin-bottom: 0.2rem;
  }

  .price-amount span { font-size: 1.2rem; vertical-align: super; }

  .price-period {
    font-size: 0.95rem;
    color: var(--terre-claire);
    margin-bottom: 1.5rem;
  }

  .price-features {
    list-style: none;
    margin-bottom: 1.8rem;
    text-align: left;
  }

  .price-features li {
    font-size: 0.88rem;
    color: var(--encre-doux);
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--creme-fonce);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .price-features li::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sauge);
    flex-shrink: 0;
  }

.info-seance{
  text-align:center;
  margin-bottom:2rem;
    color: var(--encre-doux);
}

  /* ——— CONTACT ——— */
  .contact {
    background:  url("Img/bgform.png") center/cover no-repeat,var(--terre);
    color: var(--creme);
    text-align: center;
    padding: 7rem 5%;
  }

  .contact .section-label { color: var(--creme-fonce); }

  .contact .section-title { color: var(--creme); }

  .contact p {
    color: hsla(--creme-clair);
    max-width: 480px;
    margin: 0 auto 1.5rem;
  }

  .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }

  .contact-form .full { grid-column: 1 / -1; }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: hsla(47, 77%, 88%, 0.1);
    border: 1px solid hsla(47, 77%, 88%, 0.25);
    border-radius: 0.75rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--creme);
    outline: none;
    transition: border-color 0.3s;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: hsla(47, 77%, 88%, 0.45);
  }

  .contact-form input:focus,
  .contact-form textarea:focus { border-color: var(--creme); }

  .contact-form textarea { height: 120px; resize: vertical; }

  .contact-form select option { background: var(--terre); color: var(--creme); }

  /* ——— PARCOURS TIMELINE ——— */
  .parcours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 5rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    background:rgba(78, 46, 36, 0.11);
    padding:0.5rem 1rem 1rem 2rem;
    border-radius:3rem;
  }


  .parcours-col-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid hsla(47, 77%, 88%, 0.2);
  }

  .parcours-icon {
    font-size: 1.6rem;
    line-height: 1;
  }

  .parcours-col-header h3 {
    font-family: 'Aladin','Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--creme);
    font-weight: 400;
    letter-spacing: 0.06em;
  }

  .timeline {
    position: relative;
    padding-left: 1.5rem;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: linear-gradient(to bottom, var(--carmin), hsla(345,35%,65%,0.15));
  }

  .tl-item {
    position: relative;
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }

  .tl-item:last-child { margin-bottom: 0; }

  .tl-dot {
    position: absolute;
    left: -1.85rem;
    top: 0.4rem;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--terre);
    border: 2px solid hsla(47,77%,88%,0.4);
    flex-shrink: 0;
    transition: background 0.3s;
  }

  .tl-dot--highlight {
    background: var(--carmin);
    border-color: var(--rose);
    box-shadow: 0 0 0 4px hsla(345,35%,65%,0.2);
  }

  .tl-content { flex: 1; }

.tl-item img,.tl-item figcaption {
  margin-left:35%;
  width:30%;
  cursor:pointer;
  border-radius : 1rem;
}

.minigallerie {
  margin-top:1rem;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
}

.minigallerie img{
  width:65%;
  cursor:pointer;
  max-width:300px;
  margin-bottom:1rem;
  margin-left:0;
  justify-self: center;
}

.diplome {
justify-self: center;
}

.tl-item figcaption{
  margin-left:35%;
  width:100%;
  font-size:0.9rem;
  opacity: 0.5;
}

.diplome img {
 margin-left:0;
 width:60%;
 margin-left:20%;
}

.diplome figcaption{
  margin-left:0%;
  text-align: center;
}

  .tl-year {
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose2);
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 400;
  }

  .tl-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--creme-clair2);
      font-style: italic;
    margin-bottom: 0.3rem;
    line-height: 1.4;
    font-weight:bold;
  }

  .tl-desc {
    font-size: 0.95rem;
    color: hsla(47, 88%, 94%, 0.8);
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
  }


  .tl-item:hover .tl-dot { background: var(--orange); border-color: var(--orange); }

  @media (max-width: 860px) {
    .parcours-grid { grid-template-columns: 1fr; gap: 3rem; }
  }

  /* ——— FOOTER ——— */
  footer {
    background: url("Img/bg3b50.png") center/cover no-repeat,var(--encre);
    color: hsla(47, 77%, 88%, 0.6);
    padding: 3rem 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    font-size: 1rem;
  }

  footer .logo { color: var(--creme); margin-bottom: 0.75rem; display: block; }

  footer p { line-height: 1.7; }

  footer h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--creme);
    margin-bottom: 1rem;
  }

  footer ul { list-style: none; }
  footer ul li { padding: 0.3rem 0; }
  footer ul a { color: hsla(47, 77%, 88%, 0.6); text-decoration: none; transition: color 0.2s; }
  footer ul a:hover { color: var(--creme); }

footer img {
  margin-top:1rem;
  width:90%;
  max-width:300px;
}

  .footer-bottom {
    background: var(--encre);
    border-top: 1px solid hsla(47, 77%, 88%, 0.1);
    padding: 1.2rem 5%;
    text-align: center;
    font-size: 0.78rem;
    color: hsla(47, 77%, 88%, 0.35);
  }

  /* ——— ANIMATIONS ——— */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes floatBlob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(3deg); }
  }

  .hero-art { animation: floatBlob 6s ease-in-out infinite; }


  /* ——— RESPONSIVE ——— */

  /* Réduction du gap nav entre 860px et 1400px pour éviter le scroll horizontal */
  @media (max-width: 1400px) {
    .nav-links { gap: 1.5rem; }
  }

  @media (max-width: 1100px) {
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.78rem; letter-spacing: 0.07em; }
    nav { padding: 1.2rem 3%; }
  }

  /* ——— BURGER BUTTON ——— */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 0.5rem;
    transition: background 0.2s;
    z-index: 200;
  }

  .burger:hover { background: hsla(25, 40%, 35%, 0.1); }

  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--terre);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s;
    transform-origin: center;
  }

  /* Animation croix */
  .burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 860px) {
    .burger { display: flex; }

    .nav-links {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0; right: 0;
      width: min(80vw, 300px);
      height: 100vh;
      background: hsla(47, 90%, 96%, 0.97);
      backdrop-filter: blur(16px);
      padding: 6rem 2rem 3rem;
      gap: 0;
      list-style: none;
      box-shadow: -8px 0 32px hsla(220, 20%, 22%, 0.12);
      transform: translateX(100%);
      transition: transform 0.38s cubic-bezier(.4,0,.2,1);
      z-index: 150;
    }

    .nav-links.nav-open { transform: translateX(0); }

    .nav-links li {
      border-bottom: 1px solid var(--creme-fonce);
    }

    .nav-links li:last-child { border-bottom: none; margin-top: 1.5rem; }

    .nav-links a {
      display: block;
      padding: 1rem 0.5rem;
      font-size: 1rem;
      letter-spacing: 0.1em;
    }

    .nav-cta {
      display: inline-block !important;
      background: var(--brun) !important;
      color: var(--creme) !important;
      padding: 0.75rem 1.6rem !important;
      border-radius: 2rem;
      text-align: center;
      font-weight: 400 !important;
    }

    /* Overlay sombre derrière le menu */
    nav::after {
      content: '';
      position: fixed;
      inset: 0;
      /*background: hsla(220, 20%, 22%, 0);*/
      background: hsla(35, 20%, 22%, 0);
      pointer-events: none;
      transition: background 0.35s;
      z-index: 140;
    }

    nav.nav-active::after {
      background: hsla(46, 36%, 23%, 0.5);
      pointer-events: auto;
    }

    .hero, .about { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    footer { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form { grid-template-columns: 1fr; }
    .contact-form .full { grid-column: 1; }
  }

  /*EMAIL*/

   /*.email { unicode-bidi: bidi-override; direction: rtl; }*/
   #coords { text-decoration: none;
  color:hsla(47, 77%, 88%, 0.6); 
  }

