:root {
  --bg: #F4EFE6;
  --surface: #EBE4D6;
  --fg: #1A1815;
  --muted: #6B6358;
  --accent: oklch(0.62 0.10 65);
  --rule: #1A1815;
  --density: 1;
  --max: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --serif: "Newsreader", "Source Serif Pro", Georgia, serif;
  --sans: "Geist", "Inter", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--fg); color: var(--bg); }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px var(--pad);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, padding .25s ease, background .25s ease, backdrop-filter .25s ease;
}
.topbar--scrolled {
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: color-mix(in oklab, var(--fg) 12%, transparent);
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  height: 30px;
  width: 26px;
  display: block;
  background: var(--accent);
  -webkit-mask: url(assets/logo-mark.png) no-repeat center / contain;
  mask: url(assets/logo-mark.png) no-repeat center / contain;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}
.footer__logo {
  height: 40px;
  width: 34px;
  display: block;
  background: var(--bg);
  -webkit-mask: url(assets/logo-mark.png) no-repeat center / contain;
  mask: url(assets/logo-mark.png) no-repeat center / contain;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}
.brand__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--fg);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
}
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__line { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.brand__line--accent { font-family: var(--serif); font-style: italic; font-size: 18px; letter-spacing: 0; text-transform: none; margin-top: 2px; }

.nav {
  display: flex;
  gap: 6px;
  justify-self: center;
  font-size: 14px;
  padding: 5px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--fg) 4%, transparent);
  border: 1px solid color-mix(in oklab, var(--fg) 7%, transparent);
}
.nav a {
  position: relative;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--fg);
  opacity: 0.72;
  white-space: nowrap;
  transition: opacity .18s ease, background .22s ease, color .18s ease;
}
.nav a:hover { opacity: 1; background: color-mix(in oklab, var(--bg) 70%, var(--surface)); }
.nav a.nav--active { opacity: 1; color: #fff; background: var(--accent); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-in {
  opacity: 1;
  transform: none;
}

/* ---------- Méthode timeline ---------- */
.process__timeline {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px var(--pad) calc(96px * var(--density));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.ptl__item {
  position: relative;
  display: block;
  padding-top: 40px;
}
.ptl__item::before {
  content: "";
  position: absolute;
  left: 8px;
  right: -36px;
  top: 7px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), color-mix(in oklab, var(--accent) 30%, transparent));
}
.ptl__item:last-child::before { display: none; }
.ptl__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  z-index: 1;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 12%, transparent);
  transition: box-shadow .3s ease;
}
.ptl__dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
  transform: scale(0.7);
  transition: transform .3s ease;
}
.ptl__content { padding-top: 0; }
.ptl__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin-bottom: 10px;
  transition: color .3s ease;
}
.ptl__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--fg) 76%, transparent);
  text-wrap: pretty;
}
@media (hover: hover) {
  .ptl__item:hover .ptl__dot { box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 16%, transparent); }
  .ptl__item:hover .ptl__dot::after { transform: scale(1); }
  .ptl__item:hover .ptl__title { color: color-mix(in oklab, var(--fg) 65%, var(--accent)); }
}
@media (max-width: 760px) {
  .process__timeline { grid-template-columns: 1fr; gap: 0; }
  .ptl__item { padding-top: 0; padding-left: 36px; padding-bottom: 40px; }
  .ptl__item:last-child { padding-bottom: 0; }
  .ptl__item::before { left: 7px; right: auto; top: 20px; bottom: -4px; width: 2px; height: auto; background: linear-gradient(to bottom, var(--accent), color-mix(in oklab, var(--accent) 25%, transparent)); }
  .ptl__item:last-child::before { display: none; }
  .ptl__dot { top: 4px; }
}

/* ---------- Tasteful interactions ---------- */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  /* Expertise cards: accent rail slides in on hover */
  .exp-card--link { position: relative; transition: background .3s ease; }
  .exp-card--link::after {
    content: "";
    position: absolute;
    left: 0; bottom: -1px;
    height: 2px; width: 0;
    background: var(--accent);
    transition: width .4s cubic-bezier(0.22,1,0.36,1);
  }
  .exp-card--link:hover::after { width: 100%; }

  /* Value cards: number lifts + colors on hover */
  .value-card { transition: transform .3s ease; }
  .value-card:hover { transform: translateY(-4px); }
  .value-card:hover .value-card__num { color: var(--accent); }

  /* Article titles: animated underline */
  .art-card__title { background-image: linear-gradient(var(--accent), var(--accent)); background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .4s cubic-bezier(0.22,1,0.36,1); padding-bottom: 2px; }
  .art-card:hover .art-card__title { background-size: 100% 1px; }

  /* Process steps: number scales gently */
  .process__item { transition: transform .3s ease; }
  .process__item:hover .process__num { transform: translateX(4px); transition: transform .3s ease; display: inline-block; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* nav-toggle (hamburger) — hidden on desktop */
.nav-toggle { display: none; }
.nav__contact-link { display: none; }

@media (max-width: 860px) {
  .topbar { grid-template-columns: auto 1fr auto; gap: 12px; }
  .topbar__rdv { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    justify-self: end;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 60;
  }
  .nav-toggle__bar {
    display: block;
    width: 22px; height: 2px;
    margin: 0 auto;
    background: var(--fg);
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease;
  }
  .topbar--menu-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .topbar--menu-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
  .topbar--menu-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 4px;
    padding: 80px 24px 40px;
    background: var(--bg);
    border: 0;
    border-radius: 0;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(0.22,1,0.36,1);
    z-index: 55;
  }
  .nav--open { transform: translateX(0); }
  .nav a {
    padding: 18px 12px;
    font-family: var(--serif);
    font-size: 22px;
    opacity: 1;
    border-bottom: 1px solid color-mix(in oklab, var(--fg) 10%, transparent);
    border-radius: 0;
    text-align: left;
  }
  .nav a:hover { background: transparent; }
  .nav a.nav--active { background: transparent; color: var(--accent); }
  .nav__contact-link { display: block; }
}

