/* ========== Immo'Sens — Design tokens ========== */
:root {
  /* brand */
  --ink: #032e40;             /* bleu profond — primaire */
  --ink-soft: #0a4358;
  --ink-deep: #021e2b;

  --gold: #d0b189;            /* or champagne premium */
  --gold-soft: #e0c8a8;
  --gold-deep: #b08c5e;

  --paper: #faf8f3;           /* sable très clair */
  --paper-2: #f2ede3;         /* sable */
  --paper-3: #e6ddc9;         /* lin */
  --line: rgba(3, 46, 64, 0.12);
  --line-light: rgba(3, 46, 64, 0.06);

  --ink-on-ink: rgba(255, 255, 255, 0.78);
  --ink-on-ink-mute: rgba(255, 255, 255, 0.5);

  /* type — Open Sans system */
  --serif: "Open Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --sans: "Open Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* layout */
  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ========== Typography ========== */
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.on-ink { color: var(--gold-soft); }
.eyebrow.on-ink::before { background: var(--gold-soft); }
.eyebrow.solo::before { display: none; }

.display {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0;
}
.display em {
  font-style: normal;
  color: var(--gold-deep);
  font-weight: 700;
}
.display.on-ink { color: #fff; }
.display.on-ink em { color: var(--gold-soft); }

h1.display { font-size: clamp(44px, 7.2vw, 104px); font-weight: 700; }
h2.display { font-size: clamp(34px, 5vw, 64px); font-weight: 700; }
h3.display { font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; }

/* Hero — Unica One pour le titre principal */
.hero-headline h1.display {
  font-family: "Unica One", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  font-size: clamp(56px, 8.5vw, 120px);
  line-height: 1.0;
  white-space: nowrap;
}
.hero-headline h1.display em {
  font-family: "Unica One", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--gold-soft);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .hero-headline h1.display { white-space: normal; font-size: clamp(40px, 11vw, 72px); }
}

.lede {
  font-family: var(--sans);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ========== Layout ========== */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }
.section-pad {
  padding: clamp(80px, 12vw, 160px) 0;
}
.section-pad-sm {
  padding: clamp(56px, 8vw, 100px) 0;
}

.ink-bg { background: var(--ink); color: #fff; }
.ink-bg .lede { color: var(--ink-on-ink); }
.paper-bg { background: var(--paper); }
.paper2-bg { background: var(--paper-2); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--ink-deep);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.btn-ghost.on-ink {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost.on-ink:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.3s var(--ease);
}
.link-inline:hover { gap: 16px; }

/* ========== Header / Nav ========== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  overflow: visible;
  padding: 18px 0;
  background: rgba(3, 46, 64, 0);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(3, 46, 64, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: rgba(255,255,255,0.06);
}
.header.solid {
  background: var(--ink);
  position: sticky;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  cursor: pointer;
}
.brand-mark {
  width: 36px;
  height: 36px;
  flex: none;
}
.brand-name {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1;
}
.brand-name .apos { color: var(--gold); margin: 0 1px; }
.brand-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav button {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav button:hover { color: #fff; }
.nav button.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav button.active::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
  vertical-align: middle;
}

.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta .btn {
  padding: 12px 20px;
  font-size: 11px;
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: #fff;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 1.5px;
  background: #fff;
  transition: transform 0.3s var(--ease);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 90;
  padding: 100px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav button {
  text-align: left;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

@media (max-width: 960px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: stretch;
  padding-top: 88px;
  padding-bottom: clamp(40px, 5vw, 64px);
  color: #fff;
  overflow: hidden;
  background: var(--ink-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 30%, rgba(0,0,0,0.8) 55%, rgba(0,0,0,0.4) 75%, rgba(0,0,0,0.1) 90%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 30%, rgba(0,0,0,0.8) 55%, rgba(0,0,0,0.4) 75%, rgba(0,0,0,0.1) 90%, transparent 100%);
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(2,20,28,0.55) 0%,
      rgba(2,20,28,0.35) 20%,
      rgba(3,46,64,0.45) 45%,
      rgba(3,46,64,0.70) 65%,
      rgba(3,46,64,0.90) 82%,
      var(--ink) 95%,
      var(--ink) 100%),
    linear-gradient(90deg, rgba(2,20,28,0.5) 0%, rgba(2,20,28,0) 60%);
}
.hero {
  background: var(--ink);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 64px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: flex-end;
}
.hero-headline {
  max-width: none;
}
.hero-headline h1 {
  margin-top: 24px;
}
.hero-meta {
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}
.hero-meta strong { color: var(--gold-soft); font-weight: 500; }
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-meta { text-align: left; }
  .hero-scroll { display: none; }
}

/* ========== Hero badge ========== */
.hero-locale {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-locale .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 166, 117, 0.2);
}

/* ========== Stats ribbon ========== */
.stats {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 56px 32px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
.stat-num {
  font-family: var(--sans);
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.stat-num sup {
  font-size: 0.45em;
  color: var(--gold-deep);
  font-weight: 400;
  margin-left: 4px;
  top: -0.6em;
}
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 16px;
}
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 36px 20px; }
  .stat:nth-child(2) { border-left: 1px solid var(--line); }
  .stat:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(4) { border-top: 1px solid var(--line); }
}

