

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

body {
  background: #ffffff;
  color: #111111;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─────────────────────────────────────────
   CURSEUR CUSTOM
───────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: #111;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, background .25s ease;
}

.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(17,17,17,.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s ease, height .3s ease;
}

body:hover .cursor { opacity: 1; }
.cursor-hover .cursor { width: 5px; height: 5px; background: #111; }
.cursor-hover .cursor-ring { width: 44px; height: 44px; }

/* ─────────────────────────────────────────
   VARIABLES
───────────────────────────────────────── */
:root {
  --cream: #ffffff;
  --ink: #111111;
  --ink-soft: #666666;
  --ink-faint: #cccccc;
  --copper: #111111;
  --copper-light: #f5f5f5;
  --white: #ffffff;
  --border: rgba(17,17,17,.09);
  --ease: cubic-bezier(.25,.1,.25,1);
  --ease-out: cubic-bezier(0,0,.3,1);
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center;
  padding: 1.75rem 3rem;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'Cormorant', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--ink);
  text-transform: uppercase;
}

.nav-logo em { font-style: italic; color: var(--ink); }

.nav-right {
  margin-left: auto;
  display: flex; align-items: center; gap: 3rem;
}

.nav-link {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--ink-soft);
  position: relative;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: .6rem 1.5rem;
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background .2s, transform .2s;
}

.nav-cta:hover { background: #333; transform: translateY(-1px); }

/* ─────────────────────────────────────────
   HERO — ÉDITORIAL SPLIT
───────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  position: relative;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.hero::after { display: none; }
.hero-blob   { display: none; }

/* ── Colonne gauche ── */
.hero-left {
  display: flex;
  flex-direction: column;
  padding: 0 4rem 3.5rem;
  position: relative;
  z-index: 1;
  border-right: 1px solid var(--border);
  justify-content: flex-end;
}

/* Bandeau disponibilité tout en haut */
.hero-avail {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: .65rem;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.avail-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #111;
  flex-shrink: 0;
}

/* Headline principale */
h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 2rem;
  opacity: 0;
  animation: in-up 1s var(--ease-out) .15s forwards;
}

h1 em { font-style: italic; }

/* Sous-titre — accroche émotionnelle */
.hero-sub {
  font-size: .92rem;
  color: var(--ink-soft);
  max-width: 40ch;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: in-up .9s var(--ease-out) .3s forwards;
}

/* CTA */
.hero-actions {
  display: flex; align-items: center; gap: 2rem;
  opacity: 0;
  animation: in-up .9s var(--ease-out) .45s forwards;
}

.btn-big {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 1rem 2.25rem;
  background: var(--ink);
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all .25s var(--ease);
  position: relative; overflow: hidden;
}

.btn-big::after {
  content: '';
  position: absolute; inset: 0;
  background: #2a2a2a;
  transform: translateX(-101%);
  transition: transform .35s var(--ease-out);
}

.btn-big:hover::after { transform: translateX(0); }
.btn-big span  { position: relative; z-index: 1; }
.btn-big .arrow { transition: transform .25s; position: relative; z-index: 1; }
.btn-big:hover .arrow { transform: translateX(4px); }

.hero-alt-link {
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}

.hero-alt-link:hover { color: var(--ink); border-color: var(--ink); }

/* Stats en bas */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: in-up .9s var(--ease-out) .6s forwards;
}

.hero-stat {
  flex: 1;
  padding: 1.25rem 1.5rem 0 0;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 1.5rem; }
.hero-stat:first-child { padding-left: 0; }

.hs-num {
  font-family: 'Cormorant', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .2rem;
}