/* ---------- CTAs ---------- */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
  white-space: nowrap;
}
.cta:hover { transform: translateY(-1px); background: color-mix(in oklab, var(--accent) 85%, black); }
.cta span { transition: transform .25s ease; display: inline-block; }
.cta:hover span { transform: translateX(4px); }
.cta--small { padding: 10px 18px; font-size: 13px; }
.cta--ghost { background: transparent; color: var(--accent); border: 1px solid color-mix(in oklab, var(--accent) 45%, transparent); }
.cta--ghost:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.cta--full { width: 100%; justify-content: center; padding: 18px; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--center { text-align: center; }

/* Section labels — refined editorial mark */
.section__head .eyebrow,
.cshort__body .eyebrow,
.about__body .eyebrow,
.contact__head .eyebrow,
.exp-page__others .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--fg);
}
.section__head .eyebrow::before,
.cshort__body .eyebrow::before,
.about__body .eyebrow::before,
.contact__head .eyebrow::before,
.exp-page__others .eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.eyebrow--center.eyebrow { justify-content: center; }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 8.5vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--accent); }
.hero--editorial .display .dline { display: block; }
.display--center { text-align: center; }

/* Centered editorial hero */
.hero--centered { text-align: center; }
.hero--centered .hero__head { justify-content: center; }
.hero--centered .hero__head .eyebrow { justify-content: center; }
.hero--centered .display { text-align: center; max-width: 18ch; margin-left: auto; margin-right: auto; }
.hero--centered .hero__rule { margin-left: auto; margin-right: auto; }
.hero--centered .hero__foot { grid-template-columns: 1fr; justify-items: center; gap: 32px; }
.hero--centered .lede { margin-left: auto; margin-right: auto; text-align: center; }
.hero--centered .hero__ctas { justify-content: center; }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  text-wrap: balance;
  max-width: 18ch;
}
.h2 em { font-style: italic; color: var(--accent); }
.h2--large { max-width: 12ch; font-size: clamp(40px, 6vw, 88px); }

