/* ────────────────────────────────────────────────────────────
   DAGUET-CONSEIL · Stratégie & Accompagnement
   Brand: cream / ink / gold
   ──────────────────────────────────────────────────────────── */

:root {
  --cream: #F5F2ED;
  --cream-2: #EDE8DE;
  --cream-3: #E2DBCB;
  --ink: #0E0E0E;
  --ink-2: #161616;
  --ink-3: #1F1F1F;
  --ink-4: #2A2A2A;
  --line: rgba(184,150,62,0.18);
  --line-strong: rgba(184,150,62,0.45);
  --gold: #B8963E;
  --gold-bright: #D4B254;
  --gold-deep: #8E7027;
  --muted-cream: rgba(245, 242, 237, 0.6);
  --muted-ink: rgba(14, 14, 14, 0.6);

  --f-serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1440px;
  --pad-x: clamp(24px, 5vw, 96px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: var(--ink); }

/* ── Typography ─────────────────────────────────────────────── */
.h-section {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(40px, 5.2vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.018em;
}
.h-section em { font-style: italic; font-weight: 400; color: var(--gold); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  font-weight: 300;
  max-width: 56ch;
}
.dark .lead { color: rgba(245,242,237,0.72); }
.dark p:not([class]) { color: rgba(245,242,237,0.72); }
/* ── Layout helpers ─────────────────────────────────────────── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
section { position: relative; }
.section-pad { padding: clamp(96px, 12vw, 180px) 0; }

.dark {
  background: var(--ink);
  color: var(--cream);
}
.dark.grain::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(184,150,62,0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ── Reveal animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* ── Cursor ─────────────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
  transition: width .25s ease, height .25s ease, background .25s ease;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(184,150,62,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s cubic-bezier(.2,.7,.2,1),
              height .3s cubic-bezier(.2,.7,.2,1),
              border-color .3s ease,
              opacity .3s ease;
}
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: rgba(184,150,62,0.85);
}
body.cursor-hover .cursor-dot { width: 4px; height: 4px; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Navbar ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-x);
  transition: background .35s ease, backdrop-filter .35s ease,
              padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245, 242, 237, 0.72);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  padding: 14px var(--pad-x);
  border-bottom-color: rgba(14,14,14,0.06);
}
.nav.over-dark:not(.scrolled) { color: var(--cream); }
.nav.over-dark.scrolled {
  background: rgba(14, 14, 14, 0.72);
  color: var(--cream);
  border-bottom-color: rgba(184,150,62,0.18);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.nav-brand .logo-mark { height: 36px; width: auto; display: block; }
.nav-brand .wordmark {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-brand .wordmark span {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 400;
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  font-size: 14px;
}
.nav-link {
  position: relative;
  padding: 6px 0;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: inherit;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .45s cubic-bezier(.2,.7,.2,1);
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: background .35s ease, color .35s ease;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.7,0,.2,1);
  z-index: -1;
}
.nav-cta:hover { color: var(--ink); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta .arrow { display: inline-block; transition: transform .35s ease; }
.nav-cta:hover .arrow { transform: translateX(4px); }

/* ── Mobile nav hamburger ───────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
  z-index: 210;
  position: relative;
}
.nav-burger span {
  display: block;
  width: 100%; height: 1px;
  background: currentColor;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.7,0,.2,1);
    box-shadow: -8px 0 40px rgba(14,14,14,0.12);
    z-index: 205;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    font-size: 22px;
    font-family: var(--f-serif);
    font-weight: 300;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .nav-link::after { display: none; }
  /* overlay behind menu */
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(14,14,14,0.4);
    z-index: 204;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
  }
  .nav-overlay.open { opacity: 1; pointer-events: all; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  position: relative;
  overflow: hidden;
  transition: color .35s ease, border-color .35s ease;
  z-index: 1;
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .55s cubic-bezier(.7,0,.2,1);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn .arrow {
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .35s ease;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 22px; }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary::before { background: var(--ink); }
.btn-primary:hover { color: var(--cream); border-color: var(--ink); }

.btn-ghost-dark { color: var(--ink); border-color: rgba(14,14,14,0.3); }
.btn-ghost-dark:hover { color: var(--ink); border-color: var(--gold); }


/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 160px var(--pad-x) 0;
  color: var(--ink);
  background: var(--cream);
  overflow: hidden;
}

/* faint watermark of the logo mark on the right */
.hero-watermark {
  position: absolute;
  top: 50%;
  right: -6%;
  width: clamp(420px, 52vw, 760px);
  pointer-events: none;
  z-index: 0;
  /* Entrance animation: scale + fade in */
  opacity: 0;
  transform: translateY(-50%) scale(1.14);
  transition: opacity 2.4s ease 0.15s,
              transform 3.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.page-loaded .hero-watermark {
  opacity: 0.07;
  transform: translateY(-50%) scale(1);
}
.hero-watermark { overflow: hidden; }
.hero-watermark img { width: 100%; height: auto; display: block; will-change: transform; }

/* ── HERO ENTRANCE — line-by-line title reveal ───────────── */
/* Each headline line wraps in .hlw (overflow:hidden) + .hl (slides up) */
.hlw {
  display: block;
  overflow: hidden;
  /* small extra space so descenders don't clip */
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}
.hl {
  display: block;
  transform: translateY(108%);
  opacity: 0;
  transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.55s ease;
}
.page-loaded .hl { transform: translateY(0); opacity: 1; }

/* Hero non-title elements */
.hero-enter {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-loaded .hero-enter { opacity: 1; transform: translateY(0); }

/* corner TR: just fades in */
.hero-corner-fade {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.page-loaded .hero-corner-fade { opacity: 1; }

/* corner labels */
.hero-corner {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-ink);
  z-index: 3;
}
.hero-corner.tr { top: 120px; right: var(--pad-x); }
.hero-corner .gold { color: var(--gold); }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 56px;
}
.hero-eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow .sep {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

.hero-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(56px, 9.2vw, 148px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 0 56px;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-title .nbsp { white-space: nowrap; }

.hero-rule {
  width: 80px;
  height: 1px;
  background: var(--ink);
  margin: 0 0 36px;
  opacity: 0.4;
}

.hero-sub {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  max-width: 52ch;
  color: var(--muted-ink);
  margin: 0 0 48px;
  font-weight: 300;
}
.hero-sub strong {
  color: var(--ink);
  font-weight: 500;
}

.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }

/* bottom services strip — dark, large, premium */
.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  margin-top: auto;
  /* subtle top gold line */
  border-top: 1px solid rgba(184,150,62,0.35);
}
.hero-strip > div {
  background: transparent;
  padding: clamp(28px, 3.5vw, 52px) clamp(32px, 4.5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid rgba(184,150,62,0.15);
  position: relative;
  overflow: hidden;
  transition: background .4s ease;
  cursor: default;
}
.hero-strip > div:last-child { border-right: 0; }
.hero-strip > div:hover { background: rgba(184,150,62,0.07); }

/* subtle large ghost number */
.hero-strip > div::after {
  content: attr(data-idx);
  position: absolute;
  right: 24px; bottom: 12px;
  font-family: var(--f-serif);
  font-size: clamp(72px, 8vw, 96px);
  font-weight: 300;
  color: rgba(184,150,62,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color .4s ease;
}
.hero-strip > div:hover::after { color: rgba(184,150,62,0.22); }

.hero-strip .idx {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-strip .nm {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.015em;
  color: var(--cream);
  line-height: 1.1;
}
@media (max-width: 860px) {
  .hero-strip > div { padding: 24px 28px; }
  .hero-strip .nm { font-size: 20px; }

  /* Mobile : eyebrow plus lisible */
  .eyebrow { font-size: 12px; }

  /* Mobile : hero-eyebrow wrap propre */
  .hero-eyebrow {
    font-size: 12px;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
  .hero-eyebrow::before { display: none; }
}
@media (max-width: 560px) {
  .hero-strip { grid-template-columns: 1fr; }
  .hero-strip > div { border-right: 0; border-bottom: 1px solid rgba(184,150,62,0.15); }
  .hero-strip > div:last-child { border-bottom: 0; }
}

/* ── SERVICES (typographic, no images) ─────────────────────── */
.svc-list {
  border-top: 1px solid var(--line);
}

.svc-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(64px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: background .5s ease;
}
.svc-row:hover {
  background: linear-gradient(to right, rgba(184,150,62,0.03), transparent);
}

/* Large muted background number */
.svc-num {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(88px, 11vw, 152px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: rgba(14,14,14,0.07);
  user-select: none;
  padding-top: 6px;
  transition: color .6s ease;
  position: sticky;
  top: 120px;
}
.svc-row:hover .svc-num {
  color: rgba(184,150,62,0.15);
}

.svc-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.svc-body h3 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.svc-body h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.svc-body > p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  max-width: 54ch;
  color: var(--muted-ink);
  margin: 0 0 40px;
}

.svc-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 46ch;
}
.svc-bullets li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.svc-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

@media (max-width: 860px) {
  .svc-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .svc-num {
    font-size: 56px;
    padding-top: 0;
    position: static;
  }
}

/* ── Section header ─────────────────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}
.section-head .right { max-width: 44ch; align-self: end; }
.dark .section-head { border-color: rgba(184,150,62,0.22); }
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; padding-bottom: 40px; }
}

/* ── APPROACH ───────────────────────────────────────────────── */
.approach-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  padding-top: 60px;
}
.approach-rail::before {
  content: "";
  position: absolute;
  top: 80px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.4;
}
.step {
  position: relative;
  z-index: 2;
}
.step-marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 32px;
  position: relative;
}
.step-marker::after {
  content: "";
  position: absolute; inset: -6px;
  border: 1px solid rgba(184,150,62,0.25);
  border-radius: 50%;
}
.step-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.step h4 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.step p {
  color: var(--muted-ink);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 32ch;
}
@media (max-width: 880px) {
  .approach-rail { grid-template-columns: 1fr; gap: 48px; }
  .approach-rail::before { display: none; }
}

/* (testimonials removed — section supprimée) */

/* (old .founder + .founder-photo removed — replaced by .founder-manifesto) */

/* (certifications removed) */

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}
.contact-left {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.contact-left::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(184,150,62,0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.45;
  pointer-events: none;
}
.contact-left > * { position: relative; z-index: 1; }
.contact-left h2 { margin: 28px 0 36px; max-width: 14ch; }
.contact-info { display: grid; gap: 32px; margin-top: 16px; }
.contact-info .row .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-info .row .val {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(22px, 1.9vw, 28px);
  letter-spacing: -0.01em;
}
.contact-info .row .val a {
  border-bottom: 1px solid transparent;
  transition: border-color .35s ease;
}
.contact-info .row .val a:hover { border-color: var(--gold); }

.contact-foot {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(184,150,62,0.2);
  font-size: 13px;
  color: rgba(245,242,237,0.65);
}
.contact-foot .pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-foot .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: #5ECE7B; box-shadow: 0 0 10px #5ECE7B; }

.contact-right {
  background: var(--cream-2);
  padding: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 80px);
}
.contact-right h3 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(26px, 2.2vw, 32px);
  margin: 0 0 40px;
  letter-spacing: -0.01em;
}
.field { margin-bottom: 28px; }
.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(14,14,14,0.2);
  padding: 12px 0;
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 19px;
  color: var(--ink);
  transition: border-color .35s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-bottom-color: var(--gold);
}
.field textarea { min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-actions { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.contact-policy { font-size: 12px; color: var(--muted-ink); max-width: 28ch; }
.form-success {
  background: var(--ink);
  color: var(--cream);
  padding: 32px;
  border-left: 3px solid var(--gold);
  display: none;
}
.form-success.show { display: block; }
.form-success h4 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 26px;
  margin: 0 0 10px;
  color: var(--gold);
}
.form-success p { margin: 0; color: rgba(245,242,237,0.7); }

@media (max-width: 980px) {
  .contact-split { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px var(--pad-x) 40px;
  text-align: center;
}
.footer-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-mark img { height: 56px; }
.footer-mark .wm {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.footer-mark .sub {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -10px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  max-width: var(--maxw);
  margin: 60px auto 0;
  font-size: 13px;
}
.footer-cols h6 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  font-weight: 400;
}
.footer-cols a { color: rgba(245,242,237,0.7); display: block; padding: 6px 0; transition: color .25s; }
.footer-cols a:hover { color: var(--gold); }
.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.5);
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(184,150,62,0.15);
  margin-top: 32px;
}
@media (max-width: 760px) {
  .footer-cols { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}

/* ── POURQUOI NOUS CHOISIR ──────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(184,150,62,0.2);
  border: 1px solid rgba(184,150,62,0.2);
  margin-top: 60px;
}
.why-card {
  background: var(--ink);
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .4s ease;
  overflow: hidden;
}
.why-card:hover { background: var(--ink-3); }

/* Large decorative number behind the card */
.why-card::before {
  content: attr(data-n);
  position: absolute;
  bottom: -20px; right: 20px;
  font-family: var(--f-serif);
  font-size: 140px;
  font-weight: 300;
  color: rgba(184,150,62,0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.why-tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.why-card h4 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cream);
}
.why-card h4 em { font-style: italic; color: var(--gold-bright); font-weight: 400; }
.why-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245,242,237,0.68);
  margin: 0;
  max-width: 40ch;
}
.why-rule {
  width: 36px;
  height: 1px;
  background: rgba(184,150,62,0.45);
  margin-top: auto;
}
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ── SECTEURS CLIENTS ───────────────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 72px) clamp(48px, 7vw, 96px);
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.sector-card {
  position: relative;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sector-num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.sector-card h4 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.sector-card h4 em { font-style: italic; font-weight: 400; color: var(--gold); }
.sector-card p {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--muted-ink);
  margin: 0;
  max-width: 42ch;
}
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.sector-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid rgba(184,150,62,0.3);
  padding: 6px 12px;
}
@media (max-width: 860px) {
  .sectors-grid { grid-template-columns: 1fr; gap: 0; }
  .sector-card { padding-top: 40px; }
}
