/* ========== Design tokens ========== */
:root{
  --bg:#0b0b0b;
  --text:#111;
  --muted:#666;
  --paper:#ffffff;
  --accent:#f2eadf;
  --dark: #0b0b0b;
  --ring: rgba(17,17,17,.35);
}

/* Reset minimal */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{max-width:100%; display:block;}

/* Layout helpers */
.container{width:min(1120px, 92%); margin-inline:auto;}
.section{padding:64px 0;}
.center{text-align:center;}
.kicker{letter-spacing:.18em; font-size:12px; color:var(--muted); text-transform:uppercase;}


.logo img {
  display: block;
  height: 200px; /* ajuste la hauteur que tu veux */
  width: auto;
}




/* ========== Topbar ========== */
.topbar{
  position:fixed; inset:0 0 auto 0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding: max(12px, env(safe-area-inset-top)) 16px 12px;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,0));
  color:#fff;
}
.logo{display:flex; gap:8px; text-decoration:none; color:inherit; align-items:baseline;}
.logo__mark{font-family:"Playfair Display", serif; font-weight:700; font-size:28px; line-height:1;}
.logo__tag{font-size:11px; letter-spacing:.18em; text-transform:uppercase;}

/* Burger */
.nav-toggle{display:none;}
.hamburger{width:40px;height:40px;display:grid;place-items:center;border-radius:10px;background:rgba(0,0,0,.35);border:1px solid rgba(255,255,255,.12);}
.hamburger span, .hamburger::before, .hamburger::after{
  content:""; display:block; width:18px; height:2px; background:#fff; border-radius:2px; transition:transform .25s ease, opacity .2s ease;
}
.hamburger::before{transform:translateY(-6px);}
.hamburger::after{transform:translateY(6px);}
.nav-toggle:checked + .hamburger span{opacity:0;}
.nav-toggle:checked + .hamburger::before{transform:translateY(0) rotate(45deg);}
.nav-toggle:checked + .hamburger::after{transform:translateY(0) rotate(-45deg);}

/* Menu plein écran */
.nav{
  position:fixed; inset:0; z-index:40;
  display:grid; place-items:center;
  background:rgba(8,8,8,.82); backdrop-filter: blur(10px) saturate(140%);
  opacity:0; pointer-events:none; transition:opacity .25s ease;
}
.nav ul{list-style:none; padding:0; margin:0; text-align:center;}
.nav a{display:block; padding:12px 20px; color:#fff; text-decoration:none; font-size:22px;}
.nav a:focus-visible{outline:3px solid rgba(255,255,255,.5); border-radius:10px;}
.nav-toggle:checked ~ .nav{opacity:1; pointer-events:auto;}

/* ========== Hero ========== */
.hero{
  position:relative; min-height:100svh; isolation:isolate; overflow:hidden; color:#fff;
  display:grid; place-items:end;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 40%, rgba(0,0,0,.18) 60%, rgba(0,0,0,.55) 100%),
    url("images/hero1.jpg") center/cover no-repeat; /* 🔁 remplace par ta photo */
  filter:saturate(95%) contrast(1.02);
  transform:scale(1.04);
}
@media (prefers-reduced-motion:no-preference){
  .hero__bg{transition:transform 8s ease;}
  .hero:hover .hero__bg{transform:scale(1.06);}
}
.hero__content{
  position:relative; z-index:1; width:min(720px, 92%); margin-inline:auto;
  padding: calc(96px + env(safe-area-inset-top)) 0 calc(28px + env(safe-area-inset-bottom));
}
.hero h1{
  margin:0 0 8px; font-family:"Playfair Display", serif; font-weight:700;
  font-size:clamp(28px, 6vw, 44px); line-height:1.12; text-wrap:balance; text-shadow:0 1px 10px rgba(0,0,0,.35);
}
.hero p{margin:0 0 16px; font-size:15px; opacity:.95; text-shadow:0 1px 8px rgba(0,0,0,.3);}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap;}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  padding:12px 18px; border-radius:999px; text-decoration:none; font-weight:600; line-height:1;
  transition:transform .08s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active{transform:translateY(1px);}