.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: color-mix(in oklab, var(--fg) 75%, transparent);
  max-width: 56ch;
  text-wrap: pretty;
}
.lede--center { margin: 0 auto; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  padding: calc(40px * var(--density)) var(--pad) calc(80px * var(--density));
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.hero--editorial { padding-top: calc(72px * var(--density)); padding-bottom: calc(120px * var(--density)); }
.hero__aura {
  position: absolute;
  top: -120px; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
  mask: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
}
.hero__aura::before {
  content: none;
}
@keyframes gridPan { from { transform: translateY(0); } to { transform: translateY(48px); } }
.hero__aura-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}
.hero__aura-blob--1 {
  width: 460px; height: 460px;
  top: 0; left: 2%;
  background: radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--accent) 78%, transparent), transparent 70%);
  animation: auraDrift1 22s ease-in-out infinite alternate;
}
.hero__aura-blob--2 {
  width: 380px; height: 380px;
  top: 120px; right: 4%;
  background: radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--accent) 62%, transparent), transparent 70%);
  animation: auraDrift2 28s ease-in-out infinite alternate;
}
.hero__aura-blob--3 {
  width: 320px; height: 320px;
  bottom: -80px; left: 38%;
  background: radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--accent) 50%, transparent), transparent 70%);
  animation: auraDrift3 25s ease-in-out infinite alternate;
}
@keyframes auraDrift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(80px,40px) scale(1.15); } }
@keyframes auraDrift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-60px,50px) scale(1.1); } }
@keyframes auraDrift3 { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,-50px) scale(1.2); } }
@media (prefers-reduced-motion: reduce) {
  .hero__aura-blob { animation: none; }
}
.hero--editorial > *:not(.hero__aura) { position: relative; z-index: 1; }
.hero__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; gap: 12px;
}
.hero__rule {
  height: 1px;
  background: var(--rule);
  margin: 56px 0 32px;
  width: min(280px, 50%);
}
.hero__foot {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px; align-items: end;
  margin-top: 24px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__ctas--center { justify-content: center; }

/* Portrait image */
.portrait {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  background: color-mix(in oklab, var(--bg) 60%, var(--surface));
}

/* Editorial hero with portrait */
.hero__foot--img {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 56px;
  align-items: end;
}
.hero__foottext { display: flex; flex-direction: column; gap: 28px; }
.hero__portrait { aspect-ratio: 4 / 5; max-height: 360px; width: auto; margin-left: auto; }
@media (max-width: 860px) {
  .hero__foot--img { grid-template-columns: 1fr; gap: 32px; }
  .hero__portrait { aspect-ratio: 3 / 2; max-height: none; width: 100%; }
}

.hero--split { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 80px; align-items: center; }
.hero--split .display { font-size: clamp(42px, 5.5vw, 84px); }
.hero--split .eyebrow { margin-bottom: 24px; }
.hero--split .display { margin-bottom: 28px; }
.hero--split .lede { margin-bottom: 32px; }
.hero--split .hero__visual { padding-left: 0; }

.hero--minimal { padding-top: 120px; padding-bottom: 120px; text-align: center; }
.hero--minimal .display { font-size: clamp(72px, 14vw, 220px); margin: 32px 0; }
.hero--minimal .lede { margin-bottom: 40px; }

@media (max-width: 860px) {
  .hero__foot, .hero--split { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Trust ---------- */
.trust {
  border-block: 1px solid color-mix(in oklab, var(--fg) 14%, transparent);
  background: color-mix(in oklab, var(--bg) 60%, var(--surface));
}
.trust__list {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust__list li { display: flex; flex-direction: column; gap: 6px; }
.trust__num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust__lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 720px) {
  .trust__list { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Section heads ---------- */
.section__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(96px * var(--density)) var(--pad) calc(40px * var(--density));
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  border-top: 1px solid color-mix(in oklab, var(--fg) 12%, transparent);
}
.expertise .section__head { border-top: 0; }
.section__head .eyebrow { padding-top: 6px; }
@media (max-width: 720px) {
  .section__head { grid-template-columns: 1fr; }
}

/* ---------- Expertise ---------- */
.expertise { background: var(--bg); }
.expertise__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--pad) calc(96px * var(--density));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.expertise__grid--list { grid-template-columns: 1fr; }
.expertise__grid--compact { grid-template-columns: repeat(2, 1fr); }
.exp-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid color-mix(in oklab, var(--fg) 12%, transparent);
  border-radius: 8px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .3s ease, transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.exp-card:hover { transform: translateY(-3px); border-color: color-mix(in oklab, var(--accent) 50%, transparent); box-shadow: 0 14px 34px color-mix(in oklab, var(--fg) 9%, transparent); }
.exp-card:hover .exp-card__title { color: color-mix(in oklab, var(--fg) 72%, var(--accent)); }
.expertise__grid--list .exp-card { padding: 28px; }

.exp-card__head { display: flex; align-items: center; justify-content: space-between; }
.exp-card__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.exp-card__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 999px;
}
.exp-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.012em;
}
.exp-card__blurb {
  font-size: 15px;
  color: color-mix(in oklab, var(--fg) 75%, transparent);
  line-height: 1.5;
  text-wrap: pretty;
}
.exp-card__items {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto; padding-top: 8px;
}
.exp-card__items li {
  font-size: 12px;
  font-family: var(--mono);
  padding: 4px 10px;
  border: 1px solid color-mix(in oklab, var(--fg) 18%, transparent);
  border-radius: 999px;
  color: var(--muted);
}

/* indent inside grid cards */

@media (max-width: 860px) {
  .expertise__grid, .expertise__grid--compact { grid-template-columns: 1fr; }
}

/* ---------- Expertise profile toggle ---------- */
.expertise__bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px var(--pad) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.seg {
  display: inline-flex;
  padding: 5px;
  background: color-mix(in oklab, var(--bg) 55%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--fg) 16%, transparent);
  border-radius: 999px;
}
.seg__btn {
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.seg__btn--on {
  background: var(--fg);
  color: var(--bg);
}
.expertise__count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 560px) {
  .seg { width: 100%; }
  .seg__btn { flex: 1; padding: 11px 12px; text-align: center; }
}

/* Featured (Fraude bancaire) card accent */
.exp-card--featured { position: relative; }
.exp-card--featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--accent);
}
.exp-card--featured .exp-card__title { color: color-mix(in oklab, var(--fg) 72%, var(--accent)); }

/* Clickable card */
.exp-card--link { cursor: pointer; }
.exp-card--link:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.exp-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color .2s ease, gap .2s ease;
}
.exp-card__more span { transition: transform .2s ease; }
.exp-card--link:hover .exp-card__more { color: var(--fg); }
.exp-card--link:hover .exp-card__more span { transform: translateX(4px); }

/* ---------- Guide (Par où commencer) ---------- */
.guide {
  background: color-mix(in oklab, var(--bg) 64%, var(--surface));
  border-block: 1px solid color-mix(in oklab, var(--fg) 12%, transparent);
}
.guide__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(80px * var(--density)) var(--pad);
}
.guide__head { margin-bottom: 40px; }
.guide__head .eyebrow { margin-bottom: 18px; }
.guide__head .h2 { margin-bottom: 18px; }
.guide__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: color-mix(in oklab, var(--fg) 72%, transparent);
  max-width: 56ch;
  text-wrap: pretty;
}
.guide__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.guide__opt {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid color-mix(in oklab, var(--fg) 14%, transparent);
  border-radius: 6px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.3;
  color: var(--fg);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.guide__opt:hover { border-color: color-mix(in oklab, var(--fg) 35%, transparent); transform: translateY(-2px); }
.guide__opt-dot {
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in oklab, var(--fg) 30%, transparent);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.guide__opt--on { border-color: var(--accent); background: color-mix(in oklab, var(--bg) 88%, var(--accent)); }
.guide__opt--on .guide__opt-dot { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 22%, transparent); }

