/* PROTECTO — site public. Sombre, tranché, jaune. Les angles biseautés
   reprennent le cadre du logo ; tout le texte d'affichage est en Barlow Condensed. */

:root {
  --ink: #0a0a0c;
  --ink-2: #111114;
  --ink-3: #18181c;
  --ink-4: #222228;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --yellow: #ffcc00;
  --yellow-2: #f5b800;
  --yellow-ink: #7a5c00;
  --paper: #f6f3ea;
  --text: #f4f4f1;
  --muted: #a9a9b1;
  --dim: #74747c;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", "Segoe UI", sans-serif;
  --cut: 22px;
  --cut-sm: 12px;
  --max: 1240px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.ic {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
  vertical-align: -0.2em;
}

.wrap {
  width: min(var(--max), calc(100% - 2 * clamp(16px, 4vw, 40px)));
  margin-inline: auto;
}

[hidden] {
  display: none !important;
}

/* ---- Biseaux ---- */
.cut {
  clip-path: polygon(
    var(--cut) 0,
    100% 0,
    100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%,
    0 100%,
    0 var(--cut)
  );
}
.cut-sm {
  clip-path: polygon(
    var(--cut-sm) 0,
    100% 0,
    100% calc(100% - var(--cut-sm)),
    calc(100% - var(--cut-sm)) 100%,
    0 100%,
    0 var(--cut-sm)
  );
}
.cut-tr {
  clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    var(--cut) 100%,
    0 calc(100% - var(--cut))
  );
}

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  background: var(--yellow);
  color: #0a0a0c;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  clip-path: polygon(
    var(--cut-sm) 0,
    100% 0,
    100% calc(100% - var(--cut-sm)),
    calc(100% - var(--cut-sm)) 100%,
    0 100%,
    0 var(--cut-sm)
  );
  transition:
    background 0.18s var(--ease),
    transform 0.18s var(--ease);
}
.btn:hover {
  background: #ffd83a;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn .ic {
  width: 1.05em;
  height: 1.05em;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 2px var(--line-strong);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 2px var(--yellow);
}
.btn--dark {
  background: var(--ink);
  color: var(--text);
}
.btn--dark:hover {
  background: #1f1f24;
}
.btn--lg {
  min-height: 60px;
  padding: 0 34px;
  font-size: 22px;
}
.btn--sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 16px;
}
.btn--block {
  width: 100%;
}
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* ---- Sur-titre et titres de section ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, calc(100% - 3px) 100%, 3px 100%);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  align-items: end;
  gap: 24px 64px;
  margin-bottom: 44px;
}
.section-head h2 {
  margin-top: 16px;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 0.96;
  max-width: 24ch;
  text-wrap: balance;
}
.section-head p {
  max-width: 44ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.section-head--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.section-head--center h2 {
  max-width: 26ch;
}

/* ---- Barre du haut ---- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 38px;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.topbar__list {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topbar__list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar__list a:hover {
  color: var(--yellow);
}
.topbar__social {
  display: flex;
  gap: 8px;
}
.topbar__social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--muted);
}
.topbar__social a:hover {
  color: var(--yellow);
}

/* ---- En-tête ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.header__logo img {
  height: 40px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  position: relative;
  padding: 10px 14px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.nav a:hover,
.nav a.is-active {
  color: var(--text);
}
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 3px;
  background: var(--yellow);
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.header__phone .ic {
  color: var(--yellow);
}
.burger {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--text);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  z-index: 49;
  padding: 24px clamp(16px, 4vw, 40px) 40px;
  background: var(--ink);
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
}
.mobile-nav .btn {
  margin-top: 20px;
}

/* ---- Héros ---- */
.hero {
  position: relative;
  min-height: min(calc(100svh - 112px), 1000px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.04);
  animation: hero-in 2.4s var(--ease) both;
}
@keyframes hero-in {
  from {
    transform: scale(1.12);
    filter: brightness(0.6);
  }
  to {
    transform: scale(1.04);
    filter: brightness(1);
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 12, 0.94) 0%,
      rgba(10, 10, 12, 0.74) 46%,
      rgba(10, 10, 12, 0.12) 78%
    ),
    linear-gradient(0deg, var(--ink) 0%, rgba(10, 10, 12, 0.2) 45%, rgba(10, 10, 12, 0.35) 100%);
}
.hero::after {
  /* Biseau jaune : le trait du logo en bas de l'image. */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: var(--yellow);
}
.hero__inner {
  padding: 88px 0 120px;
  max-width: 980px;
}
.hero .eyebrow {
  font-size: 15px;
  letter-spacing: 0.3em;
}
.hero h1 {
  margin: 28px 0 32px;
  font-size: clamp(56px, 7vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero__lead {
  max-width: 64ch;
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.6;
  color: #d7d7db;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 48px 0 0;
  padding: 26px 0 0;
  max-width: 720px;
  border-top: 1px solid var(--line-strong);
  list-style: none;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__pills li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--yellow);
  transform: rotate(45deg);
}
.hero__badge {
  position: absolute;
  right: clamp(16px, 4vw, 40px);
  bottom: 72px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
}
.hero__badge .ic {
  width: 34px;
  height: 34px;
  color: var(--yellow);
}
.hero__badge strong {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}
.hero__badge span {
  font-size: 13px;
  color: var(--muted);
}

/* ---- Sections ---- */
.section {
  padding: clamp(64px, 8vw, 120px) 0;
}
.section--tight {
  padding: clamp(40px, 5vw, 72px) 0;
}
.section--alt {
  background: var(--ink-2);
}
.section--paper {
  background: var(--paper);
  color: #14140f;
}
.section--paper .eyebrow {
  color: var(--yellow-ink);
}
.section--paper .eyebrow::before {
  background: var(--yellow-ink);
}
.section--paper .section-head p {
  color: #4b4b44;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  padding: 26px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-3);
  color: var(--text);
}
.service-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    0deg,
    rgba(10, 10, 12, 0.96) 0%,
    rgba(10, 10, 12, 0.55) 45%,
    rgba(10, 10, 12, 0.08) 100%
  );
  transition: opacity 0.4s;
}
.service-tile:hover img {
  transform: scale(1.06);
}
.service-tile__num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--yellow);
}
.service-tile h3 {
  font-size: 34px;
  margin-bottom: 8px;
}
.service-tile p {
  color: #cfcfd4;
  font-size: 15px;
  max-width: 30ch;
}
.service-tile__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-tile__foot .ic {
  color: var(--yellow);
  transition: transform 0.2s;
}
.service-tile:hover .service-tile__foot .ic {
  transform: translateX(4px);
}
.service-tile--wide {
  grid-column: span 2;
}