.btn--primary{background:var(--accent); color:#111; box-shadow:0 6px 24px rgba(0,0,0,.25), inset 0 0 0 1px rgba(0,0,0,.06);}
.btn--primary:hover{box-shadow:0 8px 28px rgba(0,0,0,.3);}
.btn--ghost{background:transparent; color:#fff; border:1px solid rgba(255,255,255,.6);}
.btn--ghost:hover{background:rgba(255,255,255,.08);}

/* ========== Intro ========== */
.intro blockquote{margin:8px 0 12px; padding-left:14px; border-left:3px solid var(--accent); font-family:"Playfair Display", serif; font-size:20px;}
.lead{font-size:16px; color:#333;}

/* ========== Services / Gallery ========== */
.grid-3{display:grid; grid-template-columns:1fr; gap:14px;}
@media (min-width:720px){ .grid-3{grid-template-columns:repeat(3,1fr);} }

.card{position:relative; border-radius:16px; overflow:hidden; text-decoration:none; color:#fff;}
.card img{width:100%; height:48svh; object-fit:cover; display:block;}
.card span{
  position:absolute; left:14px; bottom:14px; padding:8px 12px; border-radius:999px;
  background:rgba(0,0,0,.45); backdrop-filter: blur(6px); border:1px solid rgba(255,255,255,.14);
}

/* ========== Blog ========== */
.blog h2{margin:0 0 16px; font-family:"Playfair Display", serif; font-size:35px;}
.blogcard{display:block; border-radius:16px; overflow:hidden; text-decoration:none; color:inherit; background:#fafafa;}
.blogcard img{width:100%; height:220px; object-fit:cover;}
.blogcard p{margin:10px 12px 16px;}

/* ========== Contact ========== */
.contact__grid{display:grid; gap:18px; align-items:center;}
@media (min-width:860px){ .contact__grid{grid-template-columns:1fr 1fr;} }
.contact__image img{border-radius:18px;}
.contact__text h2{font-family:"Playfair Display", serif; font-size:28px; margin:0 0 8px;}
.contact__text p{margin:0 0 16px; color:#333;}

/* ========== Footer ========== */
/* Base footer */
.footer{
  background:#0b0b0b; color:#ddd;
  padding: 3px 16px 18px;
  font-size:14px;
}
.footer__top{
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:18px;
}
.footer__brand img{ height:180px; width:auto; opacity:.9; }

/* Liens mobile en grille 2 colonnes, zones tactiles confortables */
.footer__links{
  width:100%;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px 16px;
  justify-items:center;
}
.footer__links a{
  display:inline-flex;
  align-items:center; justify-content:center;
  min-height:44px;           /* zone tactile */
  padding:6px 10px;
  color:#cfcfcf; text-decoration:none;
  border-radius:10px;
  transition: background .2s, color .2s;
}
.footer__links a:active{ transform: translateY(1px); }
.footer__links a:hover{ color:#fff; background:rgba(255,255,255,.06); }

/* séparateur + copyright */
.footer__copy{
  margin-top:18px; padding-top:14px; text-align:center; color:#8c8c8c; font-size:12.5px;
  border-top:1px solid rgba(255,255,255,.09);
}

/* Ajustements très petits écrans */
@media (max-width:360px){
  .footer__links{ grid-template-columns: 1fr; } /* 1 colonne si écran étroit */
}

/* Desktop/tablette : reviens en ligne si tu veux */
@media (min-width:768px){
  .footer{ padding:4px 20px 24px; }
  .footer__brand img{ height:180px; }
  .footer__links{
    display:flex; flex-wrap:wrap; gap:12px 24px; justify-content:center;
  }
  .footer__links a{ min-height:0; padding:6px 8px; }
}








/* === FIX: Héro aligné en bas sur mobile === */
@media (max-width: 768px) {
  .hero {
    position: relative !important;
    min-height: 100svh;
    overflow: hidden;
  }

  /* image + dégradé (garde ton url d'image existante) */
  .hero__bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to top, rgba(0,0,0,.66) 0%, rgba(0,0,0,.24) 45%, rgba(0,0,0,.55) 100%),
      var(--hero-image, url("images/hero2.jpg")) center/cover no-repeat;
    z-index: 0;
  }

  /* 👉 Contenu collé en bas */
  .hero .hero__content {
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(24px + env(safe-area-inset-bottom));
    width: 90%;
    padding: 0 !important;
    margin: 0;
    text-align: center;
    z-index: 1;
  }

  .hero .hero__content h1 {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(24px, 6.4vw, 32px);
    line-height: 1.22;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
  }

  .hero .btn.btn--primary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    background: #f2eadf;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,.35), inset 0 0 0 1px rgba(0,0,0,.06);
  }
}



@media (max-width: 768px) {
  .hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: bgSlideshow 18s infinite;
  }

  @keyframes bgSlideshow {
    0%, 33% {
      background-image: 
        linear-gradient(to top, rgba(0,0,0,.66) 0%, rgba(0,0,0,.24) 45%, rgba(0,0,0,.55) 100%),
        url("images/hero1.jpg");
    }
    34%, 66% {
      background-image: 
        linear-gradient(to top, rgba(0,0,0,.66) 0%, rgba(0,0,0,.24) 45%, rgba(0,0,0,.55) 100%),
        url("images/hero2.jpg");
    }
    67%, 100% {
      background-image: 
        linear-gradient(to top, rgba(0,0,0,.66) 0%, rgba(0,0,0,.24) 45%, rgba(0,0,0,.55) 100%),
        url("images/hero3.jpg");
    }
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
}

/* Slideshow */
.hero__bg-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__bg-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 18s infinite;
}

.hero__bg-slideshow .slide:nth-child(1) { animation-delay: 0s; }
.hero__bg-slideshow .slide:nth-child(2) { animation-delay: 6s; }
.hero__bg-slideshow .slide:nth-child(3) { animation-delay: 12s; }

/* Animation fondu */
@keyframes fade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  30%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Contenu du héro aligné en bas */
.hero__content {
  position: absolute;
  left: 50%;
  bottom: calc(40px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
  width: 90%;
}

.hero__content h1 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 6vw, 36px);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}



/* Bouton principal */
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  background-color: #2B2B2B;
  color: white;           /* texte noir */
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 6px 24px rgba(0,0,0,.25), inset 0 0 0 1px rgba(0,0,0,.06);
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}

.btn--primary:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  background-color: #585656;
}