/* ========== Manifesto ========== */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: flex-start;
}
.manifesto-aside .eyebrow { margin-bottom: 20px; display: flex; }
.manifesto-aside .meta {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.manifesto-body p { font-size: 18px; color: var(--ink-soft); }
.manifesto-body .lede { margin-bottom: 32px; color: var(--ink); }

@media (max-width: 880px) {
  .manifesto { grid-template-columns: 1fr; }
}

/* ========== Services grid ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.svc {
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.4s var(--ease);
  cursor: pointer;
}
.svc:hover { background: var(--paper-2); }
.svc-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.svc-title {
  font-family: var(--sans);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  margin: 20px 0 12px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.svc-desc {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 38ch;
}
.svc-icon {
  position: absolute;
  top: clamp(28px, 4vw, 48px);
  right: clamp(28px, 4vw, 48px);
  width: 32px; height: 32px;
  color: var(--gold-deep);
  opacity: 0.8;
}
.svc-list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-list span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ========== Case study (avant/après) ========== */
.case {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.case-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-deep);
}
.case-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.case-slider {
  position: absolute;
  inset: 0;
  cursor: ew-resize;
  user-select: none;
}
.case-after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.case-handle {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 3;
}
.case-handle::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  border: 2px solid #fff;
  background: var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.case-handle::after {
  content: "⟷";
  position: absolute;
  top: 50%; left: 50%;
  color: #fff;
  font-size: 16px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.case-label {
  position: absolute;
  top: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.case-label.before { left: 20px; }
.case-label.after { right: 20px; }

.case-body .eyebrow { margin-bottom: 24px; display: flex; }
.case-body h2 { margin-bottom: 24px; }
.case-results {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.case-result .num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold-deep);
}
.case-result .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px;
}
.case-meta {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.case-meta strong { color: var(--ink); font-weight: 500; }

@media (max-width: 880px) {
  .case { grid-template-columns: 1fr; }
}

/* ========== Realisations grid ========== */
.real-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: 64px;
}
.real-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-deep);
  display: block;
}
.real-card .img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
}
.real-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.real-card:hover .img-wrap img {
  transform: scale(1.05);
}
.real-card .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2,20,28,0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.real-card:hover .img-wrap::after { opacity: 1; }

.real-card.size-7 { grid-column: span 7; }
.real-card.size-5 { grid-column: span 5; }
.real-card.size-6 { grid-column: span 6; }
.real-card.size-4 { grid-column: span 4; }
.real-card.size-8 { grid-column: span 8; }
.real-card.size-12 { grid-column: span 12; }

.real-card .img-wrap { aspect-ratio: 4/3; }
.real-card.tall .img-wrap { aspect-ratio: 3/4; }
.real-card.wide .img-wrap { aspect-ratio: 16/9; }
.real-card.cinema .img-wrap { aspect-ratio: 21/8; }

.real-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: #fff;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.real-meta .place {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.real-meta h4 {
  font-family: var(--sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  margin: 6px 0 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.real-meta .badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}
.real-meta .badge.sold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.real-meta .badge.dispo {
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border-color: transparent;
}

@media (max-width: 880px) {
  .real-grid { grid-template-columns: 1fr; }
  .real-card[class*="size-"] { grid-column: span 1; }
}

/* ========== Process steps ========== */
.process {
  background: var(--ink);
  color: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.step {
  padding: 40px 28px 40px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.step:last-child { border-right: 0; padding-right: 0; }
.step:not(:first-child) { padding-left: 28px; }
.step-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.step-num::before {
  content: "0";
}
.step-title {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 12px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.step-desc {
  font-size: 14px;
  color: var(--ink-on-ink);
  line-height: 1.6;
}
.step-dot {
  position: absolute;
  top: -7px;
  left: 0;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--gold);
}
.step:not(:first-child) .step-dot { left: 28px; }

@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(3) { padding-left: 0; border-right: 1px solid rgba(255,255,255,0.1); }
  .step:nth-child(3) .step-dot { left: 0; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
  .step { border-right: 0 !important; padding-left: 0 !important; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; }
  .step:first-child { border-top: 0; }
  .step .step-dot { left: 0 !important; }
}

/* ========== Testimonial ========== */
.testimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.testimonial-quote {
  font-family: var(--sans);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  text-wrap: pretty;
  letter-spacing: -0.01em;
}
.testimonial-quote::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 2em;
  color: var(--gold);
  line-height: 0;
  margin-right: 6px;
  vertical-align: -0.35em;
  font-weight: 400;
}
.testimonial-author {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper-3);
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 500; font-size: 15px; }
.testimonial-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.testimonial-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink-deep);
}
.testimonial-img img {
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 720px) {
  .testimonial { grid-template-columns: 1fr; }
}

/* ========== CTA band ========== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: clamp(64px, 10vw, 120px) 0;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
}
.cta-band-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.cta-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 30%, rgba(3,46,64,0.3) 100%);
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-band h2 { max-width: 14ch; }
.cta-band .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 880px) {
  .cta-band-inner { grid-template-columns: 1fr; }
}

/* ========== Footer ========== */
.footer {
  background: var(--ink);
  color: var(--ink-on-ink);
  padding: 80px 0 32px;
}
.footer-logo {
  width: 280px;
  height: auto;
  cursor: pointer;
  display: block;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.2s var(--ease); }
