/* ─────────────────────────────────────────
   ROOT & RESET
───────────────────────────────────────── */
:root {
  --ink:     #ffffff;
  --white:   #0c0b09;
  --off:     #f5f5f5;
  --mid:     #e0e0e0;
  --rule:    rgba(12,11,9,0.1);
  --gold:    #0c0b09;
  --gold2:   #333333;
  --ash:     rgba(12,11,9,0.45);
  --serif:   'IvyPresto Display', Helvetica, Arial, sans-serif;
  --cond:    century-gothic, Arial, sans-serif;
  --body:    century-gothic, Arial, sans-serif;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease2:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--body);
  background: #ffffff;
  color: var(--white);
  overflow-x: hidden;
  cursor: auto;
}

/* Pas de grain, fond blanc */
body::before { display: none; }

/* ─────────────────────────────────────────
   CURSOR — normal
───────────────────────────────────────── */
*, a, button { cursor: auto !important; }
#cur { display: none; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  border-bottom: 1px solid var(--rule);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
}
.nav-logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 100;
  font-size: 13px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
}
.nav-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 16px;
  border: 1px solid rgba(12,11,9,0.2);
  background: rgba(12,11,9,0.04);
}
.nav-badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--white);
  animation: glow 2.5s ease-in-out infinite;
}
@keyframes glow {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.nav-badge span {
  font-family: var(--cond);
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--white); font-weight: 400;
}
.nav-right { display: flex; gap: 0; }
.nav-right a {
  font-family: var(--cond);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ash); text-decoration: none; padding: 6px 16px;
  transition: color 0.25s;
}
.nav-right a:hover { color: var(--white); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  background: #ffffff;
}
.hero-lines { display: none; }
.hero-content {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  position: relative; z-index: 2;
  max-width: 1400px;
}
.hero-overline {
  font-family: var(--cond);
  font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--white); margin-bottom: 32px; font-weight: 400;
  display: flex; align-items: center; gap: 20px;
  animation: fade-up 0.8s var(--ease) both;
}
.hero-overline::before {
  content: ''; width: 48px; height: 1px;
  background: var(--white);
}
.hero-h1 {
  font-family: var(--cond);
  font-size: clamp(50px, 8vw, 160px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-h1 span {
  display: block;
  animation: fade-up 0.9s var(--ease) both;
}
.hero-h1 span:nth-child(1) { animation-delay: 0.05s; }
.hero-h1 span:nth-child(2) { animation-delay: 0.12s; }
.hero-h1 span:nth-child(3) {
  animation-delay: 0.19s;
  color: transparent;
  -webkit-text-stroke: 1px rgba(12,11,9,0.2);
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 100;
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--ash);
  max-width: 680px;
  margin-top: 28px; margin-bottom: 56px;
  line-height: 1.5;
  animation: fade-up 1s var(--ease) 0.3s both;
}
.hero-sub em { color: var(--white); font-style: italic; }

/* Hero stats */
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
  animation: fade-up 1s var(--ease) 0.45s both;
}
.h-stat {
  padding: 0 48px 0 0;
  margin-right: 48px;
  border-right: 1px solid var(--rule);
}
.h-stat:last-child { border-right: none; }
.h-stat-num {
  font-family: var(--cond);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700; color: var(--white);
  line-height: 1; letter-spacing: -0.02em;
}
.h-stat-num span { color: var(--ash); }
.h-stat-label {
  font-family: var(--cond);
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ash); margin-top: 6px; font-weight: 300;
}

/* Hero CTAs */
.hero-ctas {
  position: absolute;
  bottom: 56px; right: 56px;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 12px;
  animation: fade-up 1s var(--ease) 0.55s both;
  z-index:10;
}

