*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #0e0e0e;
  --ink-soft: #3a3a3a;
  --ink-muted: #8a8a8a;
  --paper: #f9f7f3;
  --paper-warm: #f2ede4;
  --paper-dark: #ede8de;
  --gold: #c9a84c;
  --gold-light: #e8d49a;
  --gold-dark: #8f6820;
  --accent: #1a3a2a;
  --accent-light: #2d5c42;
  --white: #ffffff;
  --red: #c0392b;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);

  --section-pad: clamp(80px, 10vw, 140px);
  --container: min(1240px, calc(100% - 48px));
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
#cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  width: 12px; height: 12px; border-radius: 50%; background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), background 0.2s, width 0.3s var(--ease), height 0.3s var(--ease);
  mix-blend-mode: multiply;
}
#cursor.hover { width: 44px; height: 44px; background: var(--gold-light); }
#cursor.dark { background: var(--ink); }

/* ── UTILITY ── */
.container { width: var(--container); margin: 0 auto; }
.serif { font-family: var(--font-display); }
.gold { color: var(--gold); }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark); padding: 6px 14px; border: 1px solid var(--gold-light);
  border-radius: 100px; background: rgba(201,168,76,0.08);
}
.tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(249,247,243,0.88);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-inner {
  width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-display); font-size: 26px; font-weight: 900;
  letter-spacing: -0.02em; color: var(--ink); text-decoration: none;
  display: flex; align-items: baseline; gap: 3px;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--ink-soft); text-decoration: none;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-nav {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 10px 22px; border-radius: 100px;
  background: var(--ink); color: var(--white); border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-nav:hover { background: var(--gold-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 1.5px; background: var(--ink); transition: all 0.3s; display: block; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; place-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 10% 80%, rgba(26,58,42,0.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 100%);
}
.hero-content { width: var(--container); margin: 0 auto; position: relative; }
.hero-label { margin-bottom: 28px; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900; line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 28px; max-width: 820px;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line-inner {
  display: block; transform: translateY(100%);
  transition: transform 0.9s var(--ease);
}
.hero-headline .line-inner.animate { transform: translateY(0); }
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px); font-weight: 300; color: var(--ink-soft);
  line-height: 1.6; max-width: 520px; margin-bottom: 48px;
}
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 16px 32px; border-radius: 100px;
  background: var(--ink); color: var(--white); text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(143,104,32,0.3); }
.btn-primary .arrow { transition: transform 0.25s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 15px; font-weight: 400;
  padding: 16px 28px; border-radius: 100px;
  color: var(--ink); text-decoration: none; border: 1px solid rgba(14,14,14,0.2);
  cursor: pointer; background: transparent;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(201,168,76,0.05); }
.hero-visual {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 42%; display: flex; flex-direction: column; gap: 16px;
  pointer-events: none;
}
.hero-card {
  background: var(--white); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 4px 24px rgba(14,14,14,0.06);
  transform: translateX(40px); opacity: 0;
  transition: all 0.8s var(--ease);
}
.hero-card.animate { transform: translateX(0); opacity: 1; }
.hero-card:nth-child(1) { transition-delay: 0.4s; }
.hero-card:nth-child(2) { transition-delay: 0.6s; margin-left: 40px; }
.hero-card:nth-child(3) { transition-delay: 0.8s; margin-left: 16px; }
.card-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.card-stat { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--ink); }
.card-stat span { color: var(--gold); }
.card-desc { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.card-bar { height: 3px; background: var(--paper-dark); border-radius: 2px; margin-top: 12px; overflow: hidden; }
.card-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--accent)); border-radius: 2px; width: 0; transition: width 1.5s var(--ease); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted);
}
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, var(--ink-muted), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100% { transform: scaleY(1); opacity:1; } 50% { transform: scaleY(0.4); opacity:0.4; } }

/* ── ABOUT / AGENCE ── */
#agence {
  padding: var(--section-pad) 0;
  background: var(--ink);
  color: var(--white);
  position: relative; overflow: hidden;
}
.agence-pattern {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px; opacity: 0.04;
  font-family: var(--font-display); font-size: 400px; font-weight: 900; line-height: 1;
  color: var(--white); user-select: none; pointer-events: none;
  letter-spacing: -0.05em;
}
.agence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.agence-tag { margin-bottom: 24px; filter: invert(1); }
.agence-title {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 58px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 28px;
  color: var(--white);
}
.agence-title em { font-style: italic; color: var(--gold); }
.agence-body { font-size: 17px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.agence-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pillar {
  padding: 20px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; background: rgba(255,255,255,0.04);
  transition: border-color 0.3s, background 0.3s;
}
.pillar:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.pillar-icon { font-size: 22px; margin-bottom: 10px; }
.pillar-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.pillar-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.agence-visual { position: relative; }
.agence-img-wrap {
  aspect-ratio: 4/5; border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, #1a3a2a 0%, #0e2018 50%, #1a1a0e 100%);
  position: relative;
}
.agence-mosaic {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 2px; padding: 32px;
}
.mosaic-block {
  border-radius: 12px; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 16px;
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--gold);
}
.mosaic-block:nth-child(1) { background: rgba(201,168,76,0.12); }
.mosaic-block:nth-child(2) { background: rgba(255,255,255,0.04); font-size: 13px; font-family: var(--font-body); color: rgba(255,255,255,0.5); font-weight: 300; }
.mosaic-block:nth-child(3) { background: var(--gold); color: var(--ink); }
.mosaic-block:nth-child(4) { background: rgba(255,255,255,0.06); }
.mosaic-sub { font-family: var(--font-body); font-size: 11px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }

/* ── SERVICES ── */
#services { padding: var(--section-pad) 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px;
}
.section-sub { font-size: 18px; font-weight: 300; color: var(--ink-soft); max-width: 540px; margin: 0 auto; }
.services-tabs {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap;
}
.svc-tab {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 10px 20px; border-radius: 100px; border: 1px solid rgba(14,14,14,0.15);
  background: transparent; color: var(--ink-soft); cursor: pointer;
  transition: all 0.25s;
}
.svc-tab.active, .svc-tab:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-card {
  padding: 28px; border-radius: 16px; border: 1px solid rgba(14,14,14,0.08);
  background: var(--white); position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(14,14,14,0.1); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card.featured { background: var(--ink); border-color: var(--ink); }
.svc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--paper-warm); display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px;
}
.svc-card.featured .svc-icon { background: rgba(201,168,76,0.2); }
.svc-name { font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.svc-card.featured .svc-name { color: var(--white); }
.svc-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.svc-card.featured .svc-desc { color: rgba(255,255,255,0.55); }
.svc-items { margin-top: 16px; display: flex; flex-direction: column; gap: 4px; }
.svc-item { font-size: 12px; color: var(--ink-muted); padding-left: 12px; position: relative; }
.svc-item::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.svc-card.featured .svc-item { color: rgba(255,255,255,0.4); }

/* ── PROCESS ── */
#process {
  padding: var(--section-pad) 0;
  background: var(--paper-warm);
}
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.process-step {
  padding: 40px 28px; background: var(--paper-warm); position: relative;
  transition: background 0.3s;
}
.process-step:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 44px;
  width: 2px; height: 40px; background: rgba(201,168,76,0.3);
}
.process-step:hover { background: var(--white); }
.step-num {
  font-family: var(--font-display); font-size: 72px; font-weight: 900;
  line-height: 1; color: rgba(201,168,76,0.15); margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.step-title { font-size: 20px; font-weight: 500; margin-bottom: 12px; }
.step-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.step-badge {
  display: inline-block; margin-bottom: 12px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark); padding: 4px 10px; background: rgba(201,168,76,0.12); border-radius: 100px;
}

/* ── PORTFOLIO ── */
#portfolio { padding: var(--section-pad) 0; }
.portfolio-filter { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-body); font-size: 13px; padding: 8px 18px;
  border-radius: 100px; border: 1px solid rgba(14,14,14,0.15);
  background: transparent; cursor: pointer; transition: all 0.2s; color: var(--ink-soft);
}
.filter-btn.active, .filter-btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-item {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/3;
  position: relative; cursor: pointer;
  background: linear-gradient(135deg, var(--paper-dark), var(--paper-warm));
}
.portfolio-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s; display: flex; align-items: flex-end; padding: 28px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-info { color: var(--white); }
.portfolio-cat { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.portfolio-title { font-size: 18px; font-weight: 500; }
.portfolio-mock {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; color: var(--ink-muted);
  flex-direction: column; gap: 12px;
}
.mock-visual { font-size: 48px; opacity: 0.2; }

/* ── STATS ── */
#stats {
  padding: var(--section-pad) 0;
  background: var(--ink); color: var(--white); overflow: hidden; position: relative;
}
.stats-ticker {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent-light), var(--gold));
  background-size: 200%; animation: shimmer 3s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(48px, 6vw, 80px);
  font-weight: 900; letter-spacing: -0.03em; color: var(--white); line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 300; }
.stats-quote {
  text-align: center; margin-top: 64px; padding-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stats-quote blockquote {
  font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic; font-weight: 400; color: rgba(255,255,255,0.75);
  max-width: 680px; margin: 0 auto; line-height: 1.5;
}
.stats-quote blockquote em { color: var(--gold); font-style: normal; }

/* ── TESTIMONIALS ── */
#temoignages { padding: var(--section-pad) 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.testi-card {
  padding: 32px; border-radius: 16px; border: 1px solid rgba(14,14,14,0.08);
  background: var(--white); position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(14,14,14,0.08); }