.footer a:hover { color: #fff; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-baseline {
  font-family: var(--sans);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 12px;
  max-width: 32ch;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ========== Page heroes (sub pages) ========== */
.page-hero {
  position: relative;
  padding: 220px 0 clamp(80px, 12vw, 140px);
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,46,64,0.4), rgba(3,46,64,0.9));
}
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.breadcrumb .sep { margin: 0 12px; color: var(--gold); }

/* ========== Métiers — cards alternées ========== */
.metier-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--line);
}
.metier-row:last-child { border-bottom: 0; }
.metier-row.flip .metier-img { order: 2; }
.metier-img {
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--ink-deep);
}
.metier-img img { width: 100%; height: 100%; object-fit: cover; }
.metier-text .eyebrow { display: flex; margin-bottom: 20px; }
.metier-text h3 { margin: 0 0 20px; }
.metier-text p { font-size: 16px; color: var(--ink-soft); margin-bottom: 16px; }
.metier-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.metier-list li {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-soft);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-light);
}
.metier-list li::before {
  content: "—";
  color: var(--gold);
  flex: none;
}
@media (max-width: 880px) {
  .metier-row { grid-template-columns: 1fr; }
  .metier-row.flip .metier-img { order: 0; }
}

/* ========== Réseau ========== */
.member {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.member-portrait {
  aspect-ratio: 3/4;
  background: var(--ink-deep);
  overflow: hidden;
  position: relative;
}
.member-portrait img { width: 100%; height: 100%; object-fit: cover; }
.member-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.06);
}
.member-text .name {
  font-family: var(--sans);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 16px 0 12px;
}
.member-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.member-bio { font-size: 16px; color: var(--ink-soft); margin-top: 24px; }
.member-bio p { margin-bottom: 14px; }
.member-contact {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.member-contact .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.member-contact .val { font-family: var(--sans); font-size: 18px; font-weight: 600; }

.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.zone-cell {
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
}
.zone-cell .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 12px;
}
@media (max-width: 720px) {
  .member { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: 1fr 1fr; }
}

/* ========== Contact form ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
.contact-info { position: sticky; top: 100px; }
.contact-info .lede { margin-bottom: 32px; }
.contact-blocks { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.contact-block { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.contact-block .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.contact-block .val {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--ink);
  line-height: 1.4;
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
}
.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.form-progress span {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
}
.form-progress span.done { background: var(--gold); }
.form-progress span.active { background: var(--ink); }

.form h3 { margin: 0 0 8px; }
.form .lede { font-size: 15px; color: var(--ink-soft); margin-bottom: 32px; font-weight: 400; }

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 2px;
  outline: 0;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  padding: 12px 18px;
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  background: #fff;
}
.chip:hover { border-color: var(--ink); }
.chip.selected {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.form-back {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
}
.form-back:hover { color: var(--ink); }

.form-success {
  text-align: center;
  padding: 40px 0;
}
.form-success svg {
  width: 64px; height: 64px;
  color: var(--gold);
  margin: 0 auto 24px;
}
.form-success h3 { margin-bottom: 16px; }

@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}

/* ========== Reveal animation ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ========== Marquee ========== */
.marquee {
  overflow: hidden;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
  align-items: center;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--sans);
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: "✦";
  color: var(--gold);
  font-style: normal;
}

/* ========== Misc ========== */
.dot-sep {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 14px;
  vertical-align: middle;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 64px;
  align-items: flex-end;
}
.section-head .eyebrow { display: flex; margin-bottom: 16px; }
.section-head h2 { margin: 0; }
.section-head .lede { margin: 0; }
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; }
}