.btn--primary:active {
  transform: translateY(1px);
}

.btn--primary:focus-visible {
  outline: 3px solid rgba(0,0,0,.35);
  outline-offset: 2px;
}

/_____________________ABOUT_________________/
/* ===== ABOUT HERO ===== */
.about-hero{
  position: relative;
  min-height: 100svh;      /* plein écran sur mobile */
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

/* Image + dégradé */
.about-hero__bg{
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(0,0,0,.62) 0%,
      rgba(0,0,0,.28) 45%,
      rgba(0,0,0,.18) 65%,
      rgba(0,0,0,.55) 100%),
    url("images/portrait-hero.jpg") center/cover no-repeat; /* ← remplace par ta photo */
  filter: saturate(95%) contrast(1.02);
  transform: scale(1.04);
}
@media (prefers-reduced-motion:no-preference){
  .about-hero__bg{ transition: transform 8s ease; }
  .about-hero:hover .about-hero__bg{ transform: scale(1.06); }
}

/* Contenu aligné en bas (mobile) */
.about-hero__content{
  position: absolute;
  left: 50%;
  bottom: calc(40px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: 90%;
  max-width: 720px;
  text-align: center;
  z-index: 1;
}

.about-hero__content h1{
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(26px, 6.2vw, 40px);
  line-height: 1.16;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  color: #fff;
}

/* Bouton principal : réutilise ton style existant si tu l'as déjà */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 28px;border-radius:999px;text-decoration:none;font-weight:600;
}


.btn--primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  background-color: #2B2B2B;
  color: white;           /* texte noir */
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 6px 24px rgba(0,0,0,.25), inset 0 0 0 1px rgba(0,0,0,.06);
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary:hover{ box-shadow:0 8px 28px rgba(0,0,0,.3); }
.btn--primary:active{ transform:translateY(1px); }

/* Option desktop : remonter légèrement le bloc pour libérer le bas */
@media (min-width: 900px){
  .about-hero{ min-height: 86vh; }
  .about-hero__content{ bottom: 56px; }
}

/* ===== ABOUT TEXT SECTION ===== */
.about-text {
  background: #fafafa;
  padding: 60px 20px;
  text-align: center;
  color: #111;
}

.about-text h2 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-text p {
  max-width: 100ch;
  margin: 0 auto 20px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #222;
}

.about-text blockquote {
  margin: 0 auto 28px;
  font-size: 18px;        /* ✅ plus grand */
  font-style: italic;
  font-weight: 600;       /* ✅ gras */
  color: #222;            /* un peu plus sombre pour renforcer la lisibilité */
  max-width: 40ch;
  line-height: 1.6;
}

/* ===== Animation défilante des tags ===== */
.about-tags {
  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;   
  gap: 24px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 16px 0;
}

/* Duplication du contenu pour créer une boucle continue */
.about-tags::before,
.about-tags::after {
  content: attr(data-content);
  display: inline-block;
  padding-left: 54px;
}

