/* ===== RESET & BASE ===== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --rose-gold:#b76e79;
  --rose-gold-light:#d4a5a5;
  --blush:#f5e6e0;
  --cream:#fdf8f5;
  --cream-dark:#f0e6df;
  --text:#3a2e2e;
  --text-light:#6b5959;
  --white:#ffffff;
  --gold:#c9a96e;
  --shadow:0 4px 24px rgba(183,110,121,.12);
  --radius:12px;
  --transition:.3s ease;
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;color:var(--text);background:var(--cream);line-height:1.7;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:var(--rose-gold);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--gold)}
ul{list-style:none}
h1,h2,h3,h4{font-weight:600;line-height:1.3;color:var(--text)}
h1{font-size:clamp(1.8rem,5vw,3rem)}
h2{font-size:clamp(1.4rem,3.5vw,2.2rem);margin-bottom:1rem}
h3{font-size:clamp(1.1rem,2.5vw,1.5rem);margin-bottom:.6rem}
p{margin-bottom:1rem}

/* ===== ANIMATIONS ===== */
.fade-in{opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}
.fade-in-left{opacity:0;transform:translateX(-40px);transition:opacity .7s ease,transform .7s ease}
.fade-in-left.visible{opacity:1;transform:translateX(0)}
.fade-in-right{opacity:0;transform:translateX(40px);transition:opacity .7s ease,transform .7s ease}
.fade-in-right.visible{opacity:1;transform:translateX(0)}

/* ===== HEADER / NAV ===== */
header{
  position:sticky;top:0;z-index:1000;
  background:rgba(253,248,245,.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(183,110,121,.1);
  padding:.8rem 0;
}
.header-inner{
  max-width:1200px;margin:0 auto;padding:0 1.5rem;
  display:flex;align-items:center;justify-content:space-between;
}
.logo{
  font-size:1.5rem;font-weight:700;color:var(--rose-gold);
  letter-spacing:.5px;
}
.logo span{color:var(--gold);font-weight:300}
nav ul{display:flex;gap:1.8rem}
nav a{
  color:var(--text);font-size:.95rem;font-weight:500;
  position:relative;padding:.3rem 0;
}
nav a::after{
  content:'';position:absolute;bottom:0;left:0;width:0;height:2px;
  background:var(--rose-gold);transition:width var(--transition);
}
nav a:hover::after,nav a.active::after{width:100%}
nav a:hover{color:var(--rose-gold)}

/* Mobile menu */
.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:.5rem}
.menu-toggle span{display:block;width:26px;height:2px;background:var(--rose-gold);margin:6px 0;transition:var(--transition);border-radius:2px}
.menu-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,6px)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-6px)}

@media(max-width:768px){
  .menu-toggle{display:block}
  nav{
    position:fixed;top:0;right:-100%;width:75%;max-width:320px;height:100vh;
    background:var(--cream);padding:5rem 2rem 2rem;
    transition:right .4s ease;box-shadow:-4px 0 30px rgba(0,0,0,.1);
    z-index:999;
  }
  nav.open{right:0}
  nav ul{flex-direction:column;gap:1.5rem}
  nav a{font-size:1.2rem}
}

/* ===== HERO ===== */
.hero{
  position:relative;min-height:85vh;
  display:flex;align-items:center;justify-content:center;
  text-align:center;color:var(--white);
  overflow:hidden;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:url('https://images.unsplash.com/photo-1560750588-73207b1ef5b0?w=1400&h=900&fit=crop&q=80') center/cover no-repeat;
}
.hero::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(183,110,121,.7),rgba(58,46,46,.6));
}
.hero-content{position:relative;z-index:2;max-width:700px;padding:2rem}
.hero h1{color:var(--white);margin-bottom:1rem;text-shadow:0 2px 8px rgba(0,0,0,.2)}
.hero p{font-size:clamp(1rem,2vw,1.25rem);margin-bottom:2rem;opacity:.95}
.hero-badges{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:2rem}
.hero-badge{
  background:rgba(255,255,255,.15);backdrop-filter:blur(8px);
  padding:.5rem 1.2rem;border-radius:50px;font-size:.85rem;
  border:1px solid rgba(255,255,255,.25);
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-block;padding:.9rem 2.2rem;border-radius:50px;
  font-weight:600;font-size:.95rem;cursor:pointer;
  transition:all var(--transition);border:none;
}
.btn-primary{
  background:var(--rose-gold);color:var(--white);
  box-shadow:0 4px 16px rgba(183,110,121,.3);
}
.btn-primary:hover{
  background:var(--gold);color:var(--white);
  transform:translateY(-2px);box-shadow:0 6px 20px rgba(201,169,110,.3);
}
.btn-outline{
  background:transparent;color:var(--rose-gold);
  border:2px solid var(--rose-gold);
}
.btn-outline:hover{background:var(--rose-gold);color:var(--white)}
.btn-white{background:var(--white);color:var(--rose-gold)}
.btn-white:hover{background:var(--blush);color:var(--rose-gold)}