.guide__result {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition: grid-template-rows .45s cubic-bezier(0.22,1,0.36,1), opacity .45s ease, margin-top .45s ease;
}
.guide__result--show { grid-template-rows: 1fr; opacity: 1; margin-top: 16px; }
.guide__result-inner {
  overflow: hidden;
  background: var(--fg);
  color: var(--bg);
  border-radius: 8px;
  padding: 32px clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 32px;
  align-items: center;
}
.guide__result-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 65%, transparent);
  margin-bottom: 10px;
}
.guide__result-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.guide__result-blurb {
  font-size: 15px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--bg) 82%, transparent);
  max-width: 52ch;
}
.guide__result-actions { display: flex; flex-direction: column; gap: 10px; white-space: nowrap; }
.guide__result-reflex {
  margin-top: 16px;
  padding: 14px 16px;
  background: color-mix(in oklab, var(--bg) 16%, transparent);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: color-mix(in oklab, var(--bg) 92%, transparent);
  max-width: 52ch;
}
.guide__result-reflex span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 70%, transparent);
  margin-bottom: 5px;
}
.guide__result-inner .cta { background: var(--bg); color: var(--fg); }
.guide__result-inner .cta:hover { background: color-mix(in oklab, var(--bg) 88%, var(--accent)); }
.guide__result-inner .cta--ghost { background: transparent; color: var(--bg); border-color: color-mix(in oklab, var(--bg) 35%, transparent); }
.guide__result-inner .cta--ghost:hover { background: var(--bg); color: var(--fg); }

@media (max-width: 720px) {
  .guide__grid { grid-template-columns: 1fr; }
  .guide__result-inner { grid-template-columns: 1fr; gap: 24px; }
  .guide__result-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ---------- Page hero (sub-pages) ---------- */
.pagehero {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(64px * var(--density)) var(--pad) calc(40px * var(--density));
}
.pagehero .eyebrow { margin-bottom: 22px; }
.display--page {
  font-size: clamp(40px, 6.5vw, 92px);
  margin-bottom: 24px;
}
.pagehero .lede { max-width: 60ch; }

/* ---------- Cabinet short (home) ---------- */
.band--cabinet { background: var(--surface); }
.cabinet-short {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(96px * var(--density)) var(--pad);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.cshort__body { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.cshort__lede {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: color-mix(in oklab, var(--fg) 76%, transparent);
  max-width: 56ch;
  text-wrap: pretty;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cshort__lead {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  color: var(--fg);
  font-family: var(--serif);
}
@media (max-width: 860px) {
  .cabinet-short { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Blog ---------- */
.blog-preview { background: var(--bg); }
.blog-preview .section__head { border-top: 0; }
.blog {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(40px * var(--density)) var(--pad) calc(96px * var(--density));
}
.blog__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--pad) calc(80px * var(--density));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog__grid--page { padding-left: 0; padding-right: 0; }
.art-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--fg);
  transition: transform .25s ease;
}
.art-card:hover { transform: translateY(-4px); }
.art-card--text {
  padding: 26px 0 28px;
  border-top: 1px solid color-mix(in oklab, var(--fg) 14%, transparent);
  gap: 10px;
}
.art-card--text:hover { transform: none; }
.post__head-rule { height: 1px; background: color-mix(in oklab, var(--fg) 14%, transparent); margin-bottom: 36px; }
.art-card__thumb { margin-bottom: 4px; }
.art-card__thumb .ph { border-radius: 6px; }
.art-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: var(--accent);
  color: #fff;
}
.art-thumb__cat {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.art-thumb__glyph {
  position: absolute;
  top: -0.22em; right: 0.12em;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(110px, 22vw, 180px);
  line-height: 1;
  color: color-mix(in oklab, #fff 22%, transparent);
  pointer-events: none;
}
.thumb--fraude-bancaire { background: #1F4E79; }
.thumb--intelligence-artificielle { background: #3A6B8C; }
.thumb--rgpd { background: #2F6E63; }
.thumb--cybersecurite { background: #1B3A53; }
.thumb--influence { background: #6B4E7A; }
.art-card__meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.art-card__cat { color: var(--accent); }
.art-card__date { color: var(--muted); }
.art-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.012em;
}
.art-card:hover .art-card__title { color: color-mix(in oklab, var(--fg) 72%, var(--accent)); }
.art-card__excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--fg) 74%, transparent);
  text-wrap: pretty;
}
.art-card__more {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  display: inline-flex; gap: 8px; align-items: center;
  margin-top: 4px;
}
.art-card__more span { transition: transform .2s ease; }
.art-card:hover .art-card__more { color: var(--fg); }
.art-card:hover .art-card__more span { transform: translateX(4px); }
.blog-preview__more { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad) calc(96px * var(--density)); }
@media (max-width: 860px) {
  .blog__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Article (post) ---------- */
.post {
  max-width: 820px;
  margin: 0 auto;
  padding: calc(56px * var(--density)) var(--pad) calc(96px * var(--density));
}
.post__back {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 28px;
}
.post__back:hover { color: var(--fg); }
.post__head .art-card__meta { margin-bottom: 18px; }
.post__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: 36px;
}
.post__cover { margin-bottom: 44px; }
.post__cover.art-thumb { aspect-ratio: 16 / 6; }
.post__cover .ph { border-radius: 8px; }
.post__body { display: flex; flex-direction: column; gap: 22px; }
.post__body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin-top: 20px;
}
.post__body p {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in oklab, var(--fg) 84%, transparent);
  text-wrap: pretty;
}
.post__related {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--surface);
  border-radius: 8px;
  font-size: 15px;
}
.post__related a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(28px * var(--density)) var(--pad) 0;
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__current { color: var(--fg); }
.post__disclaimer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in oklab, var(--fg) 14%, transparent);
  font-size: 14px !important;
  color: var(--muted) !important;
}
.post__disclaimer a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Expertise detail overlay ---------- */
.detail {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  justify-content: flex-end;
}
.detail__backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in oklab, var(--fg) 45%, transparent);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: detailFade .25s ease;
}
@keyframes detailFade { from { opacity: 0; } to { opacity: 1; } }
.detail__panel {
  position: relative;
  width: min(620px, 100%);
  height: 100%;
  overflow-y: auto;
  background: var(--bg);
  padding: 32px clamp(24px, 4vw, 56px) 56px;
  border-left: 1px solid color-mix(in oklab, var(--fg) 14%, transparent);
  box-shadow: -24px 0 60px color-mix(in oklab, var(--fg) 22%, transparent);
  animation: detailSlide .32s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes detailSlide { from { transform: translateX(40px); opacity: 0.4; } to { transform: translateX(0); opacity: 1; } }
.detail__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.detail__close {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid color-mix(in oklab, var(--fg) 18%, transparent);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.detail__close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.detail__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 10px 0 20px;
  text-wrap: balance;
}
.detail__intro {
  font-size: 17px;
  line-height: 1.6;
  color: color-mix(in oklab, var(--fg) 78%, transparent);
  text-wrap: pretty;
  margin-bottom: 36px;
}
.detail__sections { display: flex; flex-direction: column; gap: 32px; margin-bottom: 40px; }
.detail__sec h3 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid color-mix(in oklab, var(--fg) 14%, transparent);
}
.detail__sec ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.detail__sec li {
  position: relative;
  padding-left: 22px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
}
.detail__sec li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.detail__cta { width: 100%; justify-content: center; }
.detail__actions { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.detail__page-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  display: inline-flex; gap: 8px; align-items: center;
}
.detail__page-link:hover { color: var(--accent); }
.detail__page-link span { transition: transform .2s ease; }
.detail__page-link:hover span { transform: translateX(4px); }

