@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ══════════════════════════════════════
   VARIABLES
══════════════════════════════════════ */
:root {
  --blanc:      #ffffff;
  --off:        #f8f6f2;
  --sable:      #ede9e1;
  --bord:       #ddd8cf;
  --texte:      #1c1917;
  --texte-2:    #6b6460;
  --texte-3:    #a39f9b;
  --or:         #c9933a;
  --or-clair:   #e8b96a;
  --or-sombre:  #a67828;
  --noir:       #0f0e0c;

  --ff-serif: 'Fraunces', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.3s;

  --sh-s: 0 1px 4px rgba(0,0,0,0.06);
  --sh-m: 0 4px 20px rgba(0,0,0,0.08);
  --sh-l: 0 16px 48px rgba(0,0,0,0.12);
}

/* ══════════════════════════════════════
   BASE
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--blanc);
  color: var(--texte);
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--or); color: #fff; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.nav.stuck {
  border-color: var(--bord);
  box-shadow: var(--sh-s);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--texte);
}
.nav-logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--or);
  flex-shrink: 0;
}
.nav-logo em { font-style: normal; color: var(--or); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--texte-2);
  position: relative;
  transition: color var(--t);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--or);
  transition: width var(--t) var(--ease);
}
.nav-menu a:hover,
.nav-menu a.on { color: var(--texte); }
.nav-menu a:hover::after,
.nav-menu a.on::after { width: 100%; }

.nav-btn {
  padding: 0.55rem 1.4rem;
  background: var(--texte);
  color: #fff !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background var(--t), transform var(--t) !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--or-sombre) !important; transform: translateY(-1px); color: #fff !important; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--texte);
  transition: var(--t) var(--ease);
  transform-origin: center;
}
.nav-burger.on span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.on span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.on span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer mobile */
.nav-drawer {
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 800;
  background: var(--blanc);
  padding: 2rem clamp(1.5rem, 5vw, 5rem);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--bord);
}
.nav-drawer.on { transform: translateX(0); }
.nav-drawer a {
  display: block;
  padding: 1.1rem 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--texte-2);
  border-bottom: 1px solid var(--sable);
  transition: color var(--t), padding-left var(--t);
}
.nav-drawer a:hover, .nav-drawer a.on { color: var(--or-sombre); padding-left: 0.5rem; }
.nav-drawer a:last-child { border: none; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.hero-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem clamp(1.5rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}

.hero-r {
  position: relative;
  overflow: hidden;
}
.hero-r-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #2d2117 0%, #5c3d1e 40%, #8b6234 100%);
}
.hero-r-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-r-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,147,58,0.35) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-r-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  user-select: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or-sombre);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: up 0.7s var(--ease) forwards 0.1s;
}
.hero-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--or);
  display: block;
}

.hero-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--texte);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: up 0.7s var(--ease) forwards 0.25s;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--or-sombre);
}

.hero-p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--texte-2);
  max-width: 400px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: up 0.7s var(--ease) forwards 0.4s;
}

.hero-btns {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: up 0.7s var(--ease) forwards 0.55s;
}

.hero-strip {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bord);
  opacity: 0;
  animation: up 0.7s var(--ease) forwards 0.7s;
}
.hero-strip-item strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--or-sombre);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-strip-item span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-3);
}

/* ══════════════════════════════════════
   BOUTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t), color var(--t), border-color var(--t);
}
.btn:hover { transform: translateY(-2px); }

.btn-dark {
  background: var(--texte);
  color: #fff;
  border-color: var(--texte);
}
.btn-dark:hover { background: var(--or-sombre); border-color: var(--or-sombre); box-shadow: var(--sh-m); }

.btn-ghost {
  background: transparent;
  color: var(--texte);
  border-color: var(--bord);
}
.btn-ghost:hover { border-color: var(--texte); box-shadow: var(--sh-s); }

/* ══════════════════════════════════════
   LAYOUT COMMUN
══════════════════════════════════════ */
.wrap { padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem); }

.ph {
  padding: clamp(5rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem) clamp(2rem, 3vw, 3rem);
  background: var(--off);
  border-bottom: 1px solid var(--bord);
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,147,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-sombre);
  margin-bottom: 0.9rem;
}
.kicker::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--or);
  display: block;
}