/* Animation */
.about-tags span {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background-color: #585652;
  font-size: 15px;
  color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  animation: scrollTags 8s linear infinite;
}

/* Effet de défilement */
@keyframes scrollTags {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Pause au survol */
.about-tags:hover span {
  animation-play-state: paused;
}


/* ===== Bouton CONTACT dans la section About ===== */
.about-contact-btn {
  display: inline-block;
  background-color: #2B2B2B;  /* Couleur principale */
  color: white;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.about-contact-btn:hover {
  background-color: #585656; /* Teinte plus claire */
  transform: translateY(-2px);

}




/* ===== PRESTATIONS & SERVICES ===== */
.services.section {
  background: #f5f5f5hg; /* 🔹 gris léger, modifiable selon ton goût */
  color: #111;
  padding: 80px 0;     /* même padding que les autres sections */
}

/* Bandeau image en haut */
.services-cta__banner{
  height: 34vh;               /* ~1/3 d'écran sur mobile */
  min-height: 160px;
  max-height: 300px;
    background-color: #2B2B2B;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.08), rgba(0,0,0,0)),
    url("images/services-banner.jpg") center/cover no-repeat; /* ⇠ remplace */
  border-top: 1px solid rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(0,0,0,.12);
}


/* Bloc contenu */
.services-cta__content{
  text-align:center;
  padding: 36px 16px 44px;
  max-width: 920px;
  margin: 0 auto;
}

.services-cta__content h2{
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 28px);
  letter-spacing:.02em;
  margin: 0 0 12px;
}

.services-cta__categories{
  margin: 0 0 10px;
  font-size: 13.5px;
  letter-spacing:.06em;
  color:#555;
}


/* Le hero garde la photo plein écran */
.about-hero{ position:relative; min-height:100svh; overflow:hidden; }

/* ➜ même position que l'ancien texte : centré en bas */
.about-hero__content{
  position:absolute;
  left:50%;
  bottom:calc(40px + env(safe-area-inset-bottom)); /* espace depuis le bas */
  transform:translateX(-50%);
  width:90%;
  display:flex; align-items:center; justify-content:center;
  z-index:2; text-align:center;
}

/* Icône + animation */
.scroll-indicator img{
  width:34px; height:auto; display:block;
  opacity:.92;
  filter: invert(1) drop-shadow(0 2px 6px rgba(0,0,0,.35)); /* blanche, lisible sur photo */
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce{
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(6px); }
}

/* (option) un peu plus haut sur desktop */
@media (min-width:900px){
  .about-hero__content{ bottom:56px; }
}

.about-hero__content h1 {
  margin: 0 0 20px;   /* espace avec l’icône */
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(26px, 6.2vw, 40px);
  line-height: 1.16;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  color: #fff;        /* texte blanc */
}

_______________________
/* ===== Instagram card ===== */
.ig-card {
  width:min(980px, 94%);
  margin: 28px auto;
  background:#fff;
  border-radius:24px;
  box-shadow: 0 10px 34px rgba(0,0,0,.08);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
}

.ig-card {
  width: min(980px, 100%);   /* occupe toute la largeur dispo */
  margin: 20px auto;         /* un peu moins d’espace vertical */
  border-radius: 20px;
}

.ig-grid {
  gap: 4px;                  /* réduit l’espace entre photos */
  padding: 4px;              /* réduit le padding interne */
}





/* Header with logo + handle + follow */
.ig-card__header{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,.06);
  background: linear-gradient(180deg, #fafafa, #ffffff);
}
.ig-brand{ display:flex; align-items:center; gap:10px; }
.ig-brand svg{ width:22px; height:22px; display:block; }
.ig-brand a{
  color:#111; text-decoration:none; font-weight:600;
}
.ig-follow{ padding:8px 14px; font-size:14px; }

/* Grid 3x2 */
.ig-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:6px;
  padding:6px;
}
.ig-item{
  position:relative; display:block;
  aspect-ratio: 1 / 1;
  border-radius:14px; overflow:hidden;
  background:#eee;
}
.ig-item img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .25s ease;
}

/* Overlay (desktop hover only) */
.ig-overlay{
  position:absolute; inset:0;
  display:grid; place-items:center;
  background: rgba(0,0,0,.28);
  color:#fff; font-weight:600; font-size:13px;
  opacity:0; transition: opacity .2s ease;
  letter-spacing:.08em; text-transform:uppercase;
}
@media (hover:hover){
  .ig-item:hover img{ transform: scale(1.04); }
  .ig-item:hover .ig-overlay{ opacity:1; }
}