/* ---------- Expertise dedicated page ---------- */
.exp-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(40px * var(--density)) var(--pad) calc(64px * var(--density));
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.exp-page__sections { display: flex; flex-direction: column; gap: 40px; }
.exp-page__sec h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid color-mix(in oklab, var(--fg) 14%, transparent);
}
.exp-page__sec ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.exp-page__sec li {
  position: relative;
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.5;
  color: color-mix(in oklab, var(--fg) 84%, transparent);
  text-wrap: pretty;
}
.exp-page__sec li::before {
  content: "";
  position: absolute;
  left: 2px; top: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.exp-page__aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: color-mix(in oklab, var(--bg) 55%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--fg) 10%, transparent);
  border-radius: 8px;
}
.exp-page__chips h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.exp-page__chips ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.exp-page__chips li {
  font-family: var(--mono);
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid color-mix(in oklab, var(--fg) 16%, transparent);
  border-radius: 999px;
  color: var(--muted);
}
.exp-page__note { font-size: 13px; line-height: 1.5; color: var(--muted); }
.exp-page__others {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) calc(40px * var(--density));
}
.exp-page__others .eyebrow { margin-bottom: 24px; padding-top: 32px; border-top: 1px solid color-mix(in oklab, var(--fg) 12%, transparent); }
.exp-others__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; }
.exp-other {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--fg) 12%, transparent);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  transition: padding .2s ease;
}
.exp-other:hover { padding-left: 8px; color: var(--accent); }
.exp-other__arrow { font-family: var(--sans); color: var(--muted); }
.exp-other:hover .exp-other__arrow { color: var(--accent); }
@media (max-width: 860px) {
  .exp-page { grid-template-columns: 1fr; gap: 36px; }
  .exp-page__aside { position: static; }
  .exp-others__grid { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */
.about {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(72px * var(--density)) var(--pad) calc(96px * var(--density));
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid color-mix(in oklab, var(--fg) 12%, transparent);
}
.about__media { position: sticky; top: 100px; }
.about__body { display: flex; flex-direction: column; gap: 32px; }
.about__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 16px;
}
.about__cols--single { grid-template-columns: 1fr; max-width: 70ch; }
.about__langues { display: flex; align-items: baseline; gap: 12px; margin-top: 8px; padding-top: 20px; border-top: 1px solid color-mix(in oklab, var(--fg) 12%, transparent); font-family: var(--serif); font-size: 17px; }
.about__langues span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.about__cols p { margin-bottom: 16px; max-width: 64ch; }
.about__facts { display: flex; flex-direction: column; gap: 16px; }
.about__facts > div { display: flex; flex-direction: column; gap: 4px; padding-bottom: 16px; border-bottom: 1px solid color-mix(in oklab, var(--fg) 12%, transparent); }
.about__facts dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.about__facts dd { font-family: var(--serif); font-size: 17px; line-height: 1.4; }
@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__media { position: static; }
  .about__cols { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Process ---------- */
.process { background: var(--bg); }
.process .section__head { border-top: 0; }
.process__list {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--pad) calc(96px * var(--density));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid color-mix(in oklab, var(--fg) 18%, transparent);
}
.process__item {
  padding: 36px 28px 36px 28px;
  border-right: 1px solid color-mix(in oklab, var(--fg) 12%, transparent);
  display: flex; flex-direction: column; gap: 16px;
}
.process__item:first-child { padding-left: 0; }
.process__item:last-child { border-right: 0; padding-right: 0; }
.process__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  color: color-mix(in oklab, var(--fg) 60%, var(--accent));
}
.process__title { font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.2; }
.process__body { font-size: 14.5px; color: color-mix(in oklab, var(--fg) 75%, transparent); }
@media (max-width: 860px) {
  .process__list { grid-template-columns: 1fr 1fr; }
  .process__item { padding-left: 20px; }
  .process__item:nth-child(2n) { border-right: 0; }
}
@media (max-width: 540px) {
  .process__list { grid-template-columns: 1fr; }
  .process__item { border-right: 0; border-bottom: 1px solid color-mix(in oklab, var(--fg) 12%, transparent); }
}