/* ========== Realisations filters ========== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.filter {
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.filter:hover { color: var(--ink); border-color: var(--ink); }
.filter.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter .count {
  margin-left: 8px;
  opacity: 0.6;
  font-size: 10px;
}


/* ========== Section 2 — Nos métiers (4 cartes) ========== */
.metiers4-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.metiers4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.metiers4-grid > .reveal {
  /* Chaque cellule Reveal = même hauteur que la ligne → la carte peut s'étirer */
  display: flex;
  flex-direction: column;
}
.metier4-card {
  display: flex;
  flex-direction: column;
  flex: 1;               /* remplit la hauteur du Reveal qui remplit la cellule grille */
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  box-shadow: 0 4px 20px rgba(3, 46, 64, 0.04);
}
.metier4-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(3, 46, 64, 0.12);
}
.metier4-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-deep);
}
.metier4-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.metier4-card:hover .metier4-img img {
  transform: scale(1.06);
}
.metier4-body {
  padding: 28px 24px 28px;
  position: relative;
}
.metier4-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.metier4-title {
  font-family: var(--sans);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.metier4-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.metier4-arrow {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.metier4-card:hover .metier4-arrow {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

@media (max-width: 1100px) {
  .metiers4-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .metiers4-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ========== Section 3 — Valeurs ========== */
.values-section {
  background: var(--paper);
  border-top: 1px solid var(--line-light);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
}
.values-grid::before,
.values-grid::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.values-grid::before { top: 0; }
.values-grid::after { bottom: 0; }

.value {
  padding: 56px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
}
.value:last-child { border-right: 0; }
.value-icon {
  width: 56px; height: 56px;
  margin: 0 auto 28px;
  color: var(--gold-deep);
}
.value-icon svg { width: 100%; height: 100%; }
.value-title {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.value-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 26ch;
  margin: 0 auto;
}

.values-editorial {
  max-width: 720px;
  margin: 96px auto 0;
  text-align: center;
  font-family: var(--sans);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.values-editorial p { margin-bottom: 24px; }
.values-editorial em {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 880px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value { border-right: 1px solid var(--line); }
  .value:nth-child(2) { border-right: 0; }
  .value:nth-child(3), .value:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: 0; border-top: 1px solid var(--line); padding: 40px 20px; }
  .value:first-child { border-top: 0; }
}

/* ========== Section 4 — À la une ========== */
.alaune-section {
  background: var(--paper-2);
  padding: 80px 0 clamp(40px, 6vw, 80px);
}
.alaune-section .eyebrow {
  padding-bottom: 0;
}
.alaune-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-top: 10px;
}
.alaune-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-deep);
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(3, 46, 64, 0.15);
}
.alaune-slider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.alaune-slider img.active { opacity: 1; }
.alaune-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.alaune-dot {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.alaune-dot.active { background: #fff; }
.alaune-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 2;
}
.alaune-body {
  padding: 16px 0;
}
.alaune-place {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.alaune-title {
  font-family: var(--sans);
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  margin: 16px 0 24px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.alaune-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
}
.alaune-specs {
  list-style: none;
  padding: 24px 0;
  margin: 0 0 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.alaune-specs li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}
.alaune-specs span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.alaune-specs strong {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 880px) {
  .alaune-grid { grid-template-columns: 1fr; }
}

/* ========== Section 5 — CTA final ========== */
.cta-final {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper);
}
.cta-final-card {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: clamp(64px, 10vw, 120px) 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(208, 177, 137, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(208, 177, 137, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-final-card > * { position: relative; }
.cta-final-title {
  max-width: 14ch;
  margin: 0 auto;
}



/* ========== Pierre feedback overrides ========== */

/* Hero — lede bigger + 2 lines */
.hero-lede {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  max-width: none;
}
.hero-headline h1.display {
  letter-spacing: -0.015em;
  font-size: clamp(56px, 8.5vw, 120px);
  line-height: 1.0;
  white-space: nowrap;
}
.hero-headline h1.display em {
  white-space: nowrap;
}
@media (max-width: 720px) {
  .hero-headline h1.display { white-space: normal; font-size: clamp(40px, 11vw, 72px); }
}

/* Eyebrow solo + alaune eyebrow — bigger */
.eyebrow.solo,
.alaune-section .eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

/* ========== Section 2 — Métiers : overflow vers hero + textes plus gros ========== */
.metiers4-section {
  padding-top: 40px;           /* padding au lieu de margin sur la grille → évite le margin-collapse */
  padding-bottom: clamp(56px, 8vw, 96px);
  position: relative;
  z-index: 5;
  background: var(--ink);
}
.metiers4-section .metiers4-grid {
  margin-top: 0;               /* était 40px → géré par padding-top de la section */
  position: relative;
  z-index: 5;
}
.metier4-card {
  box-shadow: 0 20px 50px rgba(3, 46, 64, 0.18);
}
.metier4-title {
  font-size: clamp(20px, 1.7vw, 24px) !important;
}
.metier4-desc {
  font-size: 15px !important;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ========== Section 3 — Valeurs : icônes + textes plus gros, padding réduit ========== */
.values-section {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}
.values-section > .shell > .reveal:first-child > div {
  margin-bottom: 56px !important;
}
.value {
  padding: 44px 28px;
}
.value-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}
.value-icon svg {
  stroke-width: 2 !important;
}
.value-title {
  font-size: 22px !important;
  margin-bottom: 14px !important;
}
.value-desc {
  font-size: 15px;
  line-height: 1.55;
  max-width: 30ch;
}

/* Editorial bigger + wider */
.values-editorial {
  max-width: 980px !important;
  margin-top: 72px !important;
  font-size: clamp(20px, 1.7vw, 24px) !important;
  line-height: 1.55 !important;
}
.values-editorial p { margin-bottom: 20px; }

/* ========== Section 4 — À la une : eyebrow + textes plus gros ========== */
.alaune-title {
  font-size: clamp(34px, 3.4vw, 48px) !important;
  margin-bottom: 28px !important;
}
.alaune-desc {
  font-size: 17px !important;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.alaune-specs strong {
  font-size: 15px !important;
}

/* ========== Section 5 — CTA final : padding réduit ========== */
.cta-final {
  padding: clamp(48px, 6vw, 72px) 0 !important;
}
.cta-final-card {
  padding: clamp(56px, 8vw, 96px) 32px !important;
}



/* Values h2 — 2 lignes garanties */
.values-h2 {
  text-align: center;
}
.values-h2 .line {
  display: block;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .values-h2 .line { white-space: normal; }
}


/* ========== Section 3 — Valeurs : passage en ink (sur fond bleu) ========== */
.values-section {
  background: var(--ink) !important;
  color: #fff;
}
.values-section .eyebrow {
  color: var(--gold-soft);
}
.values-section .eyebrow::before {
  background: var(--gold-soft);
}
.values-section h2.display {
  color: #fff !important;
}
.values-section h2.display em {
  color: var(--gold-soft) !important;
}

/* Value cells */
.values-section .values-grid::before,
.values-section .values-grid::after {
  background: rgba(255, 255, 255, 0.12);
}
.values-section .value {
  border-right-color: rgba(255, 255, 255, 0.12) !important;
}
.values-section .value-icon {
  color: var(--gold-soft);
}
.values-section .value-title {
  color: #fff !important;
}
.values-section .value-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Editorial */
.values-section .values-editorial {
  color: rgba(255, 255, 255, 0.85) !important;
}
.values-section .values-editorial em {
  color: #fff !important;
  font-weight: 700;
}

/* responsive borders on dark */
@media (max-width: 880px) {
  .values-section .value:nth-child(3),
  .values-section .value:nth-child(4) {
    border-top-color: rgba(255, 255, 255, 0.12);
  }
}
@media (max-width: 560px) {
  .values-section .value {
    border-top-color: rgba(255, 255, 255, 0.12) !important;
  }
}


/* ========== À la une — specs alignées en stack vertical ========== */
.alaune-specs {
  list-style: none;
  padding: 24px 0 !important;
  margin: 0 0 32px !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px 40px !important;
}
.alaune-specs li {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  text-align: left !important;
}
.alaune-specs li span {
  font-family: var(--sans);
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
}
.alaune-specs li strong {
  font-family: var(--sans) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: var(--ink-soft) !important;
  text-align: left !important;
  line-height: 1.3 !important;
}


/* ========== Section 3 — Valeurs : encadré clair pour les 4 icônes ========== */
.values-section .values-grid {
  background: #faf8f3 !important;
  border-radius: 8px;
  padding: 24px 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
}
.values-section .values-grid::before,
.values-section .values-grid::after {
  display: none;
}

/* Inverser couleurs des cellules : retour à ink sur fond clair */
.values-section .value {
  border-right-color: var(--line) !important;
}
.values-section .value-icon {
  color: var(--gold-deep);
}
.values-section .value-title {
  color: var(--ink) !important;
}
.values-section .value-desc {
  color: var(--ink-soft);
}

@media (max-width: 880px) {
  .values-section .value:nth-child(3),
  .values-section .value:nth-child(4) {
    border-top-color: var(--line) !important;
  }
}
@media (max-width: 560px) {
  .values-section .value {
    border-top-color: var(--line) !important;
  }
}


/* ========================================================================
   PAGE NOS MÉTIERS
   ======================================================================== */

/* ---- Hero ---- */
.metiers-page-hero {
  position: relative;
  padding: 180px 0 clamp(80px, 10vw, 120px);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.metiers-page-hero-bg { position: absolute; inset: 0; }
.metiers-page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 50%, rgba(0,0,0,0.5) 80%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 50%, rgba(0,0,0,0.5) 80%, transparent 100%);
}
.metiers-page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,46,64,0.4), rgba(3,46,64,0.8) 70%, var(--ink) 100%);
}
.metiers-page-hero-inner { position: relative; z-index: 2; max-width: 900px; }
.metiers-page-hero-title {
  font-size: clamp(56px, 9vw, 128px) !important;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 32px !important;
}

/* ---- Section générique métier ---- */
.metier-section {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}
.metier-section.paper-bg { background: var(--paper); }
.metier-section.ink-section { background: var(--ink); color: #fff; }

.metier-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.metier-section-inner.reverse .metier-text { order: 2; }
.metier-section-inner.reverse .metier-visual { order: 1; }

@media (max-width: 880px) {
  .metier-section-inner,
  .metier-section-inner.reverse {
    grid-template-columns: 1fr;
  }
  .metier-section-inner.reverse .metier-text,
  .metier-section-inner.reverse .metier-visual {
    order: initial;
  }
}

/* ---- Bloc texte ---- */
.metier-index {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 28px;
}
.metier-index.on-ink {
  color: var(--gold-soft);
}
.metier-title {
  font-size: clamp(36px, 5vw, 64px) !important;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 !important;
}
.metier-subtitle {
  font-family: var(--sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 20px;
  margin-bottom: 32px;
  line-height: 1.4;
  max-width: 32ch;
}
.metier-subtitle.on-ink {
  color: rgba(255,255,255,0.75);
}
.metier-body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 18px;
}
.metier-body.on-ink p {
  color: rgba(255,255,255,0.78);
}
.metier-body p:last-child { margin-bottom: 0; }

/* ---- Visuel image avec overlay analyse ---- */
.metier-visual {
  position: relative;
}
.metier-visual-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink-deep);
  box-shadow: 0 30px 80px rgba(3, 46, 64, 0.18);
}
.metier-visual-frame.programme { aspect-ratio: 4 / 5; }
.metier-visual-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.metier-visual-frame:hover img { transform: scale(1.03); }

.metier-overlay {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
}

.metier-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
}