.h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--texte);
}
.h1 em { font-style: italic; color: var(--or-sombre); }

.h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--texte);
}
.h2 em { font-style: italic; color: var(--or-sombre); }

.sub {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--texte-2);
  line-height: 1.7;
  max-width: 520px;
}

.rule {
  width: 40px; height: 2px;
  background: linear-gradient(to right, var(--or), var(--or-clair));
  border-radius: 1px;
  margin: 1.25rem 0;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.svc-wrap { background: var(--blanc); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--bord);
}
.svc-cell {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--bord);
  border-bottom: 1px solid var(--bord);
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
.svc-cell:hover { background: var(--off); }
.svc-cell::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--or);
  transition: width 0.4s var(--ease);
}
.svc-cell:hover::before { width: 100%; }
.svc-cell:nth-child(3n) { border-right: none; }
.svc-cell:nth-last-child(-n+3) { border-bottom: none; }

.svc-n {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--bord);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color var(--t);
}
.svc-cell:hover .svc-n { color: var(--or-clair); }

.svc-title {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--texte);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.svc-body {
  font-size: 0.85rem;
  color: var(--texte-2);
  line-height: 1.8;
}

/* ══════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════ */
.pf-wrap { background: var(--off); }

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pf-card {
  background: var(--blanc);
  border: 1px solid var(--bord);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pf-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-l);
}

.pf-thumb {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.pf-thumb-fill {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease);
}
.pf-card:hover .pf-thumb-fill { transform: scale(1.04); }

.pf-thumb-fill.c1 { background: linear-gradient(135deg, #1c130a 0%, #5c3d1e 60%, #8b6234 100%); }
.pf-thumb-fill.c2 { background: linear-gradient(135deg, #0d1f1a 0%, #1a4a3a 60%, #2d7a5f 100%); }
.pf-thumb-fill.c3 { background: linear-gradient(135deg, #1a0d22 0%, #4a1a6b 60%, #7b3a9e 100%); }

.pf-thumb-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.14);
  letter-spacing: -0.02em;
}

.pf-badge {
  position: absolute;
  top: 0.875rem; left: 0.875rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  padding: 0.28rem 0.7rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.15);
}

.pf-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pf-title {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--texte);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.pf-desc {
  font-size: 0.83rem;
  color: var(--texte-2);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.1rem;
}
.pf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or-sombre);
  transition: gap var(--t);
}
.pf-link:hover { gap: 0.7rem; }
.pf-link::after { content: '→'; }
.pf-link.dim {
  color: var(--texte-3);
  pointer-events: none;
}
.pf-link.dim::after { content: ''; }

/* ══════════════════════════════════════
   À PROPOS
══════════════════════════════════════ */
.ab-wrap { background: var(--blanc); }

.ab-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}

.ab-visual {
  position: relative;
  padding-bottom: 1.5rem;
  padding-right: 1.5rem;
}
.ab-frame {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--sable) 0%, #c4a882 60%, #8b6234 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-l);
}
.ab-frame-mono {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 7rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.1);
  letter-spacing: -0.05em;
}
.ab-deco {
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
  border: 1.5px solid var(--or-clair);
  border-radius: 4px;
  z-index: 0;
}
.ab-chip {
  position: absolute;
  bottom: 2.5rem; left: -1rem;
  background: var(--blanc);
  border: 1px solid var(--bord);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: var(--sh-m);
  z-index: 2;
}
.ab-chip strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--or-sombre);
  line-height: 1;
}
.ab-chip span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-3);
}

.ab-text p {
  font-size: 0.92rem;
  color: var(--texte-2);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.ab-text strong { color: var(--texte); font-weight: 500; }

.ab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.75rem;
}
.ab-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--off);
  border: 1px solid var(--bord);
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--texte-2);
  transition: background var(--t), border-color var(--t), color var(--t);
}
.ab-tag:hover {
  background: var(--or);
  border-color: var(--or);
  color: #fff;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.ct-wrap { background: var(--off); }

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.ct-info-h {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--texte);
  margin-bottom: 2rem;
}
.ct-info-h em { font-style: italic; color: var(--or-sombre); }