/* ---- Pourquoi ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.why {
  padding: 28px 24px 30px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  transition:
    border-color 0.2s,
    transform 0.2s var(--ease);
}
.why:hover {
  border-color: rgba(255, 204, 0, 0.5);
  transform: translateY(-3px);
}
.why__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  background: var(--yellow);
  color: #0a0a0c;
  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
}
.why__icon .ic {
  width: 30px;
  height: 30px;
}
.why h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.why p {
  color: var(--muted);
  font-size: 15px;
}

/* ---- Bloc image + texte ---- */
.feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.feature--flip .feature__media {
  order: 2;
}
.feature__media {
  position: relative;
}
.feature__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.feature__media::after {
  /* Cadre jaune décalé : le cadre du logo. */
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 3px solid var(--yellow);
  clip-path: polygon(
    var(--cut) 0,
    100% 0,
    100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%,
    0 100%,
    0 var(--cut)
  );
}
.feature__stamp {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  background: var(--yellow);
  color: #0a0a0c;
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  clip-path: polygon(
    14px 0,
    100% 0,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0 100%,
    0 14px
  );
}
.feature__stamp strong {
  display: block;
  font-size: 44px;
}
.feature__stamp span {
  font-size: 13px;
  letter-spacing: 0.1em;
}
.feature h2 {
  margin: 14px 0 18px;
  font-size: clamp(36px, 4.2vw, 56px);
  text-wrap: balance;
}
.feature p {
  color: var(--muted);
  font-size: 18px;
}
.checks {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 17px;
}
.checks .ic {
  width: 26px;
  height: 26px;
  padding: 4px;
  background: var(--yellow);
  color: #0a0a0c;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.feature .btn {
  margin-top: 30px;
}