/* ---------- Honoraires ---------- */
.honoraires { max-width: var(--max); margin: 0 auto; }
.hon__grid {
  padding: 24px var(--pad) calc(96px * var(--density));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hon__grid--3 { grid-template-columns: repeat(3, 1fr); max-width: var(--max); }
.hon__card {
  padding: 28px;
  background: color-mix(in oklab, var(--bg) 60%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--fg) 10%, transparent);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
}
.hon__card h3 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.hon__card-top h3 { font-family: var(--serif); font-size: 24px; letter-spacing: -0.01em; text-transform: none; color: var(--fg); font-weight: 600; }
.hon__card--accent .hon__card-top h3 { color: #fff; }
.hon__price { font-family: var(--serif); font-size: 36px; line-height: 1.05; letter-spacing: -0.02em; }
.hon__price span { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-left: 4px; }
.hon__detail { font-size: 14px; color: color-mix(in oklab, var(--fg) 75%, transparent); margin-top: auto; }
.hon__card--accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.hon__card--accent h3, .hon__card--accent .hon__price span { color: color-mix(in oklab, #fff 70%, transparent); }
.hon__card--accent .hon__detail { color: color-mix(in oklab, #fff 80%, transparent); }
@media (max-width: 860px) {
  .hon__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .hon__grid { grid-template-columns: 1fr; }
}

/* Honoraires — intro + subscription layout */
.hon__intro {
  max-width: 70ch;
  margin: 0 auto;
  padding: 0 var(--pad);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: color-mix(in oklab, var(--fg) 78%, transparent);
  text-wrap: pretty;
}
.hon__intro strong { color: var(--fg); font-weight: 600; }
.hon__grid--sub {
  grid-template-columns: repeat(3, 1fr);
  padding-top: calc(24px * var(--density));
  padding-bottom: 24px;
  align-items: stretch;
}
.hon__grid--sub .hon__card {
  min-height: 0;
  gap: 18px;
  padding: 32px 28px;
  position: relative;
}
.hon__card-top { display: flex; flex-direction: column; gap: 12px; }
.hon__grid--sub .hon__price { font-size: 30px; }
.hon__grid--sub .hon__price strong { font-weight: 400; }
.hon__grid--sub .hon__price span { display: inline; font-size: 12px; }
.hon__for {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 16px;
  border-bottom: 1px solid color-mix(in oklab, var(--fg) 12%, transparent);
}
.hon__card--accent .hon__for { color: color-mix(in oklab, #fff 78%, var(--accent)); border-color: color-mix(in oklab, #fff 28%, transparent); }
.hon__list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 2px; }
.hon__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.4;
  color: color-mix(in oklab, var(--fg) 82%, transparent);
}
.hon__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hon__card--accent .hon__list li { color: color-mix(in oklab, #fff 88%, transparent); }
.hon__card--accent .hon__list li::before { background: #fff; }
.hon__badge {
  position: absolute;
  top: -10px; left: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  background: var(--fg);
  color: #fff;
  font-weight: 500;
  border-radius: 999px;
  box-shadow: 0 4px 14px color-mix(in oklab, var(--fg) 35%, transparent);
}
.hon__ponctuel {
  max-width: calc(var(--max) - var(--pad) * 2);
  margin: 8px auto 0;
  padding: 32px clamp(24px, 3vw, 40px);
  background: color-mix(in oklab, var(--bg) 55%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--fg) 10%, transparent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.hon__ponctuel h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(20px, 2.2vw, 26px); margin-bottom: 8px; letter-spacing: -0.01em; }
.hon__ponctuel p { font-size: 15px; line-height: 1.55; color: color-mix(in oklab, var(--fg) 76%, transparent); max-width: 60ch; text-wrap: pretty; }
.hon__ponctuel strong { color: var(--fg); font-weight: 600; }
.hon__ponctuel .cta { flex-shrink: 0; }
.hon__more { display: flex; justify-content: center; margin-top: 4px; padding: 0 var(--pad) calc(48px * var(--density)); }
@media (max-width: 860px) {
  .hon__grid--sub { grid-template-columns: 1fr; }
  .hon__ponctuel { flex-direction: column; align-items: flex-start; }
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: calc(24px * var(--density)) var(--pad) calc(80px * var(--density));
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in oklab, var(--fg) 12%, transparent);
}
.legal h2:first-child { margin-top: 0; }
.legal p {
  font-size: 16px;
  line-height: 1.65;
  color: color-mix(in oklab, var(--fg) 82%, transparent);
  margin-bottom: 16px;
  text-wrap: pretty;
}
.legal ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0 0 16px; }
.legal li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in oklab, var(--fg) 82%, transparent);
}
.legal li::before {
  content: "";
  position: absolute;
  left: 2px; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.legal strong { color: var(--fg); font-weight: 600; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal__copy { margin-top: 32px; padding-top: 24px; border-top: 1px solid color-mix(in oklab, var(--fg) 12%, transparent); font-family: var(--mono); font-size: 13px; color: var(--muted); }

/* ---------- Values (cabinet) ---------- */
.values { background: var(--surface); }
.values .h2 { max-width: 26ch; }
.values .section__head { border-top: 0; }
.values__intro {
  margin: 0 auto;
  padding: 8px var(--pad);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: color-mix(in oklab, var(--fg) 80%, transparent);
  max-width: min(74ch, var(--max));
  text-wrap: pretty;
}
.values__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--pad) calc(96px * var(--density));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid color-mix(in oklab, var(--fg) 16%, transparent);
}
.value-card {
  padding: 40px 32px 0 0;
  border-right: 1px solid color-mix(in oklab, var(--fg) 12%, transparent);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-card:last-child { border-right: 0; }
.values__grid .value-card:not(:first-child) { padding-left: 32px; }
.value-card__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.value-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.value-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in oklab, var(--fg) 76%, transparent);
  text-wrap: pretty;
}
@media (max-width: 860px) {
  .values__grid { grid-template-columns: 1fr; }
  .value-card { border-right: 0 !important; border-bottom: 1px solid color-mix(in oklab, var(--fg) 12%, transparent); padding: 28px 0 !important; }
  .value-card:last-child { border-bottom: 0; }
}

/* ---------- Final CTA band ---------- */
.cta-band {
  background: var(--fg);
  color: var(--bg);
  margin-top: calc(40px * var(--density));
  position: relative;
  overflow: hidden;
}
.cta-band__aura { inset: -20% -5% -20% -5%; opacity: 0.85; }
.cta-band__aura .hero__aura-blob { filter: blur(80px); opacity: 0.55; }
.cta-band__aura .hero__aura-blob--1 { background: radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--accent) 70%, white 5%), transparent 70%); }
.cta-band__aura .hero__aura-blob--2 { background: radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--accent) 55%, transparent), transparent 70%); }
.cta-band__aura .hero__aura-blob--3 { background: radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--accent) 40%, transparent), transparent 70%); }
.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--pad);
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 48px;
  align-items: end;
}
.cta-band__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 65%, transparent);
  margin-bottom: 24px;
}
.cta-band__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.cta-band__title em { font-style: italic; color: color-mix(in oklab, var(--accent) 55%, white); }
.cta-band__actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-band__actions { display: flex; flex-direction: row; flex-wrap: wrap; gap: 12px; align-items: center; }
.cta-band .cta {
  background: var(--bg);
  color: var(--fg);
}
.cta-band .cta:hover { background: color-mix(in oklab, var(--bg) 88%, var(--accent)); }
.cta-band .cta--ghost-light {
  background: transparent;
  color: var(--bg);
  border: 1px solid color-mix(in oklab, var(--bg) 40%, transparent);
}
.cta-band .cta--ghost-light:hover { background: var(--bg); color: var(--fg); border-color: var(--bg); }
.cta-band__contact {
  font-family: var(--mono);
  font-size: 13px;
  color: color-mix(in oklab, var(--bg) 72%, transparent);
}
.cta-band__contact a { color: var(--bg); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) {
  .cta-band__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--surface); }