.hs-label {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ── Colonne droite — photo ── */
.hero-right {
  position: relative;
  overflow: hidden;
  background: #ebebeb;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 10s ease;
}

.hero-right:hover img { transform: scale(1.03); }

/* Label nom sur la photo */
.hero-name-tag {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: .6rem 1rem;
  border: 1px solid var(--border);
  opacity: 0;
  animation: in-up .9s var(--ease-out) .7s forwards;
}

.hero-name-tag p:first-child {
  font-family: 'Cormorant', serif;
  font-size: .95rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: .1rem;
}

.hero-name-tag p:last-child {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Numéro déco */
.hero-num {
  font-family: 'Cormorant', serif;
  font-size: 8rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17,17,17,.06);
  line-height: 1;
  position: absolute;
  bottom: 2.5rem; right: 3rem;
  pointer-events: none;
  user-select: none;
}

/* Hero scroll */
.hero-scroll { display: none; }

.scroll-line  { display: none; }
.scroll-label { display: none; }

@keyframes scroll-run {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 60vw auto;
    min-height: auto;
  }
  .hero-right { order: 1; height: 60vw; }
  .hero-left  { order: 2; padding: 3rem 1.75rem 3rem; border-right: none; justify-content: flex-start; }
  .hero-avail { position: static; border-bottom: none; border-top: 1px solid var(--border); padding: .85rem 0; margin-bottom: 2rem; }
  .hero-num   { display: none; }
  .hero-name-tag { bottom: 1.25rem; left: 1.25rem; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .hero-right { height: 75vw; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-stat  { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 1rem; }
  .hero-stat:last-child { border-bottom: none; padding: 0; }
  .hero-stat:first-child { padding-left: 0; }
}

/* ─────────────────────────────────────────
   SECTION BASE
───────────────────────────────────────── */
.section {
  padding: 7rem 3rem;
  position: relative;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: .62rem;
  letter-spacing: .24em;
  color: var(--ink-soft);
  margin-bottom: 3.5rem;
  display: flex; align-items: center; gap: .75rem;
  text-transform: uppercase;
}

.section-label::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: var(--ink-faint);
}

/* ─────────────────────────────────────────
   SECTION — PROMESSE
───────────────────────────────────────── */
.promise {
  background: #111;
  color: #fff;
  padding: 8rem 3rem;
}

.promise-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.promise-h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.01em;
  position: sticky;
  top: 8rem;
}

.promise-h2 em { font-style: italic; color: rgba(255,255,255,.5); }

.promise-body {
  display: flex; flex-direction: column; gap: 0;
}

.promise-item {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.promise-item:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }

.promise-item-title {
  font-size: .88rem;
  font-weight: 400;
  margin-bottom: .5rem;
  color: #fff;
  letter-spacing: .02em;
}

.promise-item-text {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   SECTION — RÉALISATIONS
───────────────────────────────────────── */
.works { background: #fff; }

/* ── Grille réalisations ── */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.work-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
  text-decoration: none;
  color: inherit;
}

.work-card:hover {
  box-shadow: 0 8px 32px rgba(17,17,17,.08);
  transform: translateY(-3px);
}

/* Zone visuelle */
.work-visual {
  background: #111;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.work-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transition: transform .4s var(--ease);
}

.work-card:hover .work-visual img { transform: scale(1.04); }

.work-visual--code {
  background: #0d0d0d;
}

.work-visual-icon {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,.18);
  letter-spacing: -.02em;
}

/* Corps de la card */
.work-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-tag {
  font-size: .58rem;
  letter-spacing: .18em;
  color: var(--ink-soft);
  margin-bottom: .6rem;
  text-transform: uppercase;
}

.work-title {
  font-family: 'Cormorant', serif;
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: .75rem;
  color: var(--ink);
}

.work-result {
  font-size: .8rem;
  color: var(--ink-soft);
  line-height: 1.7;
  flex: 1;
}