/* ─────────────────────────────────────────
   BOUTONS — carrés noirs
───────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  padding: 14px 48px;
  background: #000;
  color: #fff;
  font-family: century-gothic, Helvetica, Arial, times, sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-gold:hover {
  background: #fff;
  color: #000;
}
.btn-ghost-gold {
  display: inline-block;
  padding: 14px 48px;
  background: #fff;
  color: #000;
  font-family: century-gothic, Helvetica, Arial, times, sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-ghost-gold:hover {
  background: #000;
  color: #fff;
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 56px; left: 56px;
  display: flex; align-items: center; gap: 16px;
  animation: fade-up 1s var(--ease) 0.7s both;
}
.scroll-arrow {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, #0c0b09);
  position: relative; overflow: hidden;
}
.scroll-arrow::after {
  content: '';
  position: absolute; top: -100%; width: 100%; height: 100%;
  background: var(--white);
  animation: drop 2s ease-in-out infinite;
}
@keyframes drop { 0%{top:-100%} 100%{top:200%} }
.scroll-text {
  font-family: var(--cond);
  font-size: 8px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ash); font-weight: 300;
  writing-mode: vertical-rl; transform: rotate(180deg);
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────
   MANIFESTE
───────────────────────────────────────── */
.manifeste {
  padding: 120px 56px;
  border-top: 1px solid var(--rule);
  position: relative; overflow: hidden;
  background: #ffffff;
}
.manifeste-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
}
.manifeste-label {
  font-family: var(--cond);
  font-size: 9px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 28px; font-weight: 400;
  display: flex; align-items: center; gap: 16px;
}
.manifeste-label::before { content: '—'; color: rgba(12,11,9,0.3); }
.manifeste-left h2 {
  font-family: var(--cond);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700; text-transform: uppercase; line-height: 1.1;
  letter-spacing: 0.02em; color: var(--white);
}
.manifeste-right p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 100;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.7; color: var(--ash);
  margin-bottom: 32px;
}
.manifeste-right p strong { color: var(--white); font-weight: 400; font-style: normal; }

/* Pillars */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 80px; max-width: 1400px; margin-left: auto; margin-right: auto;
}
.pillar {
  padding: 48px 40px;
  border: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.4s, background 0.4s;
  position: relative; overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: #0c0b09;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { border-color: rgba(12,11,9,0.15); background: rgba(12,11,9,0.02); }
.pillar-num {
  font-family: var(--cond);
  font-size: 56px; font-weight: 800; line-height: 1;
  color: rgba(12,11,9,0.05); letter-spacing: -0.03em;
}
.pillar-title {
  font-family: var(--cond);
  font-size: 18px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--white);
}
.pillar-body {
  font-family: var(--body);
  font-size: 13px; line-height: 1.75;
  color: var(--ash); font-weight: 300;
}

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process-section {
  background: var(--off);
  padding: 120px 56px;
  border-top: 1px solid var(--rule);
}
.process-header {
  max-width: 1400px; margin: 0 auto 80px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.process-header h2 {
  font-family: var(--cond);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white);
}
.process-header span {
  font-family: var(--cond);
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ash);
}
.steps {
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.step {
  display: grid; grid-template-columns: 80px 1fr 1fr;
  gap: 48px; align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s;
}
.step:first-child { border-top: 1px solid var(--rule); }
.step-num {
  font-family: var(--cond);
  font-size: 80px; font-weight: 800; line-height: 1;
  color: rgba(12,11,9,0.06); letter-spacing: -0.04em;
  margin-top: -10px;
}
.step-left h3 {
  font-family: var(--cond);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--white);
  margin-bottom: 16px;
}
.step-left .step-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(12,11,9,0.2);
  font-family: var(--cond);
  font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px; font-weight: 400;
}
.step-right { padding-top: 8px; }
.step-right p {
  font-family: var(--body);
  font-size: 14px; line-height: 1.8;
  color: var(--ash); font-weight: 300;
  margin-bottom: 20px;
}
.step-details { display: flex; flex-direction: column; gap: 8px; }
.step-detail {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--cond);
  font-size: 11px; letter-spacing: 0.08em;
  color: rgba(12,11,9,0.38); font-weight: 300;
}
.step-detail::before {
  content: '';
  width: 16px; height: 1px; background: rgba(12,11,9,0.3); flex-shrink: 0;
  margin-top: 7px;
}

/* ─────────────────────────────────────────
   ATELIER
───────────────────────────────────────── */
.atelier-section {
  padding: 120px 56px;
  max-width: 1400px; margin: 0 auto;
}
.atelier-top {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 80px;
}
.at-left .section-label {
  font-family: var(--cond);
  font-size: 9px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 24px; font-weight: 400;
}
.at-left h2 {
  font-family: var(--cond);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.01em; color: var(--white);
  line-height: 1; margin-bottom: 8px;
}
.at-left .at-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 100;
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--ash); margin-top: 16px; display: block;
}
.at-right p {
  font-family: var(--body);
  font-size: 14px; line-height: 1.85;
  color: var(--ash); font-weight: 300; margin-bottom: 36px;
}
.atelier-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.ag-card {
  background: var(--off);
  border: 1px solid var(--rule);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.4s, background 0.4s;
  position: relative; overflow: hidden;
}
.ag-card:hover { border-color: rgba(12,11,9,0.2); background: rgba(12,11,9,0.03); }
.ag-number {
  font-family: var(--cond);
  font-size: 48px; font-weight: 800;
  color: var(--white); line-height: 1;
  letter-spacing: -0.03em;
}
.ag-number span { font-size: 16px; font-weight: 400; color: var(--ash); }
.ag-title {
  font-family: var(--cond);
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--white);
}
.ag-body {
  font-family: var(--body);
  font-size: 12px; line-height: 1.7;
  color: var(--ash); font-weight: 300;
}

