@charset "UTF-8";
/* CSS Document */
/* ===== Thème Prune & Safran — diagonal hero ===== */ :root {
  --bg: #0f1216; /* ardoise nuit */
  --paper: #141923; /* cartes */
  --ink: #eef3fa; /* texte */
  --muted: #9aabc0; /* secondaire */
  --prune: #7c3aed; /* violet */
  --safran: #f59e0b; /* or */
  --line: #232b3a; /* filets */
  --radius: 18px;
  --shadow: 0 18px 42px rgba(0, 0, 0, .46);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 8% -10%, rgba(124, 58, 237, .18), transparent 60%), radial-gradient(900px 520px at 100% 0%, rgba(245, 158, 11, .14), transparent 55%), var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
}
a {
  color: #c3b7ff;
  text-decoration: none
}
a:hover {
  text-decoration: underline
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px
}
/* ===== Barre haute ===== */
.mast {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(15, 18, 22, .78);
  backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--line)
}
.mast-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px
}
.logo {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: conic-gradient(from 210deg, #efe7ff, var(--prune), #2b1262, var(--safran), #efe7ff);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .06), var(--shadow)
}
.logo svg {
  width: 34px;
  height: 34px;
  fill: #1b1038
}
.title {
  font-weight: 1000;
  letter-spacing: .2px;
  font-size: clamp(18px, 3.2vw, 22px)
}
.call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--prune), var(--safran));
  color: #140c24;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(124, 58, 237, .28)
}
.call:hover {
  filter: brightness(1.05);
  text-decoration: none
}
/* ===== Ruban coordonnées ===== */
.coords {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px
}
.coords-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0
}
/* ===== HERO diagonal ===== */
.hero {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  border-bottom: 1px solid var(--line)
}
@media(max-width:980px) {
  .hero {
    grid-template-columns: 1fr
  }
}
.hero-photo {
  position: relative;
  min-height: 360px;
  overflow: hidden
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('couvreur_chauray.jpg') center/cover no-repeat;
  filter: brightness(.78) saturate(1.04);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0% 100%);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .55));
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0% 100%);
}
.hero-text {
  display: grid;
  place-items: center;
  padding: 30px
}
.hero-inner {
  max-width: 580px
}
.hero h1 {
  font-size: clamp(24px, 5vw, 40px);
  line-height: 1.15;
  margin: 0 0 8px
}
.hero p {
  color: #d9e4f7
}
.badges {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}
.pill {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
  color: #e9effa;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px
}
/* ===== Navigation section (points) ===== */
nav.sections {
  position: sticky;
  top: 76px;
  z-index: 50;
  background: rgba(15, 18, 22, .6);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line)
}
.dots {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 10px 0
}
.dot {
  display: inline-flex;
  gap: 8px;
  align-items: center
}
.dot a {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--prune), var(--safran))
}
.dot span {
  color: #c6d2e7;
  font-size: 12px
}
/* ===== Sections ===== */
section {
  padding: 56px 0
}
h2.sec {
  text-align: center;
  font-size: 26px;
  color: #e9d5ff;
  margin: 0 0 22px
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px
}
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow)
}
.card h3 {
  margin: 6px 0 8px;
  color: #ffe6c2
}
.card p, .card li {
  color: #d6e0f1
}
ul.list {
  padding-left: 18px;
  margin: 0
}
li {
  margin: 6px 0
}
.ico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--prune), var(--safran))
}
.ico svg {
  width: 18px;
  height: 18px;
  fill: #1b1038
}
/* ===== Bandeau simple ===== */
.note {
  text-align: center;
  color: #c7d3ea;
  font-size: 14px;
  margin-top: 4px
}
/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--line);
  text-align: center;
  color: #9fb0c9;
  padding: 22px 0 34px
}
footer a {
  color: #d6ccff
}
.copyright {
  margin-top: 8px;
  color: #7f8aa0;
  font-size: 13px
}