/* Buttons reuse your primary style; fallback if absent */
.btn{ display:inline-flex; align-items:center; justify-content:center; border-radius:999px; text-decoration:none; }
.btn--primary{ background:#f2eadf; color:#111; font-weight:600; box-shadow:0 6px 24px rgba(0,0,0,.1); }

/* Small screens tweaks */
@media (max-width:420px){
  .ig-card{ border-radius:18px; }
  .ig-grid{ gap:4px; padding:4px; }
}



.blog-card {
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.blog-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.blog-card__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blog-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.btn--secondary {
  display: inline-block;
  text-align: center;
  padding: 0.6rem 1rem;
  background: #000;
  color: #fff;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.btn--secondary:hover {
  background: #444;
}


.article-page {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.article-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.article-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-content h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #333;
}

.article-content p, .article-content ul {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.article-content ul {
  list-style: disc;
  margin-left: 1.5rem;
}

.article-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}


/* === Cookie Consent === */
.cc {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 2rem));
  display: flex;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 1rem 1.125rem;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  border-radius: 14px;
  z-index: 9999;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc--hidden { display: none; }

.cc__text {
  line-height: 1.45;
  font-size: 0.95rem;
  flex: 1 1 auto;
}

.cc__text strong { font-weight: 600; }
.cc__link {
  text-decoration: underline;
  color: inherit;
}

.cc__actions {
  display: flex;
  gap: .5rem;
  flex: 0 0 auto;
}

.cc__btn {
  appearance: none;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: .6rem 1rem;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, opacity .15s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.cc__btn:hover { transform: translateY(-1px); }
.cc__btn:active { transform: translateY(0); }

.cc__btn--secondary {
  background: #fff;
  color: #111;
  border-color: #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* Mobile */
@media (max-width: 640px) {
  .cc {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
    padding: .9rem;
  }
  .cc__actions { justify-content: flex-end; }
  .cc__btn { width: auto; }
}

/* Dark backdrop option (désactivé par défaut)
body.cc-backdrop::before {
  content: "";
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 9998;
}
*/

/* Nettoyage et redimensionnement de la section Contact */
.contact__grid {
  display: grid;
  gap: 30px;
  align-items: center; /* Centre le texte verticalement par rapport à l'image */
  grid-template-columns: 1fr 1fr; /* Force deux colonnes sur ordi */
}

.contact__image img {
  width: 100%;
  height: 400px; /* On fixe une hauteur raisonnable */
  object-fit: cover; /* L'image remplit l'espace sans se déformer */
  border-radius: 12px;
}

.contact__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centre le contenu horizontalement dans sa colonne */
}

.contact__text h2 {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 28px;
}

.contact__text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Bouton rectangulaire style "minimaliste" */
.contact__text .about-contact-btn {
  background-color: #2b2b2b;
  color: #fff;
  padding: 12px 35px;
  border-radius: 0; /* Supprime l'arrondi pour le style de votre image */
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}


/* ========== Section Contact - Style Image Référence ========== */

.contact__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Titre : Majuscules, Gras, Espacé */
.contact__text h2 {
  font-family: 'Inter', sans-serif; /* Utilise Inter au lieu de Playfair */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em; /* Recrée l'effet aéré du titre */
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

/* Paragraphe : Fin, Aéré, Interligne large */
.contact__text p {
  font-family: 'Inter', sans-serif;
  font-weight: 300; /* Plus fin pour correspondre à l'image */
  font-size: 22px;
  line-height: 1.5;
  color: #1a1a1a;
  max-width: 600px;
  margin-bottom: 50px;
}

/* Bouton : Noir, Rectangulaire, Texte fin espacé */
.contact__text .about-contact-btn {
  background-color: #2b2b2b;
  color: #ffffff;
  padding: 20px 60px; /* Plus grand pour l'aspect premium */
  border-radius: 0;   /* On enlève l'arrondi (strictement rectangulaire) */
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.15em; /* Espacement fort sur le texte du bouton */
  transition: opacity 0.3s ease;
}

.contact__text .about-contact-btn:hover {
  opacity: 0.8;
  transform: none; /* On enlève le mouvement pour rester sobre */
}

/* --- SECTION EDITORIALE --- */
.intro-editorial {
  padding: 100px 0;
  background-color: #fff;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Deux colonnes égales */
  gap: 80px;
  align-items: stretch; /* Permet d'aligner le kicker en bas */
}

/* --- COLONNE GAUCHE --- */
.col-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Pousse le kicker vers le bas */
}

.serif-quote {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.3;
  color: #000;
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid #ddd; /* La fine barre à gauche sur image 081b98.png */
}

.kicker-bottom {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 40px;
}

/* --- COLONNE DROITE --- */
.col-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.thin-lead {
  font-family: 'Inter', sans-serif;
  font-weight: 300; /* Très fin */
  font-size: 19px;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 60px;
}

/* Alignement du Bouton */
.cta-wrapper {
  width: 100%;
  display: flex;
  justify-content: center; /* Centre le bouton sous le texte de droite */
}

.btn-black-rect {
  background: #111;
  color: #fff;
  padding: 20px 60px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.3s;
}

/* Mobile */
@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 40px; }
  .col-left { justify-content: flex-start; }
}