/* ─────────────────────────────────────────
   COULEURS
───────────────────────────────────────── */
.colour-section {
  background: var(--off);
  border-top: 1px solid var(--rule);
  padding: 120px 56px;
}
.cs-inner { max-width: 1400px; margin: 0 auto; }
.cs-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 80px;
}
.cs-left .label {
  font-family: var(--cond);
  font-size: 9px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 24px; font-weight: 400;
}
.cs-left h2 {
  font-family: var(--cond);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.01em; color: var(--white); line-height: 1;
}
.cs-left h2 em {
  font-family: var(--serif);
  font-style: italic; font-weight: 100;
  font-size: 0.7em; color: var(--ash);
  text-transform: none; display: block;
}
.cs-right p {
  font-family: var(--body);
  font-size: 14px; line-height: 1.85;
  color: var(--ash); font-weight: 300; margin-bottom: 24px;
}
.colour-blocks {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px;
  margin-bottom: 32px;
}
.colour-block {
  aspect-ratio: 1/1.4;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.colour-block:hover { transform: scaleY(1.03); z-index: 2; }
.cb-fill { width: 100%; height: 100%; }
.cb-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 12px 12px;
  background: linear-gradient(to top, rgba(12,11,9,0.7) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
}
.colour-block:hover .cb-label { opacity: 1; }
.cb-name {
  font-family: var(--serif);
  font-size: 11px; font-style: italic; font-weight: 100;
  color: #ffffff; line-height: 1.2;
}
.cb-ref {
  font-family: var(--cond);
  font-size: 7px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 3px;
}
.cs-note {
  font-family: var(--cond);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ash); text-align: center; font-weight: 300;
}

/* ─────────────────────────────────────────
   PROFILS
───────────────────────────────────────── */
.profiles-section {
  padding: 120px 56px;
  max-width: 1400px; margin: 0 auto;
}
.pf-header {
  margin-bottom: 64px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.pf-header h2 {
  font-family: var(--cond);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white);
}
.pf-header span {
  font-family: var(--cond);
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ash);
}
.profiles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.profile-card {
  border: 1px solid var(--rule);
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 0;
  transition: border-color 0.4s, background 0.4s;
  position: relative; overflow: hidden;
}
.profile-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(12,11,9,0.03) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.profile-card:hover { border-color: rgba(12,11,9,0.15); }
.profile-card:hover::after { opacity: 1; }
.pc-num {
  font-family: var(--cond);
  font-size: 100px; font-weight: 800; line-height: 1;
  color: rgba(12,11,9,0.04); letter-spacing: -0.05em;
  margin-bottom: -30px; display: block;
}
.pc-tag {
  font-family: var(--cond);
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 20px; font-weight: 400;
}
.pc-title {
  font-family: var(--cond);
  font-size: clamp(18px, 2vw, 28px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 20px; line-height: 1.1;
}
.pc-body {
  font-family: var(--body);
  font-size: 13px; line-height: 1.75;
  color: var(--ash); font-weight: 300; margin-bottom: 32px; flex: 1;
}
.pc-items {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 24px; border-top: 1px solid var(--rule);
}
.pc-item {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--cond);
  font-size: 10px; letter-spacing: 0.1em;
  color: rgba(12,11,9,0.32); font-weight: 300;
}
.pc-item::before {
  content: ''; width: 12px; height: 1px;
  background: rgba(12,11,9,0.2); flex-shrink: 0; margin-top: 6px;
}