/* Métriques */
.work-metrics {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.work-metric {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.wm-val {
  font-family: 'Cormorant', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.wm-label {
  font-size: .65rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
}

/* Card avec lien (étude de cas) */
.work-card--link .work-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: .9rem;
  color: var(--ink);
  opacity: 0;
  transition: transform .25s var(--ease), opacity .25s;
  z-index: 2;
}

.work-card--link:hover .work-arrow {
  transform: translate(3px, -3px);
  opacity: 1;
}

/* ─────────────────────────────────────────
   SECTION — CONFIANCE
───────────────────────────────────────── */
.trust { background: #f9f9f9; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.trust-card {
  padding: 2.5rem 2rem;
  background: #f9f9f9;
}

.trust-icon {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.trust-title {
  font-family: 'Cormorant', serif;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: .6rem;
  color: var(--ink);
}

.trust-text {
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* Témoignage */
.testimonial {
  margin-top: 1px;
  background: #111;
  padding: 4rem 3.5rem;
  position: relative; overflow: hidden;
}

.testimonial::before {
  content: '\201C';
  font-family: 'Cormorant', serif;
  font-size: 14rem;
  color: rgba(255,255,255,.03);
  position: absolute; top: -3rem; left: 2rem;
  line-height: 1; user-select: none;
}

.testimonial-text {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  max-width: 56ch;
  position: relative; z-index: 1;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.testimonial-author span { color: rgba(255,255,255,.5); }

/* ─────────────────────────────────────────
   SECTION — PROCESS
───────────────────────────────────────── */
.process { background: #fff; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background .2s;
}

.process-step:hover { background: #f9f9f9; }
.process-step:last-child { border-right: none; }

.step-num {
  font-family: 'Cormorant', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ink-faint);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: .5rem;
  color: var(--ink);
  letter-spacing: .01em;
}

.step-text {
  font-size: .78rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.process-step::after {
  content: '→';
  position: absolute; top: 2.5rem; right: -.6rem;
  font-size: .8rem;
  color: var(--ink-faint);
  background: #fff;
  padding: .1rem .15rem;
  z-index: 1;
  transition: color .2s;
}

.process-step:last-child::after { display: none; }

/* ─────────────────────────────────────────
   SECTION — CONTACT
───────────────────────────────────────── */
.contact {
  background: #fff;
  padding: 9rem 3rem;
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 7rem;
  align-items: start;
}

.contact-h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 1.75rem;
}

.contact-h2 em { font-style: italic; }

.contact-body {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex; flex-direction: column; gap: .85rem;
}

.contact-detail {
  display: flex; align-items: center; gap: .75rem;
  font-size: .82rem; color: var(--ink-soft);
}

.cd-icon { font-size: .85rem; width: 1rem; text-align: center; }
.cd-link { color: var(--ink); border-bottom: 1px solid var(--border); padding-bottom: 1px; transition: border-color .2s; }
.cd-link:hover { border-color: var(--ink); }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }

label {
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--ink-soft);
  font-weight: 400;
  text-transform: uppercase;
}

input, textarea, select {
  padding: .85rem 1rem;
  background: #fff;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--ink);
}

textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  display: flex; align-items: center; justify-content: center; gap: .65rem;
  padding: 1rem 2rem;
  background: var(--ink);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none; border-radius: 0;
  cursor: none;
  transition: background .2s;
  position: relative; overflow: hidden;
  margin-top: .5rem;
}

.form-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: #333;
  transform: translateX(-101%);
  transition: transform .35s var(--ease-out);
}

.form-submit:hover::after { transform: translateX(0); }
.form-submit span { position: relative; z-index: 1; }
.submit-arrow { transition: transform .25s; position: relative; z-index: 1; }
.form-submit:hover .submit-arrow { transform: translateX(4px); }

.form-note {
  font-size: .68rem;
  color: var(--ink-faint);
  letter-spacing: .04em;
}

.form-success {
  display: none;
  padding: 1.25rem;
  border: 1px solid var(--border);
  text-align: center;
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: #111;
  color: rgba(255,255,255,.25);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Cormorant', serif;
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
  font-weight: 300;
}

.footer-copy { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }

.footer-mail {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}

.footer-mail:hover { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.3); }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes in-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 1.25rem 1.75rem; }
  .nav-link { display: none; }
  .hero { padding: 0 1.75rem 2rem; }
  .hero::after { display: none; }
  .section { padding: 5rem 1.75rem; }
  .promise { padding: 5rem 1.75rem; }
  .promise-inner { grid-template-columns: 1fr; gap: 3rem; }
  .promise-h2 { position: static; }
  .works-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(2)::after { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .contact { padding: 5rem 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 1.75rem; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-num { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
}


/* ─────────────────────────────────────────
   SECTION — CONFIANCE
───────────────────────────────────────── */
.trust { background: #f9f9f9; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.trust-card {
  padding: 2.5rem 2rem;
  background: #f9f9f9;
}

.trust-icon {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.trust-title {
  font-family: 'Cormorant', serif;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: .6rem;
  color: var(--ink);
}

.trust-text {
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* Témoignage */
.testimonial {
  margin-top: 1px;
  background: #111;
  padding: 4rem 3.5rem;
  position: relative; overflow: hidden;
}

.testimonial::before {
  content: '\201C';
  font-family: 'Cormorant', serif;
  font-size: 14rem;
  color: rgba(255,255,255,.03);
  position: absolute; top: -3rem; left: 2rem;
  line-height: 1; user-select: none;
}

.testimonial-text {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  max-width: 56ch;
  position: relative; z-index: 1;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.testimonial-author span { color: rgba(255,255,255,.5); }

/* ─────────────────────────────────────────
   SECTION — PROCESS
───────────────────────────────────────── */
.process { background: #fff; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background .2s;
}

.process-step:hover { background: #f9f9f9; }
.process-step:last-child { border-right: none; }

.step-num {
  font-family: 'Cormorant', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ink-faint);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: .5rem;
  color: var(--ink);
  letter-spacing: .01em;
}

.step-text {
  font-size: .78rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.process-step::after {
  content: '→';
  position: absolute; top: 2.5rem; right: -.6rem;
  font-size: .8rem;
  color: var(--ink-faint);
  background: #fff;
  padding: .1rem .15rem;
  z-index: 1;
  transition: color .2s;
}

.process-step:last-child::after { display: none; }

/* ─────────────────────────────────────────
   SECTION — CONTACT
───────────────────────────────────────── */
.contact {
  background: #fff;
  padding: 9rem 3rem;
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 7rem;
  align-items: start;
}

.contact-h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 1.75rem;
}

.contact-h2 em { font-style: italic; }

.contact-body {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex; flex-direction: column; gap: .85rem;
}

.contact-detail {
  display: flex; align-items: center; gap: .75rem;
  font-size: .82rem; color: var(--ink-soft);
}

.cd-icon { font-size: .85rem; width: 1rem; text-align: center; }
.cd-link { color: var(--ink); border-bottom: 1px solid var(--border); padding-bottom: 1px; transition: border-color .2s; }
.cd-link:hover { border-color: var(--ink); }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }

label {
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--ink-soft);
  font-weight: 400;
  text-transform: uppercase;
}

input, textarea, select {
  padding: .85rem 1rem;
  background: #fff;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--ink);
}

textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  display: flex; align-items: center; justify-content: center; gap: .65rem;
  padding: 1rem 2rem;
  background: var(--ink);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none; border-radius: 0;
  cursor: none;
  transition: background .2s;
  position: relative; overflow: hidden;
  margin-top: .5rem;
}

.form-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: #333;
  transform: translateX(-101%);
  transition: transform .35s var(--ease-out);
}

.form-submit:hover::after { transform: translateX(0); }
.form-submit span { position: relative; z-index: 1; }
.submit-arrow { transition: transform .25s; position: relative; z-index: 1; }
.form-submit:hover .submit-arrow { transform: translateX(4px); }

.form-note {
  font-size: .68rem;
  color: var(--ink-faint);
  letter-spacing: .04em;
}

.form-success {
  display: none;
  padding: 1.25rem;
  border: 1px solid var(--border);
  text-align: center;
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: #111;
  color: rgba(255,255,255,.25);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Cormorant', serif;
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
  font-weight: 300;
}

.footer-copy { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }

.footer-mail {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}

.footer-mail:hover { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.3); }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes in-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 1.25rem 1.75rem; }
  .nav-link { display: none; }
  .hero { padding: 0 1.75rem 2rem; }
  .hero::after { display: none; }
  .section { padding: 5rem 1.75rem; }
  .promise { padding: 5rem 1.75rem; }
  .promise-inner { grid-template-columns: 1fr; gap: 3rem; }
  .promise-h2 { position: static; }
  .works-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(2)::after { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .contact { padding: 5rem 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 1.75rem; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-num { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
}


/* ─────────────────────────────────────────
   SECTION — PRÉSENTATION
───────────────────────────────────────── */
.about-section {
  background: #fff;
  border-top: 1px solid var(--border);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  align-items: stretch;
}

.about-photo-col {
  position: relative;
  padding-right: 5rem;
}

.about-photo-wrap {
  position: sticky;
  top: 7rem;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(8%);
  transition: filter .4s ease;
}

.about-photo:hover { filter: grayscale(0%); }

.about-photo-caption {
  margin-top: 1rem;
  font-size: .65rem;
  letter-spacing: .14em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

.about-text-col {
  padding-left: 5rem;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 2rem;
  color: var(--ink);
}

.about-intro em { font-style: italic; }

.about-body {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 46ch;
}

.about-body p + p { margin-top: 1rem; }

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 2rem;
  margin-bottom: 2.5rem;
}

.about-fact-label {
  font-size: .6rem;
  letter-spacing: .16em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.about-fact-val {
  font-size: .88rem;
  color: var(--ink);
  font-weight: 400;
}

.about-cta {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: opacity .2s;
}

.about-cta:hover { opacity: .5; }
.about-cta-arrow { transition: transform .2s; }
.about-cta:hover .about-cta-arrow { transform: translateX(4px); }

@media (max-width: 960px) {
  .about-inner {
    grid-template-columns: 1fr;
    padding: 4rem 1.75rem;
    gap: 3rem;
  }
  .about-photo-col { padding-right: 0; }
  .about-photo { max-height: 420px; width: 100%; aspect-ratio: auto; }
  .about-photo-wrap { position: static; }
  .about-text-col { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 3rem; }
  .about-facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .about-photo { max-height: 320px; }
  .about-facts { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────
   BOUTIQUE
───────────────────────────────────────── */
.shop {
  background: #fff;
  border-top: 1px solid var(--border);
}

.shop-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 3rem;
}

.shop-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.shop-h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.shop-h2 em { font-style: italic; }

.shop-intro {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 44ch;
}

/* Grille produits */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}

.shop-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
}

/* Carte produit */
.product {
  background: #fff;
  padding: 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background .2s var(--ease);
  cursor: default;
}

.product:hover { background: #fafafa; }

.product-tag {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}

.product-name {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: .75rem;
}

.product-desc {
  font-size: .8rem;
  color: var(--ink-soft);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.75rem;
}

.product-includes {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.75rem;
}

.product-include {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  font-size: .75rem;
  color: var(--ink-soft);
}

.product-include::before {
  content: '—';
  color: var(--ink-faint);
  font-size: .7rem;
  flex-shrink: 0;
}

.product-excludes {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.75rem;
}

.product-exclude-label {
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: .1rem;
}

.product-exclude {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  font-size: .75rem;
  color: var(--ink-soft);
  text-decoration: line-through;
  opacity: .45;
}

.product-exclude::before {
  content: '—';
  color: var(--ink-faint);
  font-size: .7rem;
  flex-shrink: 0;
  text-decoration: none;
}

.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.price-label {
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.price-val {
  font-family: 'Cormorant', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.price-val span {
  font-size: .9rem;
  color: var(--ink-soft);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: opacity .2s;
  text-decoration: none;
}

.product-cta:hover { opacity: .45; }

.product-cta-arrow { transition: transform .2s; }
.product-cta:hover .product-cta-arrow { transform: translateX(3px); }

/* Produit "sur devis" */
.product.quote {
  background: #111;
  color: #fff;
}

.product.quote:hover { background: #1a1a1a; }

.product.quote .product-tag   { color: rgba(255,255,255,.5); }
.product.quote .product-name  { color: #fff; }
.product.quote .product-desc  { color: rgba(255,255,255,.75); }
.product.quote .product-include { color: rgba(255,255,255,.8); }
.product.quote .product-include::before { color: rgba(255,255,255,.45); }
.product.quote .product-exclude { color: rgba(255,255,255,.8); }
.product.quote .product-exclude::before { color: rgba(255,255,255,.45); }
.product.quote .product-exclude-label { color: rgba(255,255,255,.35); }
.product.quote .product-excludes { border-color: rgba(255,255,255,.1); }
.product.quote .product-footer { border-color: rgba(255,255,255,.15); }
.product.quote .price-label   { color: rgba(255,255,255,.5); }
.product.quote .price-val     { color: #fff; }
.product.quote .price-val span { color: rgba(255,255,255,.6); }
.product.quote .product-cta   { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.4); }

/* Note bas de boutique */
.shop-note {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.shop-note-text {
  font-size: .8rem;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .shop-inner { padding: 5rem 1.75rem; }
  .shop-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  .shop-grid, .shop-grid-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .shop-grid, .shop-grid-bottom { grid-template-columns: 1fr; }
}