.faq .section__head { border-top: 0; }
.faq__list {
  list-style: none;
  max-width: 920px;
  margin: 0 auto;
  padding: 24px var(--pad) calc(96px * var(--density));
}
.faq__item {
  border-top: 1px solid color-mix(in oklab, var(--fg) 18%, transparent);
}
.faq__item:last-child { border-bottom: 1px solid color-mix(in oklab, var(--fg) 18%, transparent); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; align-items: baseline; justify-content: space-between; gap: 32px;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
}
.faq__plus { font-family: var(--sans); font-size: 24px; color: var(--muted); transition: transform .2s; }
.faq__item--open .faq__plus { color: var(--fg); }
.faq__a { padding: 0 0 24px; max-width: 64ch; color: color-mix(in oklab, var(--fg) 75%, transparent); }

/* ---------- Contact ---------- */
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(96px * var(--density)) var(--pad);
  border-top: 1px solid color-mix(in oklab, var(--fg) 12%, transparent);
}
.contact__head { margin-bottom: 64px; }
.contact__head .eyebrow { margin-bottom: 24px; }
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  font: inherit; color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid color-mix(in oklab, var(--fg) 25%, transparent);
  padding: 10px 0;
  font-size: 16px;
  font-family: var(--serif);
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-bottom-color: var(--fg);
}
.contact__legal { font-size: 12px; color: var(--muted); margin-top: 8px; }
.contact__error { font-size: 13px; color: #b3261e; margin-top: 8px; }
.contact__success {
  padding: 32px;
  background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 10px;
}
.contact__success-title { font-family: var(--serif); font-size: 24px; color: var(--accent); }
.contact__aside { display: flex; flex-direction: column; gap: 32px; }
.contact__details { display: flex; flex-direction: column; gap: 20px; padding: 28px; background: color-mix(in oklab, var(--bg) 60%, var(--surface)); border-radius: 4px; }
.contact__details > div { display: flex; flex-direction: column; gap: 4px; padding-bottom: 16px; border-bottom: 1px solid color-mix(in oklab, var(--fg) 10%, transparent); }
.contact__details > div:last-child { border-bottom: 0; padding-bottom: 0; }
.contact__details dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.footer__addr span { font-family: var(--sans); }
.contact__details dd { font-family: var(--serif); font-size: 17px; line-height: 1.4; }
.contact__details a:hover { color: color-mix(in oklab, var(--fg) 70%, var(--accent)); }

@media (max-width: 860px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; }
}

