/* ===== VARIABLES ===== */
:root{
  --gold:#b8892e;
  --gold-soft:#e2c98f;

  --line:rgba(0,0,0,0.07);

  --text:#1b1b1a;
  --muted:#5c564f;

  --bg-main:#e7ded0;
  --bg-light:#f7f1e8;
  --bg-dark:#d3c6b5;

  --header-height:86px;
  --max-width:1180px;
}

*{box-sizing:border-box}
html,body{margin:0}

body{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--text);
  background:
    radial-gradient(circle at 50% 42%, var(--bg-light) 0%, var(--bg-main) 55%, var(--bg-dark) 100%);
}

/* ===== HEADER ===== */
.site-header{
  height:var(--header-height);
  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(20px);

  border-bottom:1px solid rgba(0,0,0,0.06);
  box-shadow:0 6px 24px rgba(0,0,0,0.04);

  position:fixed;
  top:0;
  width:100%;
  z-index:20;

  transition:all 0.35s ease;
}

.site-header.scrolled{
  background:rgba(255,255,255,0.98);
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

/* ===== CONTAINER ===== */
.container{
  width:100%;
  max-width:var(--max-width);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 28px;
}

/* ===== LOGO ===== */
.logo a{
  text-decoration:none;
  color:var(--text);
}

.logo-text{
  font-size:13px;
  letter-spacing:3px;
  transition:0.3s;
}

.logo a:hover .logo-text{
  letter-spacing:3.5px;
  opacity:0.7;
}

/* ===== NAV ===== */
.site-nav{
  display:flex;
  gap:42px;
}

.site-nav a{
  text-decoration:none;
  font-size:13px;
  color:var(--muted);
  letter-spacing:1.2px;
  position:relative;
  transition:0.3s;
}

.site-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:1px;
  background:linear-gradient(90deg,var(--gold-soft),var(--gold));
  transition:0.3s;
}

.site-nav a:hover{
  color:var(--text);
}

.site-nav a:hover::after{
  width:100%;
}

.site-nav a.active{
  color:var(--text);
}

.site-nav a.active::after{
  width:100%;
}

/* ===== PAGE ===== */
.page{
  max-width:1040px;
  margin:auto;
  padding:170px 20px 110px;
  text-align:center;
}

/* ===== HERO ===== */
.hero-section{
  text-align:center;
  margin-bottom:120px;
}

.page-title{
  font-size:42px;
  letter-spacing:3px;
  font-weight:400;
  margin-bottom:30px;
}

.hero-sub{
  margin-top:25px;
  margin-bottom:10px;
  font-size:14px;
  color:var(--muted);
}

/* ===== DIVIDER ===== */
.divider{
  margin:30px 0 10px;
}

.divider svg{
  width:260px;
  opacity:0.95;
}

/* ===== INTRO ===== */
.intro-luxe{
  max-width:720px;
  margin:90px auto;
  text-align:center;
  font-size:16px;
  line-height:1.85;
  color:var(--muted);
}

/* ===== PILIERS ===== */
.pillars{
  display:flex;
  justify-content:space-between;
  gap:60px;
  max-width:900px;
  margin:140px auto;
}

.pillar{
  flex:1;
  text-align:center;
}

.pillar-line{
  width:50px;
  height:1px;
  margin:0 auto 22px;
  background:linear-gradient(90deg,var(--gold-soft),var(--gold));
}

.pillar h3{
  font-size:16px;
  letter-spacing:2.5px;
  font-weight:400;
  margin-bottom:12px;
}

.pillar p{
  font-size:13px;
  color:var(--muted);
}

/* ===== TEXTE ===== */
.text-block.large{
  max-width:760px;
  margin:120px auto;
  text-align:center;
  line-height:1.9;
}

/* ===== HIGHLIGHT ===== */
.highlight{
  background:rgba(255,255,255,0.5);
  padding:70px 50px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

/* ===== APPROCHE ===== */
.approach{
  max-width:800px;
  margin:140px auto;
}

.approach h2{
  text-align:center;
  margin-bottom:70px;
  font-weight:400;
}

.steps{
  display:flex;
  flex-direction:column;
  gap:55px;
}

.step{
  border-left:1px solid var(--line);
  padding-left:22px;
}

.step span{
  display:block;
  font-size:12px;
  color:var(--gold);
  margin-bottom:8px;
}

/* ===== CTA ===== */
.cta{
  text-align:center;
  margin:180px 0 140px;
}

.cta h2{
  font-weight:400;
  margin-bottom:20px;
}

.cta-button{
  display:inline-block;
  margin-top:25px;
  padding:14px 34px;
  border:1px solid var(--gold);
  text-decoration:none;
  color:var(--text);
  font-size:13px;
  letter-spacing:1px;
  transition:all 0.3s ease;
}

.cta-button:hover{
  background:var(--gold);
  color:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* ===== CONTACT ===== */
.contact-form{
  max-width:600px;
  margin:100px auto;
  text-align:left;
}

.form-group{
  display:flex;
  flex-direction:column;
  margin-bottom:30px;
}

.form-group label{
  font-size:13px;
  margin-bottom:8px;
  color:var(--muted);
}

.form-group input,
.form-group textarea{
  padding:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.6);
  font-family:inherit;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--gold);
}

.direct-contact{
  text-align:center;
  margin-top:80px;
  font-size:14px;
}

.direct-contact a{
  display:block;
  margin-top:10px;
  color:var(--gold);
  text-decoration:none;
}

/* ===== FOOTER ===== */
footer{
  text-align:center;
  font-size:12px;
  color:var(--muted);
  padding:30px 0 20px;
  border-top:1px solid var(--line);
  opacity:0.8;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  .pillars{
    flex-direction:column;
    gap:60px;
  }

  .step{
    border-left:none;
    border-top:1px solid var(--line);
    padding-top:20px;
    padding-left:0;
  }

  .container{
    flex-direction:column;
    gap:10px;
  }

  .site-nav{
    gap:16px;
    flex-wrap:wrap;
    justify-content:center;
  }

}

/* ===== ANIMATION SIMPLE ===== */

.fade{
  opacity:0;
  transform:translateY(30px);
  transition:all 0.8s ease;
}

.fade.show{
  opacity:1;
  transform:translateY(0);
}