.testi-card.featured { background: var(--accent); color: var(--white); border-color: transparent; }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote {
  font-family: var(--font-display); font-size: 16px; font-style: italic;
  line-height: 1.7; margin-bottom: 24px; color: var(--ink);
}
.testi-card.featured .testi-quote { color: rgba(255,255,255,0.85); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.author-name { font-size: 14px; font-weight: 500; }
.author-role { font-size: 12px; color: var(--ink-muted); }
.testi-card.featured .author-name { color: var(--white); }
.testi-card.featured .author-role { color: rgba(255,255,255,0.5); }
.testi-result {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(14,14,14,0.07);
  font-size: 12px; color: var(--gold-dark); font-weight: 500; letter-spacing: 0.05em;
}
.testi-card.featured .testi-result { border-color: rgba(255,255,255,0.1); color: var(--gold); }

/* ── DIFFERENCIATEUR ── */
#difference {
  padding: var(--section-pad) 0;
  background: var(--paper-warm); position: relative; overflow: hidden;
}
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.diff-features { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.diff-feature { display: flex; gap: 20px; align-items: flex-start; }
.diff-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--white); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 20px; box-shadow: 0 4px 16px rgba(14,14,14,0.06);
}
.diff-text h4 { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.diff-text p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.diff-cta-area { margin-top: 40px; display: flex; gap: 12px; }
.diff-visual { position: relative; }
.diff-card-big {
  background: var(--ink); border-radius: 24px; padding: 40px;
  color: var(--white); position: relative; overflow: hidden;
}
.diff-card-big::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.2), transparent);
}
.diff-big-title {
  font-family: var(--font-display); font-size: 38px; font-weight: 700;
  line-height: 1.2; margin-bottom: 16px; color: var(--white);
}
.diff-big-title em { color: var(--gold); font-style: italic; }
.diff-big-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }
.diff-services-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.diff-stag {
  font-size: 12px; padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s;
}
.diff-stag:hover { border-color: var(--gold); color: var(--gold); }
.diff-badge-float {
  position: absolute; bottom: -20px; right: 32px;
  background: var(--gold); border-radius: 16px; padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(143,104,32,0.4); text-align: center;
}
.diff-badge-num { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--ink); line-height: 1; }
.diff-badge-label { font-size: 11px; color: var(--ink-soft); font-weight: 500; letter-spacing: 0.05em; margin-top: 2px; }

/* ── FAQ ── */
#faq { padding: var(--section-pad) 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 56px; }
.faq-intro-title {
  font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 20px;
}
.faq-intro-desc { font-size: 16px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-radius: 12px; border: 1px solid rgba(14,14,14,0.08);
  background: var(--white); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-size: 15px; font-weight: 500; cursor: pointer;
  background: transparent; border: none; text-align: left; gap: 16px;
  color: var(--ink); transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-chevron {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--paper-dark); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s var(--ease), background 0.3s;
  font-size: 14px;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); background: var(--gold); color: var(--ink); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
  font-size: 14px; color: var(--ink-soft); line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ── CONTACT ── */
#contact {
  padding: var(--section-pad) 0;
  background: var(--ink); color: var(--white); position: relative; overflow: hidden;
}
.contact-bg-text {
  position: absolute; bottom: -80px; left: -20px;
  font-family: var(--font-display); font-size: 300px; font-weight: 900;
  color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -0.05em; white-space: nowrap;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; position: relative; }
.contact-info h2 {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px;
}
.contact-info h2 em { color: var(--gold); font-style: italic; }
.contact-info p { font-size: 17px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.7; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 14px; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.contact-detail-text span { display: block; font-size: 12px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-detail-text strong { font-size: 15px; font-weight: 400; color: var(--white); }
.contact-form-wrap {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px 16px; font-family: var(--font-body); font-size: 14px;
  color: var(--white); outline: none; transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: rgba(201,168,76,0.08);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--ink); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; padding: 16px; border-radius: 10px;
  background: var(--gold); color: var(--ink); font-family: var(--font-body);
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  letter-spacing: 0.02em;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.form-note { text-align: center; font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 12px; }

/* ── FOOTER ── */
footer {
  background: #080808; padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { font-size: 24px; color: var(--white); margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; margin-left: 24px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; background: var(--paper); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: none; }
.mobile-menu a { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--ink); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }

/* ── NOTIFICATION ── */
.form-success {
  display: none; text-align: center; padding: 20px;
  color: var(--gold); font-family: var(--font-display); font-size: 22px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .agence-grid, .diff-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-headline { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:nth-child(1) { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .agence-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  body { cursor: auto; }
  #cursor { display: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}