/* --- SECTION EDITORIALE --- */
.intro-editorial {
  padding: 120px 0;
  background: #fff;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start; /* Garde le point de référence en haut pour contrôler la descente */
}

/* --- COLONNE GAUCHE --- */
./* --- Ajustement de la colonne gauche --- */
.col-left {
  display: flex;
  flex-direction: column;
  /* On ajoute du padding ici pour descendre tout le bloc de gauche */
  padding-top: 80px; /* Augmentez cette valeur pour descendre davantage */
}

.quote-block {
  padding-left: 30px;
  border-left: 1px solid #000;
  /* Réduisez cet espace si vous voulez que le Kicker remonte vers la citation */
  margin-bottom: 60px; 
}
.serif-quote {
  font-family: 'Playfair Display', serif;
  font-size: 30px; /* Taille augmentée pour correspondre à image_0814d6.png */
  line-height: 1.1;
  color: #000;
  margin: 0;
}
.editorial-kicker {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

/* --- COLONNE DROITE --- */
.col-right {
  display: flex;
  flex-direction: column;
}

.editorial-body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.8; /* Grand interligne comme demandé */
  color: #1a1a1a;
  margin-bottom: 60px;
}

.cta-centered {
  display: flex;
  justify-content: center; /* Centre le bouton sous le texte de droite */
}

.btn-editorial-black {
  background: #000;
  color: #fff;
  padding: 22px 60px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-radius: 0;
  transition: opacity 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: flex-start;
  }
  .quote-block { margin-top: 0; margin-bottom: 40px; }
}

________
/* Conteneur des cartes */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Style de la carte */
.card {
  position: relative;
  border-radius: 16px;
  overflow: hidden; /* Important pour masquer le zoom de l'image */
  text-decoration: none;
  color: #fff;
  display: block;
  transition: transform 0.3s ease; /* Transition pour la carte elle-même */
}

/* L'image à l'intérieur de la carte */
.card img {
  width: 100%;
  height: 48svh;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease; /* Transition fluide pour le zoom */
}

/* Le texte (label) sur la carte */
.card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

