:root{
  /* Palette (depuis ton image) */
  --cream: #f2e9df;      /* crème très clair */
  --sand:  #dbc7b7;      /* beige/sable */
  --taupe: #9B8E79;      /* taupe */
  --gold:  #c49837;      /* or (plus profond) */
  --gold-2:#E7C161;      /* or clair */
  --brown: #ca8671;      /* brun */

  /* Tokens UI */
  --bg: var(--cream);
  --surface: rgba(255,255,255,.40);
  --text: var(--brown);
  --muted: var(--taupe);
  --accent: var(--gold);
  --accent-2: var(--gold-2);

  --text-soft: rgba(102,82,51,.70);     /* brun en plus doux */
  --soft: rgba(255,255,255,.70);
  --border: rgba(155,142,121,.30);
  --border-2: rgba(155,142,121,.18);

  --shadow: 0 10px 30px rgba(102,82,51,.12);

  --radius: 18px;
  --radius-arch: 999px 999px 0 0;

  --container: 1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Josefin Sans", ui-serif, Georgia, "Times New Roman", Times, serif;
  background: var(--bg);
  color: var(--text);
}

h1, h2, h3, .headline {

  font-weight: 300!important;
  letter-spacing: 0.08em;
}
img{ max-width:100%; height:auto; display:block; }

.container{
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 22px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left: 12px;
  top: 12px;
  width:auto;
  height:auto;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  z-index: 9999;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
    font-size: 12px!important;
  padding: 24px 28px!important;
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  transition: transform .12s ease, filter .12s ease;
  color: #fff !important;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(.98); color:#fff !important; }

.btn--primary{
  background: var(--accent);
  color: #fff;
}
.btn--ghost{
  background: var(--sand);
  color: #000;
}
.btn--block{ width: 100%; height: 64px;  }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brown); /* var(--cream) en translucide */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(155,142,121,.15);
}
.header__inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 16px;
  padding: 40px 0;
}
.brand{ display:flex; justify-content:center; }
.brand img{ max-height: 60px; width:auto; }

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav a{
  color: #fff;
  text-decoration:none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 16px;
  padding: 10px 8px;

}
.nav a:hover{ background: rgba(255,255,255,.45); }

.nav--right{ justify-content:flex-end; }

.icon-btn{
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;

  color: var(--muted);
  text-decoration:none;
}