/* ===== SECTIONS ===== */
section{padding:5rem 1.5rem}
.container{max-width:1200px;margin:0 auto}
.section-header{text-align:center;margin-bottom:3rem}
.section-header p{color:var(--text-light);max-width:600px;margin:0 auto}
.section-label{
  display:inline-block;color:var(--rose-gold);font-size:.85rem;
  font-weight:600;letter-spacing:2px;text-transform:uppercase;
  margin-bottom:.5rem;
}

/* ===== CARD GRID ===== */
.grid{display:grid;gap:2rem}
.grid-2{grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.grid-4{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}

.card{
  background:var(--white);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow);transition:transform var(--transition),box-shadow var(--transition);
}
.card:hover{transform:translateY(-4px);box-shadow:0 8px 32px rgba(183,110,121,.18)}
.card-img{
  height:220px;background-size:cover;background-position:center;
  position:relative;
}
.card-img::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to bottom,transparent 60%,rgba(58,46,46,.15));
}
.card-body{padding:1.5rem}
.card-body h3{color:var(--rose-gold)}

/* ===== ABOUT SECTION ===== */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.about-img{
  height:450px;border-radius:var(--radius);
  background:url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?w=700&h=500&fit=crop&q=80') center/cover;
  box-shadow:var(--shadow);position:relative;
}
.about-img::before{
  content:'';position:absolute;inset:-12px;border:2px solid var(--rose-gold-light);
  border-radius:calc(var(--radius) + 4px);z-index:-1;
}
.about-stats{display:flex;gap:2rem;margin-top:1.5rem}
.stat{text-align:center}
.stat-number{font-size:2rem;font-weight:700;color:var(--rose-gold);display:block}
.stat-label{font-size:.85rem;color:var(--text-light)}

@media(max-width:768px){
  .about-grid{grid-template-columns:1fr}
  .about-img{height:300px}
}

/* ===== SERVICES PREVIEW ===== */
.services-preview{background:var(--white)}
.service-icon{
  width:60px;height:60px;border-radius:50%;
  background:var(--blush);display:flex;align-items:center;justify-content:center;
  margin-bottom:1rem;font-size:1.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials{background:linear-gradient(135deg,var(--blush),var(--cream-dark))}
.testimonial-card{
  background:var(--white);padding:2rem;border-radius:var(--radius);
  box-shadow:var(--shadow);position:relative;
}
.testimonial-card::before{
  content:'\201C';position:absolute;top:-.2rem;left:1rem;
  font-size:4rem;color:var(--rose-gold-light);font-family:Georgia,serif;
  line-height:1;
}
.testimonial-text{font-style:italic;margin-bottom:1rem;padding-top:1.5rem;color:var(--text-light)}
.testimonial-author{font-weight:600;color:var(--rose-gold)}
.stars{color:var(--gold);margin-bottom:.5rem;letter-spacing:2px}

/* ===== CTA BANNER ===== */
.cta-banner{
  background:linear-gradient(135deg,var(--rose-gold),var(--gold));
  text-align:center;color:var(--white);
  padding:4rem 1.5rem;
}
.cta-banner h2{color:var(--white);margin-bottom:1rem}
.cta-banner p{opacity:.9;margin-bottom:2rem;max-width:550px;margin-left:auto;margin-right:auto}

/* ===== SOINS PAGE ===== */
.page-hero{
  position:relative;min-height:40vh;
  display:flex;align-items:center;justify-content:center;text-align:center;
  color:var(--white);overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background-size:cover;background-position:center;
}
.page-hero::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(183,110,121,.75),rgba(58,46,46,.65));
}
.page-hero-content{position:relative;z-index:2;padding:2rem}
.page-hero h1{color:var(--white);margin-bottom:.5rem}