/* ---- Étapes ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.step {
  position: relative;
  padding: 30px 26px 30px;
  background: var(--ink-3);
  border-top: 4px solid var(--yellow);
}
.step__num {
  font-family: var(--display);
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 204, 0, 0.16);
}
.step h3 {
  margin-top: -14px;
  font-size: 30px;
}
.step p {
  margin-top: 10px;
  color: var(--muted);
}

/* ---- Bande chiffres ---- */
.stats {
  position: relative;
  padding: 26px 0;
  background: var(--yellow);
  color: #0a0a0c;
  transform: skewY(-1.8deg);
}
.stats > .wrap {
  transform: skewY(1.8deg);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.stat {
  padding: 14px 18px;
  border-left: 3px solid rgba(10, 10, 12, 0.35);
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---- Avis ---- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.review {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--ink-3);
  border: 1px solid var(--line);
}
.review__stars {
  display: flex;
  gap: 2px;
  color: var(--yellow);
}
.review__stars .ic {
  width: 18px;
  height: 18px;
}
.review p {
  font-size: 17px;
  color: #d9d9de;
}
.review footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--muted);
  font-size: 14px;
}
.review footer strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
}
.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--ink-4);
  border: 1px solid var(--line-strong);
  font-family: var(--display);
  font-weight: 800;
  color: var(--yellow);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* ---- Appel à l'action ---- */
.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px);
  background: var(--paper);
  color: #14140f;
  text-align: center;
}
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 26px solid var(--yellow);
  border-radius: 50%;
  opacity: 0.9;
}
.cta::before {
  left: -190px;
  top: -190px;
}
.cta::after {
  right: -190px;
  bottom: -190px;
}
.cta > * {
  position: relative;
}
.cta h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  max-width: 28ch;
  text-wrap: balance;
  margin: 12px auto 12px;
}
.cta p {
  max-width: 54ch;
  margin: 0 auto 26px;
  color: #4b4b44;
  font-size: 18px;
}
.cta .eyebrow {
  color: var(--yellow-ink);
}
.cta .eyebrow::before {
  background: var(--yellow-ink);
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.cta .btn--ghost {
  color: #14140f;
  box-shadow: inset 0 0 0 2px #14140f;
}

/* ---- Pied de page ---- */
.footer {
  padding: 64px 0 28px;
  background: #060607;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer__brand img {
  height: 44px;
  width: auto;
  margin-bottom: 18px;
}
.footer__brand p {
  max-width: 34ch;
}
.footer h4 {
  margin-bottom: 14px;
  font-size: 17px;
  letter-spacing: 0.16em;
  color: var(--text);
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.footer a:hover {
  color: var(--yellow);
}
.footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.footer__hours span:last-child {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--dim);
}

/* ---- Pages intérieures ---- */
.page-hero {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 12, 0.94) 0%,
    rgba(10, 10, 12, 0.7) 55%,
    rgba(10, 10, 12, 0.35) 100%
  );
}
.page-hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(46px, 7vw, 92px);
}
.page-hero p {
  max-width: 56ch;
  color: #d7d7db;
  font-size: 19px;
}

