/* assets/front/css/pages-static.css */

@charset "UTF-8";

/* ===========================
   PAGES INTERNES / LÉGALES
=========================== */

.page-static{
  background: var(--off-white);
  min-height: 100vh;
}

.page-static-top{
  padding: 150px 6% 40px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color:#fff;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.page-static-top::before{
  content:"";
  position:absolute;
  top:-100px;
  left:-100px;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
}

.page-static-top::after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(255,255,255,.04);
}

.page-static-top-inner{
  max-width:900px;
  margin:auto;
  position:relative;
  z-index:1;
}

.page-static-kicker{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  margin-bottom:14px;
}

.page-static-top h1{
  font-family:var(--font-cormorant);
  font-size:clamp(2.2rem,4vw,3.8rem);
  font-weight:700;
  line-height:1.05;
  color:#fff;
  margin-bottom:12px;
}

.page-static-top p{
  max-width:760px;
  margin:auto;
  font-size:1rem;
  line-height:1.8;
  color:rgba(255,255,255,.82);
}

.page-static-body{
  padding:50px 6% 90px;
}

.page-static-wrap{
  max-width:1100px;
  margin:auto;
}

.page-static-card{
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
  padding:42px;
}

.page-static-card.narrow{
  max-width:860px;
  margin:auto;
}

.page-static-content{
  color:var(--gray-600);
  font-size:.98rem;
  line-height:1.9;
    text-align: left;
}

.page-static-content h2{
  font-family:var(--font-cormorant);
  font-size:2rem;
  font-weight:700;
  color:var(--blue);
  margin:34px 0 14px;
  line-height:1.15;
}

.page-static-content h3{
  font-size:1.15rem;
  font-weight:600;
  color:var(--dark);
  margin:28px 0 12px;
}

.page-static-content p{
  margin-bottom:16px;
}

.page-static-content ul,
.page-static-content ol{
  margin:0 0 18px 22px;
}

.page-static-content li{
  margin-bottom:8px;
}

.page-static-content a{
  color:var(--blue);
  text-decoration:underline;
}

.page-static-content strong{
  color:var(--dark);
}

.page-static-content hr{
  border:0;
  height:1px;
  background:var(--gray-200);
  margin:30px 0;
}

.page-static-meta{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid var(--gray-200);
  font-size:.86rem;
  color:var(--gray-400);
}

/* 404 */
.page-404-box{
  text-align:center;
  padding:10px 0;
}

.page-404-code{
  font-family:var(--font-cormorant);
  font-size:clamp(5rem,14vw,9rem);
  font-weight:700;
  line-height:.9;
  color:var(--blue);
  margin-bottom:12px;
}

.page-404-title{
  font-family:var(--font-cormorant);
  font-size:clamp(1.8rem,3vw,2.7rem);
  font-weight:700;
  color:var(--dark);
  margin-bottom:10px;
}

.page-404-text{
  max-width:680px;
  margin:0 auto 28px;
  color:var(--gray-600);
  line-height:1.8;
}

.page-404-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.page-404-actions a{
  min-width:220px;
  justify-content:center;
}
/*500*/
.page-error-box{
  text-align:center;
  padding:10px 0;
}

.page-error-code{
  font-family:var(--font-cormorant);
  font-size:clamp(5rem,14vw,9rem);
  font-weight:700;
  line-height:.9;
  color:var(--blue);
  margin-bottom:12px;
}

.page-error-title{
  font-family:var(--font-cormorant);
  font-size:clamp(1.8rem,3vw,2.7rem);
  font-weight:700;
  color:var(--dark);
  margin-bottom:10px;
}

.page-error-text{
  max-width:680px;
  margin:0 auto 28px;
  color:var(--gray-600);
  line-height:1.8;
}

.page-error-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.page-error-actions a{
  min-width:220px;
  justify-content:center;
}
/*500*/
.page-static-cta{
  margin-top:24px;
  padding:20px 22px;
  background:var(--gold-pale);
  border:1px solid rgba(184,146,42,.2);
  border-radius:var(--radius);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.page-static-cta p{
  margin:0;
  color:var(--dark);
  font-size:.92rem;
}
.page-static-list{
  margin:0 0 18px 0;
  padding-left:0;
  list-style:none;
}

.page-static-list li{
  position:relative;
  padding-left:22px;
  margin-bottom:10px;
  color:var(--gray-600);
  line-height:1.8;
}

.page-static-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.78em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
  transform:translateY(-50%);
}

.page-static-list--ordered{
  counter-reset:item;
  margin:0 0 18px 0;
  padding-left:0;
  list-style:none;
}

.page-static-list--ordered li{
  position:relative;
  padding-left:34px;
  margin-bottom:10px;
  color:var(--gray-600);
  line-height:1.8;
}

.page-static-list--ordered li::before{
  counter-increment:item;
  content:counter(item);
  position:absolute;
  left:0;
  top:2px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--blue-light);
  color:var(--blue);
  font-size:.78rem;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
}

.page-static-list--check li::before{
  content:"✓";
  width:18px;
  height:18px;
  background:none;
  color:var(--blue);
  font-weight:700;
  top:1px;
  transform:none;
}

.page-static-list--dash li::before{
  content:"—";
  width:auto;
  height:auto;
  background:none;
  color:var(--gold);
  top:0;
  transform:none;
}
@media(max-width:768px){
  .page-static-top{
    padding:120px 20px 34px;
  }

  .page-static-body{
    padding:36px 20px 70px;
  }

  .page-static-card{
    padding:26px 20px;
  }

  .page-static-content{
    font-size:.94rem;
    line-height:1.8;
  }

  .page-static-cta{
    flex-direction:column;
    align-items:stretch;
    text-align:center;
  }
}