.contact__calendly { display: flex; flex-direction: column; gap: 12px; }
.contact__calendly-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.calendly-inline-widget { border-radius: 10px; overflow: hidden; border: 1px solid color-mix(in oklab, var(--fg) 12%, transparent); }

/* ---------- Footer ---------- */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 64px var(--pad) 32px;
  margin-top: 80px;
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid color-mix(in oklab, var(--bg) 20%, transparent);
}
.footer .brand__mark { border-color: var(--bg); color: var(--bg); }
.footer__brand { display: flex; gap: 14px; align-items: center; }
.footer__name { font-family: var(--serif); font-size: 22px; font-style: italic; }
.footer__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; margin-top: 2px; }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__nav h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; margin-bottom: 16px; font-weight: 500; }
.footer__nav > div { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__nav a, .footer__nav span { opacity: 0.8; transition: opacity .15s; }
.footer__nav a:hover { opacity: 1; }
.footer__contact-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 1 !important;
}
.footer__contact-line:hover { color: var(--accent); }
.footer__ico { color: var(--accent); flex-shrink: 0; }
.footer__addr {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 10px 14px 10px 12px;
  background: color-mix(in oklab, var(--bg) 14%, transparent);
  border: 1px solid color-mix(in oklab, var(--bg) 22%, transparent);
  border-radius: 8px;
  line-height: 1.35;
  opacity: 1 !important;
  align-self: flex-start;
  transition: background .2s ease, border-color .2s ease;
}
.footer__addr:hover {
  background: color-mix(in oklab, var(--bg) 22%, transparent);
  border-color: var(--accent);
}
.footer__pin {
  color: var(--accent);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px color-mix(in oklab, var(--fg) 40%, transparent));
}
.footer__bottom {
  max-width: var(--max);
  margin: 32px auto 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.6;
}
.footer__bottom a:hover { opacity: 1; text-decoration: underline; }

@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
}

/* ---------- Placeholder ---------- */
.ph {
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--fg) 8%, transparent) 0 1px,
      transparent 1px 14px),
    color-mix(in oklab, var(--bg) 60%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--fg) 18%, transparent);
  border-radius: 4px;
  position: relative;
  width: 100%;
}
.ph__label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--bg);
  border: 1px solid color-mix(in oklab, var(--fg) 18%, transparent);
  border-radius: 4px;
  color: var(--muted);
}

/* ---------- Tweaks panel ---------- */
.tweaks {
  position: fixed; right: 20px; bottom: 20px;
  width: 280px;
  background: var(--bg);
  border: 1px solid color-mix(in oklab, var(--fg) 25%, transparent);
  border-radius: 8px;
  z-index: 100;
  box-shadow: 0 12px 40px color-mix(in oklab, var(--fg) 25%, transparent);
  font-size: 13px;
  overflow: hidden;
}
.tweaks__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: var(--fg); color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tweaks__head button { color: var(--bg); font-size: 20px; line-height: 1; padding: 0 4px; }
.tweaks__body { padding: 12px; display: flex; flex-direction: column; gap: 12px; max-height: 70vh; overflow-y: auto; }
.tweaks fieldset { border: 0; display: flex; flex-direction: column; gap: 4px; }
.tweaks legend { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.tweaks label {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  text-transform: capitalize;
  transition: background .15s;
}
.tweaks label:hover { background: color-mix(in oklab, var(--fg) 6%, transparent); }
.tweaks label.is-on { background: color-mix(in oklab, var(--fg) 10%, transparent); }
.tweaks input { accent-color: var(--fg); }
.swatch {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.swatch span { width: 8px; height: 8px; border-radius: 50%; }