/* --- EFFETS AU SURVOL (PC uniquement) --- */
@media (hover: hover) {
  /* Zoom de l'image au survol */
  .card:hover img {
    transform: scale(1.1); /* Zoom de 10% */
  }

  /* Changement d'apparence du texte au survol */
  .card:hover span {
    background: #000; /* Devient noir opaque */
    transform: translateY(-5px); /* Monte légèrement */
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  /* Optionnel : Légère ombre sur la carte */
  .card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}

@media (hover: hover) {
  /* Effet global sur la carte */
  .card:hover {
    /* Création d'un cadre interne blanc très fin */
    outline: 1px solid rgba(255, 255, 255, 0.8);
    outline-offset: -15px; /* Décale le cadre vers l'intérieur de 15px */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }

  /* Zoom de l'image (déjà vu précédemment) */
  .card:hover img {
    transform: scale(1.05); /* Zoom plus léger pour laisser place au cadre */
    filter: brightness(0.85); /* Assombrit légèrement pour faire ressortir le cadre blanc */
  }

  /* Le texte (label) s'ajuste au cadre */
  .card:hover span {
    background: #fff;
    color: #000;
    transform: translateY(-8px); /* Monte un peu plus pour éviter de toucher le cadre */
  }
}

/* ========== Adaptations Mobile ========== */
@media (max-width: 768px) {
  .grid-3 {
    gap: 12px; /* Espacement plus serré pour voir plus de contenu */
    padding: 0 10px;
  }

  .card {
    border-radius: 12px;
    /* On peut réduire un peu la hauteur pour mobile */
    height: 40vh; 
  }

  .card img {
    height: 100%; /* L'image remplit tout l'espace de la carte */
    filter: brightness(0.9); /* Légère pénombre pour que le texte blanc ressorte bien */
  }

  .card span {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%); /* Centre le bouton horizontalement */
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 20px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  /* Effet de clic (active) pour remplacer le survol */
  .card:active {
    transform: scale(0.98); /* Légère pression visuelle au toucher */
    transition: transform 0.1s;
  }
}

/* --- VERSION MOBILE (Slider horizontal) --- */
@media (max-width: 768px) {
  .services-slider {
    display: flex;
    overflow-x: auto; /* Active le défilement horizontal */
    scroll-snap-type: x mandatory; /* Aimante les cartes au centre */
    gap: 20px;
    padding: 20px 0;
    scroll-padding: 20px;
    -webkit-overflow-scrolling: touch; /* Défilement fluide sur iOS */
  }

  /* On masque la barre de défilement pour le look "app" */
  .services-slider::-webkit-scrollbar { display: none; }

  .card {
    flex: 0 0 85%; /* Chaque carte prend 85% de la largeur */
    scroll-snap-align: center; /* Centre la carte au milieu de l'écran */
    height: 60vh; /* Plus haute pour un effet immersif */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .card span {
    left: 20px;
    bottom: 20px;
    background: #fff;
    color: #000;
    font-weight: 700;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
}

/* --- VERSION PC (Grille avec encadrement au survol) --- */
@media (min-width: 769px) {
  .services-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .card:hover {
    outline: 1px solid rgba(255, 255, 255, 0.9);
    outline-offset: -20px; /* Cadre interne éditorial */
    transform: translateY(-5px);
  }

  .card:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
  }
}
@media (max-width: 768px) {
  .services-slider {
    gap: 30px; /* Plus d'espace entre les photos */
    padding-left: 20px; /* Aligne la première carte sur la marge du texte */
    padding-right: 20px; /* Permet de voir la dernière carte s'arrêter proprement */
  }
}

@media (max-width: 768px) {
  .services-slider::after {
    content: '→';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    pointer-events: none; /* Ne bloque pas le toucher */
    opacity: 0.6;
    font-size: 20px;
  }
}

/* --- HARMONISATION SECTION BLOG UNIQUEMENT --- */
#blog.blog.section {
    background-color: #f9f8f6; /* Fond beige très clair et chaud */
    padding: 100px 0;
}

#blog h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 0.02em;
    color: #111;
}

/* Style des cartes de blog pour coller à l'image 078cf2.jpg */
.blog .grid-3 {
    gap: 30px;
}

.blogcard {
    background: #fff; /* Les cartes restent blanches sur le fond beige */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.blogcard img {
    height: 250px;
    object-fit: cover;
}

.blogcard p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    padding: 25px 20px;
    margin: 0;
    color: #1a1a1a;
    text-align: left;
}

/* Bouton "Voir le blog" harmonisé */
#blog .about-contact-btn {
    background-color: #2B2B2B;
    border-radius: 10px; /* On garde l'arrondi léger pour le blog */
    margin-top: 40px;
    padding: 15px 40px;
}

@media (hover: hover) {
    .blogcard:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
}

.typewriter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px; /* Évite que la page ne saute quand le texte change */
  margin: 30px 0;
}

.typewriter-text {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #2B2B2B;
  border-right: 3px solid #2B2B2B; /* Curseur */
  padding-right: 8px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #2B2B2B }
}


/* --- Ajustement de la grille pour un centrage parfait --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Équilibre légèrement ajusté */
  align-items: center; /* Centre verticalement le texte par rapport à l'image */
  gap: 40px; 
  position: relative;
}

/* --- Centrage de l'image dans l'arche --- */
.about-image-wrapper {
  display: flex;
  justify-content: center; /* Centre l'arche horizontalement dans sa colonne */
  align-items: center;
}

.img-arch {
  width: 100%;
  max-width: 500px; /* Évite que l'image ne devienne trop géante */
  height: 650px;
  
  /* C'est ici que le centrage de la personne se joue */
  object-fit: cover; 
  object-position: center center; /* Force le centrage du sujet dans l'arche */
  
  border-radius: 500px 500px 0 0; /* Arche plus prononcée */
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* --- Ajustement du bandeau beige --- */
.about-header-bg {
  background-color: #e5e0d5; 
  padding: 40px 60px;
  margin-left: -150px; /* Plus profond pour un look plus "magazine" */
  padding-left: 150px;
  margin-bottom: 50px;
}

/* --- Mise en page Magazine --- */
.about-hero-section {
  padding: 120px 0 60px;
  background: #fff;
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center; /* Centre verticalement le texte et l'image */
  gap: 60px;
}

/* Bandeau Beige Asymétrique */
.header-highlight {
  background-color: #e5e0d5; 
  padding: 50px 80px;
  margin-left: -150px; /* Déborde vers la gauche */
  padding-left: 150px;
  margin-bottom: 40px;
}

.main-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 5vw, 48px);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