/* Burger */
.burger{
  display:none;
  width: 46px;
  height: 46px;

  border: 1px solid rgba(155,142,121,.20);
  background: rgba(255,255,255,.45);
  cursor:pointer;
}
.burger span{
  display:block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

.mobile-menu{
  display:none;
  padding: 10px 22px 18px;
  border-top: 1px solid rgba(155,142,121,.15);
}
.mobile-menu a{
  display:block;
  padding: 12px 10px;
  color: var(--muted);
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;

}
.mobile-menu a:hover{ background: rgba(255,255,255,.45); }
.mobile-menu.is-open{ display:block; }

/* Hero */
.hero{ padding: 34px 0 26px; }
.hero__inner{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items:center;
}
.hero h1{
  margin:0 0 14px 0;
  font-size: clamp(34px, 4.3vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 900;
}
.lead{
  margin:0 0 18px 0;
  max-width: 56ch;
  color: #5f5a55;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}
.hero__actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.trust{
  list-style: none;
  padding:0;
  margin:0;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-weight: 600;
}
.trust li{
  padding: 8px 10px;
  border: 1px solid rgba(155,142,121,.18);
  background: rgba(255,255,255,.40);
  border-radius: 999px;
}

.arch{
  width: min(520px, 100%);
  aspect-ratio: 1 / 1.05;
  background: var(--accent-2);
  border-radius: var(--radius-arch);
  overflow:hidden;
  position:relative;
  box-shadow: var(--shadow);
}
.arch img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.03);
}

/* Intro */
.intro{
  padding: 80px 0;
  background: var(--sand);
}
.intro__inner{ text-align:center; }
.intro__logo{ margin: 0 auto 12px; max-height: 110px; width:auto; }
.intro h2{
  margin: 0 auto 10px;
  max-width: 58ch;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.2;
  font-weight: 800;
  color:#CA8671;
}
.intro p{
  margin: 0 auto;
  max-width: 72ch;
  color: #5f5a55;
  font-weight: 600;
  line-height: 1.8;
}

/* About */
.about{ padding: 80px 0;   background:#dbc7b7;}
.about__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items:start;
}
.about h2{
  margin:0 0 12px;
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 900;
  color: #CA8671;
}
.about p{
  margin: 0 0 14px;
  color: #5f5a55;
  line-height: 1.85;
  font-size: 17px;
  font-weight: 600;
}
.signature{ margin-top: 18px; color: var(--muted); }

.about__media{
  margin:0;
  padding: 16px;
 
}

/* Services */
.services{ padding: 80px 0; background:var(--cream);}
.section-head{
  margin-bottom: 22px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.section-head h2{
  margin:0;
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 900;
  color: #CA8671;
}
.section-head p{
  margin:0;
  max-width: 56ch;
  color: #5f5a55;
  font-weight: 600;
  line-height: 1.7;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* ===== Services : retirer le style "cards blanches" ===== */
#soins .card{
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
#soins .card__body{ padding: 14px 0 0; }
#soins .card__media{ margin: 0; box-shadow: none; }
#soins .text-link{
  text-decoration: underline;
  text-underline-offset: 4px;
}

.card{
  display:flex;
  flex-direction:column;
  background: rgba(255,255,255,.40);
  border: 1px solid var(--border-2);

  overflow:hidden;
  box-shadow: var(--shadow);
}
.card__media{
  border-radius: var(--radius-arch);
  overflow:hidden;
  margin: 16px 16px 0;
  box-shadow: var(--shadow);
}
.card__media img{
  width:100%;
  height: 320px;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .25s ease, filter .3s ease;
}
.card__media:hover img{ transform: scale(1.07); }

.card__body{
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  flex: 1;
}
.card h3{
  margin:0;
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
}
.card p{
  margin:0;
  color: #5f5a55;
  line-height: 1.75;
  font-weight: 600;
  flex: 1;
}
.text-link{
  color: var(--muted);
  font-weight: 900;
  text-decoration:none;
  align-self:flex-start;
}
.text-link:hover{ text-decoration: underline; text-underline-offset: 4px; }

/* Contact */
.contact{ padding: 80px 0; }
.contact__inner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: start;
}
.contact__kicker{
  margin: 0 0 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 800;
  font-size: 12px;
}
.contact__copy h2{
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #CA8671;
  font-weight: 900;
}
.contact__desc{
  margin: 0 0 18px;
  color: #5f5a55;
  font-weight: 600;
  line-height: 1.7;
  max-width: 52ch;
}
.contact__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.contact__list li{
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: #5f5a55;
}
.contact__list strong{
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
.contact__list a{
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}
.contact__list a:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Formulaire */
.contact__form{ background: transparent; }

.form__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form__grid .full{ grid-column: 1 / -1; }

label span{
  display:block;
  font-weight: 900;
  letter-spacing: .02em;
  margin-bottom: 6px;
  color: var(--accent);
}
.field{
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid var(--border);
  background: var(--soft);

  outline:none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.field--textarea{
  height:auto;
  padding: 12px 14px;
  resize: vertical;
}
.field:focus{
  border-color: rgba(199,156,61,.75);
  box-shadow: 0 0 0 3px rgba(199,156,61,.18);
  background: rgba(255,255,255,.88);
}
.form__note{
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
}

/* Footer */
.footer{
  background: var(--brown);
  color: rgba(246,239,224,.96);
  padding: 80px 0;

}
.footer__inner{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 18px;
  padding: 34px 0 18px;
  align-items:start;
}
.footer__title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  margin-bottom: 10px;
}
.footer__link, .footer a{
  color: rgba(246,239,224,.96);
  text-decoration:none;
  font-weight: 900;
}
.footer__nav{ display:flex; flex-direction:column; gap: 8px; }
.footer__bottom{
  padding: 14px 0 22px;
  border-top: 1px solid rgba(246,239,224,.18);
}
.footer__bottom a{ text-decoration: underline; text-underline-offset: 4px; }

/* Responsive */
@media (max-width: 980px){
  .header__inner{ grid-template-columns: 1fr auto 1fr; }
  .nav--left{ display:none; }
  .burger{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .about__inner{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .contact__inner{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer__inner{ grid-template-columns: 1fr; }
  .form__grid{ grid-template-columns: 1fr; }
  .hero__copy {
    border: 1px solid #665233 !important;
    padding: 20px;
    text-align: center;
}
}

/* Logo responsive */
.brand img { height: auto; }

@media (max-width: 980px) {
  .brand img { width: 120px; height: auto; }
}
@media (max-width: 512px) {
  .brand img { width: 100px; height: auto; }
}

/* FOOTER – padding responsive */
@media (max-width: 768px) {
  .footer { padding: 32px 0; text-align: center; }
  .footer__inner { padding: 0 20px; }
  .footer__bottom { padding: 16px 20px 0; text-align: center; }
}

/* Filtre sépia sur les cards */
.card__media img { filter: sepia(50%); }
.card:hover .card__media img { filter: sepia(0%); }

/* MOBILE : logo centré et plus gros */
@media (max-width: 768px) {
  body{
  background: #fff;
}
.services {
  background: #fff;
}
  .site-header .header__inner {
    display: flex;
    justify-content: center;
    position: relative;
  }
  .site-header .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .site-header .brand img { width: 60px; height: auto; }

  .site-header .nav--right {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .site-header .nav--left { display: none; }
}
.insta h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 3vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-weight: 900;
}
/* MOBILE HEADER ADJUSTMENTS */
@media (max-width: 768px) {
  .nav--right .btn { display: none; }       /* Supprimer le bouton Prendre RDV */
/* supprimer Instagram du header */
}
/* Instagram */
.insta{ padding: 80px 0; background: var(--sand); text-align:center; }
.insta-handle a{ color: var(--muted); font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.insta-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.insta-grid img{

  box-shadow: var(--shadow);
}


/* Instagram responsive : 2 colonnes, centré */
@media (max-width: 980px){
  .insta-grid{
    grid-template-columns: repeat(2, minmax(0, 280px));
    justify-content: center; /* ✅ centre les 2 colonnes */
  }
}
@media (max-width: 520px){
  .insta-grid{
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
  }
}

/* Footer responsive : tout centré */
@media (max-width: 768px) {
  .footer { padding: 32px 0; }

  .footer__inner{
    grid-template-columns: 1fr;
    padding: 0 20px;
    text-align: center;             /* ✅ */
    justify-items: center;          /* ✅ */
  }

  .footer__brand{ display:flex; justify-content:center; }

  .footer__nav{
    align-items: center;            /* ✅ liens centrés */
  }

  .footer__bottom{
    padding: 16px 20px 0;
    text-align: center;
  }
}
/* =========================
   CENTER PACK (RESPONSIVE)
   ========================= */

/* Tablette + mobile : tout centré */
@media (max-width: 980px){



  /* Hero */
  .hero__inner{ text-align: center; justify-items: center; }
  .lead{ margin-left:auto; margin-right:auto; }
  .hero__actions{ justify-content: center; }
  .trust{ justify-content: center; }

  /* About */
  .about__inner{ text-align: center; justify-items: center; }
  .about p{ margin-left:auto; margin-right:auto; max-width: 65ch; }
  .about__media{ display:flex; justify-content:center; width:100%; }

  /* Services cards : centrées + largeur maîtrisée */
  .cards{
    justify-items: center;       /* centre les cards dans le grid */
    gap: 28px;
  }
  .card{
    width: min(520px, 100%);     /* évite les cards trop larges */
  }
  .card__body{ text-align: center; align-items: center; }
  .text-link{ align-self: center; } /* au lieu de flex-start */

}

/* Mobile : encore plus clean */
@media (max-width: 520px){



  /* Boutons : centrés */
  .btn{ justify-content: center; }
  .hero__actions{ flex-direction: column; align-items: center; }
  .btn--block{ width: min(360px, 100%); }

  /* Cards : image + texte bien centrés */
  .card__media{ margin-left: auto; margin-right: auto; width: 100%; }
  .card__media img{ height: 280px; }

}