.ct-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--bord);
}
.ct-row:last-of-type { border: none; }
.ct-ico {
  width: 38px; height: 38px;
  background: var(--blanc);
  border: 1px solid var(--bord);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.ct-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texte-3);
  display: block;
  margin-bottom: 0.15rem;
}
.ct-val {
  font-size: 0.88rem;
  color: var(--texte);
  transition: color var(--t);
}
.ct-val:hover { color: var(--or-sombre); }

/* Form */
.ct-form {
  background: var(--blanc);
  border: 1px solid var(--bord);
  border-radius: 10px;
  padding: 2.25rem;
  box-shadow: var(--sh-s);
}

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-grp { margin-bottom: 1.1rem; }
.f-lbl {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--texte-2);
  margin-bottom: 0.45rem;
}
.f-inp, .f-ta {
  width: 100%;
  background: var(--off);
  border: 1.5px solid var(--bord);
  border-radius: 4px;
  color: var(--texte);
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  padding: 0.7rem 0.95rem;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  -webkit-appearance: none;
}
.f-inp:focus, .f-ta:focus {
  border-color: var(--or);
  background: var(--blanc);
  box-shadow: 0 0 0 3px rgba(201,147,58,0.13);
}
.f-ta { height: 120px; resize: vertical; }

.f-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--texte);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.f-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--or-sombre);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.f-btn:hover::before { transform: translateX(0); }
.f-btn:hover { transform: translateY(-1px); box-shadow: var(--sh-m); }
.f-btn-txt { position: relative; z-index: 1; }

.f-msg {
  display: none;
  margin-top: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  font-size: 0.83rem;
}
.f-msg.ok {
  display: block;
  background: rgba(22,163,74,0.07);
  border: 1px solid rgba(22,163,74,0.2);
  color: #166534;
}
.f-msg.err {
  display: block;
  background: rgba(220,38,38,0.07);
  border: 1px solid rgba(220,38,38,0.2);
  color: #991b1b;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.foot {
  background: var(--noir);
  color: rgba(255,255,255,0.4);
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.foot-logo {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.foot-logo em { font-style: normal; color: var(--or); }
.foot-copy { font-size: 0.78rem; }
.foot-nav {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
.foot-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--t);
}
.foot-nav a:hover { color: var(--or); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: 0.08s; }
.rv.d2 { transition-delay: 0.16s; }
.rv.d3 { transition-delay: 0.24s; }
.rv.d4 { transition-delay: 0.32s; }

/* ══════════════════════════════════════
   RESPONSIVE 1024
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-r { display: none; }
  .hero-l { min-height: calc(100svh - 64px); }

  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cell:nth-child(3n) { border-right: 1px solid var(--bord); }
  .svc-cell:nth-child(2n) { border-right: none; }
  .svc-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--bord); }
  .svc-cell:nth-last-child(-n+2) { border-bottom: none; }

  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-grid .pf-card:last-child { grid-column: 1 / -1; max-width: 480px; justify-self: center; }

  .ab-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ab-visual { max-width: 360px; }

  .ct-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   RESPONSIVE 768
══════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }

  /* Désactiver hover sur mobile */
  .svc-cell:hover { background: var(--blanc); }
  .svc-cell:hover .svc-n { color: var(--bord); }
  .svc-cell:hover::before { width: 0; }

  .hero-h1 { font-size: 2.2rem; }
  .hero-strip { gap: 1.5rem; flex-wrap: wrap; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }

  .svc-grid { grid-template-columns: 1fr; }
  .svc-cell { border-right: none !important; }
  .svc-cell:not(:last-child) { border-bottom: 1px solid var(--bord) !important; }
  .svc-cell:last-child { border-bottom: none !important; }

  .pf-grid { grid-template-columns: 1fr; }
  .pf-grid .pf-card:last-child { grid-column: auto; max-width: none; }

  .ab-visual { max-width: 100%; }
  .ab-chip { left: 0; }

  .f-row { grid-template-columns: 1fr; }
  .ct-form { padding: 1.5rem; }

  .foot { flex-direction: column; text-align: center; }
  .foot-nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 1.9rem; }
  .h1 { font-size: 1.75rem; }
  .h2 { font-size: 1.4rem; }
}