/* ---- Avant / après pour section 2 ---- */
.metier-ba-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink-deep);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.metier-ba-frame .case-visual {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}

/* ---- Section 4 — Transaction ---- */
.transaction-section { text-align: left; }
.transaction-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.transaction-title {
  font-size: clamp(36px, 5vw, 64px) !important;
}

.transaction-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.pillar {
  padding: 56px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.pillar:last-child { border-right: 0; }
.pillar-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  color: var(--gold-soft);
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  margin-bottom: 12px;
}
.pillar-title {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}

.transaction-editorial {
  max-width: 800px;
  margin: 80px auto 0;
  text-align: center;
  font-family: var(--sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}
.transaction-editorial p {
  margin-bottom: 20px;
}
.transaction-editorial em {
  font-style: normal;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 720px) {
  .transaction-pillars {
    grid-template-columns: 1fr;
  }
  .pillar {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 40px 20px;
  }
  .pillar:last-child { border-bottom: 0; }
}


/* Transaction subtitle moved between pillars and editorial */
.transaction-subtitle {
  text-align: center !important;
  max-width: none !important;
  margin: 64px auto 0 !important;
  font-size: clamp(20px, 1.8vw, 26px) !important;
  font-weight: 600 !important;
  color: #fff !important;
}
.transaction-editorial {
  margin-top: 24px !important;
}


/* Footer — trait doré en haut pour démarcation */
.footer {
  border-top: 1px solid var(--gold) !important;
  box-shadow: inset 0 1px 0 var(--gold-soft);
}


/* Images "Nos métiers" — taille fixée à 450×600px */
.metier-visual-frame,
.metier-ba-frame {
  width: 450px !important;
  height: 600px !important;
  aspect-ratio: auto !important;
  max-width: 100% !important;
}


/* Transaction — compactage hauteur */
.transaction-section {
  padding: 56px 0 64px !important;
  height: auto !important;
}
.transaction-section .transaction-head {
  margin-bottom: 36px !important;
}
.transaction-section .pillar {
  padding: 28px 24px !important;
}
.transaction-section .pillar-icon {
  width: 44px !important;
  height: 44px !important;
  margin-bottom: 12px !important;
}
.transaction-section .pillar-num {
  margin-bottom: 6px !important;
}
.transaction-subtitle {
  margin: 28px auto 0 !important;
}
.transaction-editorial {
  margin-top: 12px !important;
}
.transaction-editorial p {
  margin-bottom: 12px !important;
}
.transaction-section .transaction-editorial + .reveal > div {
  margin-top: 28px !important;
}


/* Pillar icons — centrage uniforme + tailles équivalentes */
.transaction-section .pillar {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
}
.transaction-section .pillar-icon {
  width: 110px !important;
  height: 110px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.transaction-section .pillar-icon svg {
  width: 110px !important;
  height: 110px !important;
}
.transaction-section .pillar-title {
  margin: 0 !important;
  text-align: center !important;
}


/* ========================================================================
   PAGE NOS RÉALISATIONS
   ======================================================================== */

/* Étude de cas — 3 bénéfices */
.case-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.case-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.case-benefit-icon {
  margin: 0 auto;
}
.case-benefit-label {
  text-align: center;
}
.case-benefit-icon {
  width: 32px;
  height: 32px;
  color: var(--gold-deep);
}
.case-benefit-icon svg { width: 100%; height: 100%; }
.case-benefit-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

@media (max-width: 560px) {
  .case-benefits { grid-template-columns: 1fr; }
}

/* Visuel cas — étude foncière avec overlay parcellaire */
.case-frame {
  position: relative;
}

/* Galerie */
.gallery-section {
  padding-top: clamp(40px, 6vw, 80px) !important;
}
.gallery-head {
  max-width: 900px;
  margin-bottom: 64px;
}
.gallery-head .metier-index {
  margin-bottom: 20px;
}
.gallery-title {
  font-size: clamp(36px, 4.5vw, 56px) !important;
  margin-bottom: 24px !important;
}
.gallery-sub {
  max-width: 56ch !important;
  margin-top: 0 !important;
  font-size: 17px !important;
}

.gallery-grid {
  margin-top: 0 !important;
}

/* Cartes galerie — tag premium au survol */
.gallery-card .badge.tag {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
}
.gallery-card .real-meta {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.gallery-card:hover .real-meta {
  opacity: 1;
  transform: translateY(0);
}
.gallery-card .img-wrap {
  border-radius: 0;
}
.gallery-card .img-wrap img {
  transition: transform 1.4s var(--ease);
}
.gallery-card:hover .img-wrap img {
  transform: scale(1.04);
}
.gallery-card .img-wrap::after {
  background: linear-gradient(180deg, transparent 40%, rgba(2,20,28,0.72) 100%) !important;
}


/* Étude de cas — citation entre titre et paragraphe */
.case-quote {
  position: relative;
  margin: 32px 0 0;
  padding: 14px 0 14px 20px;
  border-left: 2px solid var(--gold);
  font-family: var(--sans);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  max-width: none;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .case-quote { white-space: normal; }
}


/* Force 2 lignes exactes sur titre étude de cas */
.metier-title.two-lines .line {
  display: block;
  white-space: nowrap;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.025em;
}
@media (max-width: 720px) {
  .metier-title.two-lines .line {
    white-space: normal;
    font-size: clamp(26px, 7vw, 40px);
  }
}


/* ========== Galerie réalisations — masonry layout ========== */
.gallery-grid {
  /* override bento grid */
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  column-count: 3;
  column-gap: 20px;
  margin-top: 0 !important;
}
@media (max-width: 960px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 560px) {
  .gallery-grid { column-count: 1; }
}

/* Each card → block inside column flow, no fixed aspect ratio */
.gallery-grid .reveal {
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 20px;
}
.gallery-grid .gallery-card {
  display: block !important;
  width: 100% !important;
  grid-column: auto !important;
  position: relative;
}
.gallery-grid .gallery-card .img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: auto !important;
  height: auto !important;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(3, 46, 64, 0.08);
}
.gallery-grid .gallery-card .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}


/* ========== Galerie — grille mosaïque 9 images (référence Pierre) ========== */
.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  grid-template-rows: repeat(4, minmax(180px, 1fr)) !important;
  grid-template-areas:
    "a a b c"
    "a a b d"
    "e f g h"
    "e i i h" !important;
  gap: 16px !important;
  column-count: auto !important;
}
.gallery-grid .gallery-cell {
  display: block;
  margin: 0 !important;
}
.gallery-grid .area-a { grid-area: a; }
.gallery-grid .area-b { grid-area: b; }
.gallery-grid .area-c { grid-area: c; }
.gallery-grid .area-d { grid-area: d; }
.gallery-grid .area-e { grid-area: e; }
.gallery-grid .area-f { grid-area: f; }
.gallery-grid .area-g { grid-area: g; }
.gallery-grid .area-h { grid-area: h; }
.gallery-grid .area-i { grid-area: i; }