/* ─────────────────────────────────────────
   CONFIDENTIALITÉ
───────────────────────────────────────── */
.confid-section {
  background: var(--off);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 80px 56px;
}
.confid-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cf-left h2 {
  font-family: var(--cond);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white); line-height: 1.1;
  margin-bottom: 16px;
}
.cf-left p {
  font-family: var(--body);
  font-size: 14px; line-height: 1.8;
  color: var(--ash); font-weight: 300;
}
.cf-right { display: flex; flex-direction: column; gap: 16px; }
.cf-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--rule);
  transition: border-color 0.3s;
}
.cf-item:hover { border-color: rgba(12,11,9,0.2); }
.cf-check {
  width: 20px; height: 20px; border-radius: 0;
  border: 1px solid rgba(12,11,9,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.cf-check::after { content: '✓'; font-size: 9px; color: var(--white); }
.cf-text {
  font-family: var(--body);
  font-size: 13px; line-height: 1.7; color: var(--ash); font-weight: 300;
}
.cf-text strong { color: var(--white); font-weight: 400; }

/* ─────────────────────────────────────────
   CITATION
───────────────────────────────────────── */
.quote-section {
  padding: 140px 56px;
  text-align: center;
  position: relative; overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 600px; font-weight: 100;
  color: rgba(12,11,9,0.025); line-height: 1;
  pointer-events: none;
}
.quote-inner { max-width: 960px; margin: 0 auto; }
.q-rule { width: 48px; height: 1px; background: #0c0b09; margin: 0 auto 48px; }
.q-text {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 100; font-style: italic;
  line-height: 1.45; color: var(--white);
  margin-bottom: 40px;
}
.q-text em { color: var(--ash); }
.q-author {
  font-family: var(--cond);
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ash);
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.cta-section {
  background: var(--off);
  border-top: 1px solid var(--rule);
  padding: 120px 56px;
}
.cta-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-left h2 {
  font-family: var(--cond);
  font-size: clamp(40px, 5.5vw, 88px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--white);
  line-height: 0.9; margin-bottom: 32px;
}
.cta-left h2 em {
  color: transparent;
  -webkit-text-stroke: 1px rgba(12,11,9,0.18);
  font-style: normal; display: block;
}
.cta-left p {
  font-family: var(--body);
  font-size: 14px; line-height: 1.85;
  color: var(--ash); font-weight: 300; max-width: 400px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--cond);
  font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ash); font-weight: 400;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(12,11,9,0.03);
  border: 1px solid var(--rule);
  color: var(--white);
  font-family: var(--body); font-size: 13px; font-weight: 300;
  padding: 14px 16px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(12,11,9,0.25); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(12,11,9,0.4); }
.form-field select { color: rgba(12,11,9,0.4); }
.form-field select option { background: #ffffff; color: #0c0b09; }
.form-field textarea { resize: none; height: 100px; }
.form-submit {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.form-note {
  font-family: var(--cond);
  font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(12,11,9,0.22); font-weight: 300;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  border-top: 1px solid var(--rule);
  padding: 48px 56px;
  display: flex; justify-content: space-between; align-items: center;
}
.ft-logo {
  font-family: var(--serif);
  font-size: 12px; font-weight: 100; font-style: italic;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(12,11,9,0.4);
}
.ft-tag {
  font-family: var(--cond);
  font-size: 8px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white); padding: 4px 12px;
  border: 1px solid rgba(12,11,9,0.25);
}
footer nav a {
  font-family: var(--cond);
  font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(12,11,9,0.25); text-decoration: none;
  margin-left: 24px; transition: color 0.25s;
}
footer nav a:hover { color: rgba(12,11,9,0.7); }

/* ─────────────────────────────────────────
   SCROLL REVEALS
───────────────────────────────────────── */
.rv {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.rv.in { opacity: 1; transform: none; }
.rv-l {
  opacity: 0; transform: translateX(-36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.rv-l.in { opacity: 1; transform: none; }
.rv-r {
  opacity: 0; transform: translateX(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.rv-r.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }
.d6 { transition-delay: .48s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .manifeste-inner { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .atelier-grid { grid-template-columns: repeat(2, 1fr); }
  .colour-blocks { grid-template-columns: repeat(3, 1fr); }
  .profiles-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cs-header { grid-template-columns: 1fr; }
  .confid-inner { grid-template-columns: 1fr; }
  .atelier-top { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-right { display: none; }
  .hero-content { padding: 40px 24px; }
  .hero-ctas { right: 24px; bottom: 24px; }
  .scroll-hint { display: none; }
  .hero-stats { flex-direction: column; gap: 28px; }
  .h-stat {
	border-right: none; padding: 0; margin: 0;
	border-bottom: 1px solid var(--rule); padding-bottom: 24px;
  }
  .manifeste,
  .process-section,
  .atelier-section,
  .colour-section,
  .profiles-section,
  .confid-section,
  .quote-section,
  .cta-section { padding: 80px 24px; }
  .step { grid-template-columns: 48px 1fr; }
  .step-right { grid-column: 2; }
  .form-row { grid-template-columns: 1fr; }
  .atelier-grid { grid-template-columns: 1fr; }
  .colour-blocks { grid-template-columns: repeat(2, 1fr); }
  footer { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .pf-header { flex-direction: column; gap: 12px; }
}

#cur {
  display: none;
  pointer-events: none;
}