:root{
  --bleu:#16324F;
  --bleu-2:#20496f;
  --orange:#F29B4B;
  --blanc:#F7F8FA;
  --white:#FFFFFF;
  --texte:#2B2B2B;
  --muted:#667085;
  --sauge:#7C9485;
  --shadow:0 18px 45px rgba(22,50,79,.14);
  --radius:26px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,sans-serif;
  background:var(--blanc);
  color:var(--texte);
  line-height:1.6;
}
a{color:inherit}
img{max-width:100%}

.container{
  width:min(1120px,84%);
  margin:auto;
}

/* Header */
.site-header{
  background:#fff;
  color:var(--bleu);
  position:sticky;
  top:0;
  z-index:20;
  box-shadow:0 8px 25px rgba(22,50,79,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:5px 0;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand-logo{
  height:150px;
  max-height:150px;
  max-width:620px;
  width:auto;
  object-fit:contain;
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}

.nav a{
  color:var(--bleu);
  text-decoration:none;
  font-weight:800;
  font-size:.95rem;
}

.nav a:hover{color:var(--orange)}

.nav .admin-link{
  padding:9px 15px;
  border:1px solid rgba(22,50,79,.25);
  border-radius:999px;
}

/* Hero */
.hero{
  background:radial-gradient(circle at top right,rgba(242,155,75,.28),transparent 34%),linear-gradient(135deg,var(--bleu),var(--bleu-2));
  color:white;
  padding:82px 0 68px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:34px;
  align-items:center;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(124,148,133,.9);
  color:white;
  padding:8px 15px;
  border-radius:999px;
  font-weight:800;
  font-size:.9rem;
}

h1{
  font-size:clamp(2.2rem,5vw,4.4rem);
  line-height:1.04;
  letter-spacing:-.06em;
  margin:18px 0;
}

h2{
  font-size:clamp(1.8rem,3vw,2.6rem);
  line-height:1.15;
  letter-spacing:-.04em;
  color:var(--bleu);
  margin:0 0 16px;
}

h3{
  color:var(--bleu);
  margin-top:0;
  font-size:1.25rem;
}

.hero p{
  font-size:1.18rem;
  max-width:720px;
  color:rgba(255,255,255,.88);
}

.hero-card{
  background:white;
  color:var(--texte);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}

.hero-card strong{color:var(--bleu)}

.hours{
  font-size:1.7rem;
  font-weight:900;
  color:var(--orange);
  line-height:1.15;
}

/* Sections */
.section{padding:62px 0}
.section.alt{background:white}

.page-hero{
  background:linear-gradient(135deg,var(--bleu),var(--bleu-2));
  color:white;
  padding:58px 0;
}

.page-hero h1{
  font-size:clamp(2rem,4vw,3.4rem);
}

.breadcrumb{
  opacity:.8;
  font-weight:800;
}

.lead{
  color:var(--muted);
  font-size:1.08rem;
  max-width:760px;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
  margin-top:26px;
}

.card{
  background:white;
  padding:26px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(22,50,79,.06);
}

.alt .card{background:var(--blanc)}

.card a{
  color:var(--bleu);
  font-weight:900;
}

.icon{
  width:48px;
  height:48px;
  border-radius:17px;
  background:rgba(242,155,75,.18);
  display:grid;
  place-items:center;
  font-size:1.45rem;
  margin-bottom:12px;
}

.badge{
  display:inline-block;
  background:rgba(124,148,133,.14);
  color:var(--sauge);
  padding:7px 13px;
  border-radius:999px;
  font-weight:900;
  font-size:.86rem;
}

.notice{
  background:#fff7ed;
  border:1px solid rgba(242,155,75,.35);
  border-radius:22px;
  padding:18px 22px;
  color:#7a430e;
  margin:22px 0;
}

.price{
  font-size:2rem;
  color:var(--orange);
  font-weight:900;
  margin:.2em 0;
}

.list{padding-left:20px}
.list li{margin:9px 0}

/* Buttons */
.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--orange);
  color:var(--bleu);
  padding:14px 22px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  border:none;
  cursor:pointer;
}

.btn.secondary{
  background:white;
  color:var(--bleu);
}

/* Forms & tables */
.form{display:grid;gap:14px}

input,textarea,select{
  width:100%;
  padding:13px 14px;
  border:1px solid #d8dde5;
  border-radius:14px;
  font:inherit;
}

textarea{min-height:130px}

.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:18px;
  background:white;
  box-shadow:var(--shadow);
}

.table th,.table td{
  text-align:left;
  padding:16px;
  border-bottom:1px solid #eef0f3;
}

.table th{
  background:var(--bleu);
  color:white;
}

/* Admin */
.admin-box{
  max-width:450px;
  margin:75px auto;
  background:white;
  padding:34px;
  border-radius:24px;
  box-shadow:var(--shadow);
}

.admin-box .brand-logo{
  margin:auto;
  display:block;
}

.admin-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}

/* Footer */
.footer{
  background:var(--bleu);
  color:white;
  padding:34px 0;
  margin-top:40px;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.small{
  font-size:.92rem;
  color:var(--muted);
}

.footer .small{
  color:rgba(255,255,255,.72);
}

/* Mobile */
@media(max-width:820px){
  .container{
    width:min(92%,1120px);
  }

  .header-inner{
    align-items:center;
    flex-direction:column;
    gap:8px;
  }

  .brand-logo{
    height:95px;
    max-height:95px;
    max-width:380px;
  }

  .nav{
    justify-content:center;
    gap:12px;
  }

  .hero{
    padding:56px 0;
  }

  .hero-grid,
  .grid-2{
    grid-template-columns:1fr;
  }
}