.gallery-grid .gallery-card {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}
.gallery-grid .gallery-card .img-wrap {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(3, 46, 64, 0.08);
}
.gallery-grid .gallery-card .img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

@media (max-width: 880px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(6, minmax(180px, 1fr)) !important;
    grid-template-areas:
      "a a"
      "a a"
      "b c"
      "b d"
      "e f"
      "g h" !important;
  }
  .gallery-grid .area-i { display: none; }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    grid-template-areas: none !important;
  }
  .gallery-grid .gallery-cell { grid-area: auto !important; min-height: 240px; }
}


/* Étude de cas — fond sable plus marqué */
.case-section {
  background: #f2ede3 !important;
}


/* ========================================================================
   PAGE NOTRE RÉSEAU
   ======================================================================== */

/* Section présentation */
.reseau-presentation { background: #faf8f3 !important; }
.reseau-head {
  max-width: 760px;
  margin-bottom: 64px;
}
.reseau-head .metier-index { margin-bottom: 20px; }
.reseau-title {
  font-size: clamp(34px, 4.5vw, 56px) !important;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.reseau-body-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: flex-start;
}
.reseau-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.reseau-body p strong {
  color: var(--ink);
  font-weight: 700;
}

/* 4 piliers en colonne */
.reseau-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.reseau-pillar {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(3, 46, 64, 0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.reseau-pillar:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(3, 46, 64, 0.08);
}
.reseau-pillar-icon {
  width: 48px;
  height: 48px;
  color: var(--gold-deep);
}
.reseau-pillar-icon svg { width: 100%; height: 100%; }
.reseau-pillar-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.reseau-pillar-desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}

@media (max-width: 880px) {
  .reseau-body-grid { grid-template-columns: 1fr; }
}

/* CTA row */
.reseau-cta-row {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.reseau-cta-text {
  font-family: var(--sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--ink);
  max-width: 40ch;
  line-height: 1.4;
}
.reseau-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 880px) {
  .reseau-cta-row { grid-template-columns: 1fr; }
  .reseau-cta-actions { justify-content: flex-start; }
}

/* ============ Section 2 — Carte ============ */
.reseau-carte {
  padding-bottom: clamp(100px, 14vw, 160px) !important;
}
.carte-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.carte-head .metier-index { margin-bottom: 20px; }
.carte-title {
  font-size: clamp(34px, 4.5vw, 56px) !important;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px !important;
}
.carte-sub {
  max-width: 60ch !important;
  margin: 0 auto !important;
  font-size: 17px !important;
}

/* SVG map */
.map-wrap {
  position: relative;
  width: 100%;
  margin-top: 24px;
}
.map {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25));
}