.soins-hero::before{background-image:url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=1400&h=600&fit=crop&q=80')}
.tarifs-hero::before{background-image:url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?w=1400&h=600&fit=crop&q=80')}
.contact-hero::before{background-image:url('https://images.unsplash.com/photo-1600948836101-f9ffda59d250?w=1400&h=600&fit=crop&q=80')}

.soin-detail{
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;
  margin-bottom:4rem;
}
.soin-detail:nth-child(even){direction:rtl}
.soin-detail:nth-child(even) > *{direction:ltr}
.soin-detail-img{
  height:350px;border-radius:var(--radius);
  background-size:cover;background-position:center;
  box-shadow:var(--shadow);
}
.soin-detail-content ul{padding-left:0;margin:1rem 0}
.soin-detail-content li{
  padding:.5rem 0 .5rem 1.5rem;
  position:relative;color:var(--text-light);
}
.soin-detail-content li::before{
  content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:8px;height:8px;border-radius:50%;background:var(--rose-gold);
}

@media(max-width:768px){
  .soin-detail{grid-template-columns:1fr}
  .soin-detail:nth-child(even){direction:ltr}
  .soin-detail-img{height:250px}
}

/* ===== TARIFS PAGE ===== */
.tarif-category{margin-bottom:3rem}
.tarif-category h3{
  color:var(--rose-gold);padding-bottom:.8rem;
  border-bottom:2px solid var(--blush);margin-bottom:1.2rem;
}
.tarif-table{width:100%;border-collapse:collapse}
.tarif-table tr{border-bottom:1px solid var(--blush)}
.tarif-table td{padding:.9rem .5rem}
.tarif-table td:first-child{color:var(--text)}
.tarif-table td:last-child{
  text-align:right;font-weight:600;color:var(--rose-gold);
  white-space:nowrap;
}
.tarif-note{
  background:var(--blush);padding:1.5rem;border-radius:var(--radius);
  margin-top:2rem;text-align:center;color:var(--text-light);
  font-style:italic;
}

/* ===== CONTACT PAGE ===== */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem}
.contact-form{
  background:var(--white);padding:2.5rem;border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.form-group{margin-bottom:1.5rem}
.form-group label{
  display:block;margin-bottom:.4rem;font-weight:500;
  font-size:.9rem;color:var(--text);
}
.form-group input,.form-group textarea,.form-group select{
  width:100%;padding:.85rem 1rem;border:1px solid var(--cream-dark);
  border-radius:8px;font-family:inherit;font-size:.95rem;
  transition:border-color var(--transition);
  background:var(--cream);
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{
  outline:none;border-color:var(--rose-gold);
  box-shadow:0 0 0 3px rgba(183,110,121,.1);
}
.form-group textarea{resize:vertical;min-height:140px}

.contact-info-card{
  background:var(--white);padding:2rem;border-radius:var(--radius);
  box-shadow:var(--shadow);margin-bottom:1.5rem;
}
.contact-info-card h3{color:var(--rose-gold);margin-bottom:1rem}
.contact-info-item{
  display:flex;gap:1rem;align-items:flex-start;margin-bottom:1rem;
}
.contact-info-icon{
  width:42px;height:42px;border-radius:50%;background:var(--blush);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  color:var(--rose-gold);font-size:1.1rem;
}
.map-container{
  border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow);margin-top:1.5rem;
}
.map-container iframe{width:100%;height:300px;border:none}

@media(max-width:768px){
  .contact-grid{grid-template-columns:1fr}
}

/* ===== FAQ ===== */
.faq-item{
  background:var(--white);border-radius:var(--radius);
  margin-bottom:1rem;box-shadow:0 2px 12px rgba(183,110,121,.06);
  overflow:hidden;
}
.faq-question{
  padding:1.2rem 1.5rem;cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;
  font-weight:600;color:var(--text);
  transition:background var(--transition);
}
.faq-question:hover{background:var(--blush)}
.faq-question::after{
  content:'+';font-size:1.5rem;color:var(--rose-gold);
  transition:transform var(--transition);
}
.faq-item.open .faq-question::after{transform:rotate(45deg)}
.faq-answer{
  max-height:0;overflow:hidden;transition:max-height .4s ease,padding .4s ease;
}
.faq-item.open .faq-answer{max-height:500px;padding:0 1.5rem 1.2rem}
.faq-answer p{color:var(--text-light);margin:0}

/* ===== FOOTER ===== */
footer{
  background:var(--text);color:rgba(255,255,255,.7);
  padding:4rem 1.5rem 2rem;
}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2rem;
  max-width:1200px;margin:0 auto;
}
.footer-brand{margin-bottom:1rem}
.footer-brand .logo{color:var(--rose-gold-light)}
.footer-brand p{margin-top:.8rem;font-size:.9rem;line-height:1.6}
footer h4{color:var(--white);margin-bottom:1rem;font-size:1rem}
footer a{color:rgba(255,255,255,.7);font-size:.9rem}
footer a:hover{color:var(--rose-gold-light)}
footer ul li{margin-bottom:.6rem}
.footer-bottom{
  max-width:1200px;margin:2.5rem auto 0;padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.1);
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;font-size:.85rem;
}
.footer-links{display:flex;gap:1.5rem;flex-wrap:wrap}
.footer-links a{font-size:.85rem}

@media(max-width:768px){
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-bottom{flex-direction:column;text-align:center}
}
@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr}
}

/* ===== 404 PAGE ===== */
.page-404{
  min-height:80vh;display:flex;flex-direction:column;
  align-items:center;justify-content:center;text-align:center;
  padding:2rem;
}
.page-404 h1{font-size:clamp(5rem,15vw,10rem);color:var(--rose-gold-light);line-height:1;margin-bottom:1rem}
.page-404 h2{margin-bottom:1rem}
.page-404 p{color:var(--text-light);margin-bottom:2rem;max-width:500px}

/* ===== BREADCRUMB ===== */
.breadcrumb{
  padding:.8rem 0;font-size:.85rem;color:var(--text-light);
}
.breadcrumb a{color:var(--rose-gold)}
.breadcrumb span{margin:0 .4rem}

/* ===== UTILITIES ===== */
.text-center{text-align:center}
.mt-2{margin-top:2rem}
.mb-2{margin-bottom:2rem}
.bg-white{background:var(--white)}
.bg-blush{background:var(--blush)}