/* Catégories de services (page Services) */
.cat {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
}
.cat__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.cat__head h2 {
  margin: 10px 0 10px;
  font-size: clamp(34px, 4vw, 50px);
}
.cat__head p {
  color: var(--muted);
  max-width: 60ch;
}
.cat__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.svc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  transition: border-color 0.2s;
}
.svc:hover {
  border-color: rgba(255, 204, 0, 0.5);
}
.svc h3 {
  font-size: 24px;
}
.svc p {
  color: var(--muted);
  font-size: 15px;
}
.svc__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.svc__price {
  color: var(--yellow);
  font-size: 20px;
}
.svc__meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
}
.svc__meta a:hover {
  color: var(--yellow);
}
.svc--bundle {
  border-color: rgba(255, 204, 0, 0.45);
  background: linear-gradient(160deg, rgba(255, 204, 0, 0.12), transparent 60%), var(--ink-3);
}
.tag {
  display: inline-block;
  padding: 3px 9px;
  background: var(--yellow);
  color: #0a0a0c;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

/* Grille tarifaire (lue dans l'API) */
.tarifs {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.tarifs th,
.tarifs td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.tarifs th {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.tarifs td.num {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
}
.tarifs tr.cat-row td {
  padding-top: 26px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  border-bottom-color: var(--yellow);
}
.tarifs small {
  display: block;
  color: var(--muted);
}

/* ---- Formulaires ---- */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font: inherit;
  font-size: 17px;
  border-radius: 0;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--dim);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--yellow);
  outline: none;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field small {
  color: var(--dim);
  font-size: 13px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-grid .span-2 {
  grid-column: span 2;
}
.check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 15px;
  color: var(--muted);
  cursor: pointer;
}
.check input {
  width: 22px;
  height: 22px;
  accent-color: var(--yellow);
}
.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255, 204, 0, 0.1);
  border-left: 3px solid var(--yellow);
  color: #e8e8ea;
  font-size: 15px;
}
.notice .ic {
  color: var(--yellow);
  width: 22px;
  height: 22px;
}
.notice--ok {
  background: rgba(60, 200, 120, 0.12);
  border-left-color: #3cc878;
}
.notice--ok .ic {
  color: #3cc878;
}
.notice--err {
  background: rgba(230, 80, 80, 0.12);
  border-left-color: #e65050;
}
.notice--err .ic {
  color: #e65050;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--ink-3);
  border: 1px solid var(--line);
}
.contact-list li > span {
  flex: 1;
  min-width: 0;
}
.contact-list .ic {
  width: 26px;
  height: 26px;
  color: var(--yellow);
}
.contact-list strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
}
.contact-list a:hover {
  color: var(--yellow);
}
.hours-table {
  display: grid;
  width: 100%;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hours-table li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.hours-table li.is-today {
  color: var(--yellow);
}
.map {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(1.05);
}

/* ---- Équipe (page Atelier) ---- */
.team {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.member {
  padding: 26px 22px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-top: 4px solid var(--tech, var(--yellow));
}
.member .avatar {
  width: 64px;
  height: 64px;
  font-size: 26px;
  margin-bottom: 16px;
}
.member h3 {
  font-size: 26px;
}
.member p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}
.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.brands span {
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Apparition au défilement ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__img {
    animation: none;
  }
}

/* ---- Réservation ---- */
.book {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 28px;
}
.stepper button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 6px 12px 0;
  border-bottom: 3px solid var(--line);
  color: var(--dim);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
}
.stepper button b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--ink-4);
  color: var(--muted);
  font-size: 14px;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.stepper button.is-done {
  color: var(--text);
  border-bottom-color: var(--yellow);
}
.stepper button.is-done b {
  background: var(--yellow);
  color: #0a0a0c;
}
.stepper button.is-current {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.stepper button.is-current b {
  background: var(--yellow);
  color: #0a0a0c;
}
.pane {
  display: none;
}
.pane.is-active {
  display: block;
}
.pane h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-bottom: 6px;
}
.pane > p.lead {
  color: var(--muted);
  margin-bottom: 22px;
}
.pane__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* Choix des services */
.pick-group {
  margin-bottom: 22px;
}
.pick-group h3 {
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--yellow);
}
.pick-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.pick {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.pick:hover {
  border-color: var(--line-strong);
}
.pick.is-on {
  border-color: var(--yellow);
  background: rgba(255, 204, 0, 0.08);
}
.pick input {
  width: 22px;
  height: 22px;
  accent-color: var(--yellow);
}
.pick__name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
}
.pick__desc {
  display: block;
  margin-top: 2px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.pick__price {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  color: var(--yellow);
  text-align: right;
  white-space: nowrap;
}
.pick__price small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--dim);
}