/* Node hover */
.map-node {
  cursor: default;
  transition: transform 0.4s var(--ease);
}
.map-node:not(.hq):hover {
  transform: translate(var(--tx, 0), var(--ty, 0)) scale(1.05);
}
.map-node circle:first-child {
  transition: r 0.3s var(--ease);
}

/* HQ pulse animation */
.map-node.hq circle:first-of-type {
  transform-origin: center;
  animation: hqPulse 2.6s ease-in-out infinite;
}
@keyframes hqPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.25;
  }
}

/* Lines stroke-dash draw on reveal */
.map-line {
  stroke-dasharray: 3 6;
  stroke-dashoffset: 0;
}

/* Legend below map */
.map-legend {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(3, 46, 64, 0.85);
  border: 1px solid rgba(217, 191, 149, 0.3);
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.legend-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.legend-dot.hq-dot {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(208, 177, 137, 0.4);
}
.legend-line {
  display: inline-block;
  width: 16px; height: 1px;
  border-top: 1px dashed var(--gold);
  background: none;
}

@media (max-width: 720px) {
  .map-legend {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 24px;
    background: rgba(3, 46, 64, 0.4);
  }
}


/* ========================================================================
   PAGE CONTACT — version simple
   ======================================================================== */

.contact-section {
  background: #faf8f3 !important;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: flex-start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Side */
.contact-side .metier-index { margin-bottom: 20px; }
.contact-title {
  font-size: clamp(32px, 4vw, 48px) !important;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px !important;
}
.contact-side-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 40px;
  max-width: 42ch;
}

.contact-side .contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}
.contact-side .contact-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-side .contact-block .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  flex: none;
  width: 90px;
  padding-top: 4px;
}
.contact-side .contact-block .val {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  line-height: 1.4;
}
.contact-side .contact-block .val.phone {
  font-size: 22px;
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
}
.contact-side .contact-block .val.phone:hover,
.contact-side .contact-block a.val:hover {
  color: var(--gold-deep);
}

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(3, 46, 64, 0.06);
}
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .contact-form .field-row { grid-template-columns: 1fr; }
}
.contact-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