/* Texte de droite */
.content-wrapper {
  max-width: 550px;
}

.intro-bold {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* --- L'Arche Centrée --- */
.about-image-side {
  display: flex;
  justify-content: center;
}

.arch-container {
  width: 100%;
  max-width: 480px;
  height: 650px;
  overflow: hidden;
  border-radius: 500px 500px 0 0; /* Arche parfaite */
}

.img-arch-centered {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* Remonte un peu le sujet pour mieux le cadrer dans l'arche */
}

/* --- Mobile --- */
@media (max-width: 900px) {
  .about-main-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .header-highlight {
    margin-left: -5%;
    width: 110%;
    padding: 30px 20px;
  }
  .arch-container {
    height: 450px;
    margin-bottom: 30px;
  }
  .about-image-side {
    order: -1; /* Image en premier sur mobile */
  }
}




  
_____
/* --- RESET ET BASE TOPBAR --- */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}

/* --- LOGIQUE D'AFFICHAGE --- */

/* Par défaut (Mobile) */
.nav-desktop { 
  display: none; 
}

.nav-mobile-container {
  display: block;
}

/* Version PC (On inverse à partir de 1024px) */
@media (min-width: 1024px) {
  .nav-mobile-container { 
    display: none; 
  }
  
  .nav-desktop { 
    display: block; 
  }

  .nav-desktop ul {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-desktop a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
  }

  /* Votre effet de soulignement PC */
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease, left 0.3s ease;
  }

  .nav-desktop a:hover::after {
    width: 100%;
    left: 0;
  }
}

/* --- FIX MOBILE OVERLAY --- */
@media (max-width: 1023px) {
  .topbar { padding: 15px 20px; }
  
  .nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-toggle:checked ~ .nav-mobile-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-mobile-overlay ul {
    list-style: none;
    text-align: center;
  }

  .nav-mobile-overlay a {
    display: block;
    padding: 15px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
  }
}

@media (min-width: 1024px) {
  .topbar {
    display: flex;
    /* CHANGE ICI : absolute au lieu de fixed */
    position: absolute; 
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0 60px;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  /* Le reste du code (logo en absolute, nav, etc.) reste identique */
  .logo {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* --- SUR PC (écrans larges) --- */
@media (min-width: 1024px) {
  /* On force la disparition de TOUT le bloc mobile */
  .header-mobile, 
  .nav-mobile-container,
  .logo-mobile {
    display: none !important;
  }
  
  /* On affiche uniquement le bloc desktop */
  .topbar, .nav-desktop {
    display: flex !important;
  }
}

/* --- SUR MOBILE (écrans réduits) --- */
@media (max-width: 1023px) {
  /* On cache le bloc desktop pour éviter le doublon */
  .nav-desktop, 
  .logo-desktop {
    display: none !important;
  }
  
  /* On affiche le menu burger et son logo dédié */
  .header-mobile {
    display: flex !important;
  }
}
/* --- VERSION ORDINATEUR (PC) --- */
@media (min-width: 1024px) {
  
  /* 1. Camouflage total du menu mobile et de son petit logo */
  .nav-mobile-container, 
  .logo-mobile, 
  .hamburger, 
  .nav-toggle {
    display: none !important;
  }

  /* 2. Réglage précis du logo Desktop (le "gros") */
  .logo-desktop {
    display: block !important;
    position: absolute;
    left: 40px; /* Ajustez la distance du bord gauche */
    top: 50%;
    transform: translateY(-50%);
  }

  .logo-desktop img {
    height: 60px !important; /* Force la taille pour qu'il ne soit plus "très gros" */
    width: auto !important;
    max-width: none !important;
  }

  /* 3. Centrage du menu au milieu */
  .nav-desktop {
    display: flex !important;
    justify-content: center;
    width: 100%;
  }
}

/* --- VERSION MOBILE --- */
@media (max-width: 1023px) {
  .logo-desktop {
    display: none !important;
  }
  
  .logo-mobile {
    display: block !important;
  }
  
  .logo-mobile img {
    height: 40px !important; /* Taille adaptée au téléphone */
  }
}