/* Calendrier */
.cal {
  background: var(--ink-3);
  border: 1px solid var(--line);
}
.cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.cal__head h3 {
  font-size: 26px;
}
.cal__nav {
  display: flex;
  gap: 6px;
}
.cal__nav button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.cal__nav button:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.cal__nav button:disabled {
  opacity: 0.3;
}
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  padding: 12px;
}
.cal__wd {
  padding: 6px 0 8px;
  text-align: center;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 62px;
  border: 1px solid var(--line);
  color: var(--dim);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.day small {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.day--out {
  opacity: 0.25;
}
.day--ok {
  color: var(--text);
  border-color: rgba(255, 204, 0, 0.35);
  cursor: pointer;
}
.day--ok small {
  color: var(--yellow);
}
.day--ok:hover {
  background: rgba(255, 204, 0, 0.1);
  border-color: var(--yellow);
}
.day--full {
  color: var(--muted);
  background: repeating-linear-gradient(
    135deg,
    transparent 0 6px,
    rgba(255, 255, 255, 0.04) 6px 12px
  );
}
.day--closed {
  color: var(--dim);
}
.day--past {
  opacity: 0.3;
}
.day.is-selected {
  background: var(--yellow);
  color: #0a0a0c;
  border-color: var(--yellow);
}
.day.is-selected small {
  color: #0a0a0c;
}
.day.is-today {
  box-shadow: inset 0 0 0 2px rgba(255, 204, 0, 0.5);
}
.cal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 10px 16px 14px;
  font-size: 13px;
  color: var(--muted);
}
.cal__legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cal__legend i {
  width: 12px;
  height: 12px;
  border: 1px solid var(--line-strong);
}
.cal__legend .l-ok {
  border-color: var(--yellow);
}
.cal__legend .l-full {
  background: repeating-linear-gradient(
    135deg,
    transparent 0 3px,
    rgba(255, 255, 255, 0.2) 3px 6px
  );
}
.slots {
  margin-top: 20px;
}
.slots h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.slots__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.slot {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}
.slot:hover {
  border-color: var(--yellow);
}
.slot.is-on {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0a0a0c;
}
.slots__empty {
  color: var(--muted);
}

/* Récapitulatif */
.summary {
  position: sticky;
  top: 96px;
  padding: 22px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
}
.summary h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.summary li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
}
.summary li span:last-child {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.summary .muted {
  color: var(--muted);
}
.summary .disc {
  color: #3cc878;
  font-size: 12px;
}
.summary__totals {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.summary__total {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
}
.summary__deposit {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(255, 204, 0, 0.1);
  border-left: 3px solid var(--yellow);
  font-size: 14px;
}
.summary__deposit strong {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  color: var(--yellow);
}
.summary__when {
  margin-top: 12px;
  font-family: var(--display);
  font-size: 19px;
  text-transform: uppercase;
}
.summary__empty {
  color: var(--dim);
  font-size: 14px;
}
.bundle-offer {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid rgba(255, 204, 0, 0.5);
  font-size: 14px;
}
.bundle-offer .ic {
  color: var(--yellow);
  width: 26px;
  height: 26px;
}
.bundle-offer button {
  margin-left: auto;
  color: var(--yellow);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Paiement */
.pay-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.pay {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  cursor: pointer;
}
.pay.is-on {
  border-color: var(--yellow);
  background: rgba(255, 204, 0, 0.08);
}
.pay input {
  margin-top: 4px;
  width: 22px;
  height: 22px;
  accent-color: var(--yellow);
}
.pay strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
}
.pay span {
  color: var(--muted);
  font-size: 14px;
}
.recap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}
.recap div {
  padding: 14px 16px;
  background: var(--ink-3);
  border: 1px solid var(--line);
}
.recap small {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.recap strong {
  font-size: 18px;
}

/* Confirmation */
.confirm {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.confirm__icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  background: var(--yellow);
  color: #0a0a0c;
  clip-path: polygon(
    16px 0,
    100% 0,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    0 100%,
    0 16px
  );
}
.confirm__icon .ic {
  width: 46px;
  height: 46px;
}
.confirm h1 {
  font-size: clamp(40px, 6vw, 72px);
}
.confirm .lead {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
}
.confirm .recap {
  text-align: left;
}
.confirm__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

/* ---- Réactif ---- */
@media (max-width: 1100px) {
  .services-grid,
  .why-grid,
  .team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-tile--wide {
    grid-column: span 1;
  }
  .stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .book {
    grid-template-columns: 1fr;
  }
  .summary {
    position: static;
  }
  .cat {
    grid-template-columns: 1fr;
  }
  .cat__media img {
    aspect-ratio: 16 / 7;
  }
}
@media (max-width: 860px) {
  .nav,
  .header__phone,
  .topbar {
    display: none;
  }
  .burger {
    display: grid;
  }
  .header__row {
    height: 68px;
  }
  .mobile-nav {
    inset: 68px 0 0;
  }
  .hero {
    display: block;
    min-height: 0;
  }
  .hero__inner {
    padding: 80px 0 40px;
  }
  .hero__badge {
    position: static;
    margin: 0 clamp(16px, 4vw, 40px) 48px;
    width: fit-content;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature,
  .feature--flip .feature__media {
    grid-template-columns: 1fr;
    order: 0;
  }
  .feature__media::after {
    inset: 12px -10px -10px 12px;
  }
  .steps,
  .reviews,
  .contact-grid,
  .pick-list,
  .form-grid,
  .pay-options,
  .recap {
    grid-template-columns: 1fr;
  }
  .form-grid .span-2 {
    grid-column: span 1;
  }
  .stepper button span {
    display: none;
  }
  .cal__grid {
    gap: 4px;
    padding: 8px;
  }
  .day {
    min-height: 54px;
    font-size: 17px;
  }
  .day small {
    font-size: 10px;
  }
}
@media (max-width: 560px) {
  .day__word {
    display: none;
  }
  .day small {
    font-size: 9px;
    letter-spacing: 0.02em;
  }
  .services-grid,
  .why-grid,
  .team,
  .cat__list {
    grid-template-columns: 1fr;
  }
  .service-tile {
    min-height: 320px;
  }
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
  }
  .hero__actions .btn,
  .cta__actions .btn {
    width: 100%;
  }
}