/* Success state for simple form */
.contact-form .form-success {
  text-align: center;
  padding: 24px 0;
}
.contact-form .form-success svg {
  width: 56px; height: 56px;
  color: var(--gold-deep);
  margin: 0 auto 20px;
}
.contact-form .form-success h3 {
  font-size: 28px !important;
}
.form-error {
  color: #c0392b;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  background: rgba(192, 57, 43, 0.07);
  border-left: 3px solid #c0392b;
  margin-bottom: 16px;
}
.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


/* Contact — compenser l'absence de hero pour ne pas passer sous le header */
.contact-section {
  padding-top: clamp(110px, 11vw, 170px) !important;
}


/* =====================================================================
   HERO — centre (logo + tagline) et accroche basse
   ===================================================================== */
.hero-center {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-logo {
  width: clamp(260px, 49%, 730px);
  height: auto;
  pointer-events: auto;
}
.hero-tagline {
  font-family: "Unica One", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  font-size: clamp(13px, 1.5vw, 20px);
  color: rgba(255,255,255,0.72);
  margin: 20px 0 0;
}
.hero-lede-wrap {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero-lede-text {
  font-family: var(--sans);
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
  text-align: center;
}
@media (max-width: 720px) {
  .hero-logo { width: clamp(200px, 78%, 440px); }
  .hero-tagline { font-size: clamp(9px, 2.5vw, 12px); letter-spacing: 0.3em; text-indent: 0.3em; }
  .hero-lede-text { font-size: clamp(15px, 4vw, 19px); }
}

/* =====================================================================
   RESPONSIVE — cadres visuels métiers
   ===================================================================== */
@media (max-width: 880px) {
  .metier-visual-frame,
  .metier-ba-frame {
    width: 100% !important;
    height: 400px !important;
  }
}
@media (max-width: 560px) {
  .metier-visual-frame,
  .metier-ba-frame {
    height: 280px !important;
  }
}

/* =====================================================================
   RESPONSIVE — footer mobile compact
   ===================================================================== */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-brand { grid-column: 1 !important; }
}

/* =====================================================================
   SUB-PAGES HERO — lede responsive
   ===================================================================== */
.metiers-page-hero-lede {
  color: rgba(255,255,255,0.85);
  margin-top: 28px;
  font-size: clamp(18px, 1.5vw, 22px);
}

/* =====================================================================
   MÉTIER SUBTITLES — gras, une ligne, retour à la ligne sur mobile
   ===================================================================== */
.metier-subtitle {
  font-weight: 700 !important;
  max-width: none !important;
  white-space: nowrap;
}
@media (max-width: 880px) {
  .metier-subtitle { white-space: normal !important; }
}

/* =====================================================================
   TRANSACTION — CTA centré
   ===================================================================== */
.transaction-cta {
  margin-top: 56px;
  text-align: center;
}

/* =====================================================================
   HEADER — logo image + nav buttons size
   ===================================================================== */
.brand-logo {
  height: 64px;
  width: auto;
  position: relative;
  z-index: 1;
}
.nav button {
  font-size: 15px !important;
  font-weight: 700 !important;
}

/* =====================================================================
   CONTACT SIDE — alignement naturel gauche
   ===================================================================== */
.contact-side {
  text-align: left;
}
.contact-side .contact-title {
  max-width: 100%;
}
.contact-side .contact-side-text {
  max-width: 42ch;
}

/* =====================================================================
   FOOTER — suppression du padding de marque inutile
   ===================================================================== */
.footer-brand .brand { margin-bottom: 0; }

/* =====================================================================
   RESEAU CARTE — padding top harmonisé
   ===================================================================== */
.reseau-carte {
  padding-top: clamp(80px, 11vw, 140px);
}
