/* =====================================================================
   VAULT PROD — Design System
   Charte issue du logo : navy profond + turquoise signature + blanc
   ===================================================================== */

:root {
  /* Palette */
  --bg:        #0B0F1A;   /* fond navy profond */
  --bg-2:      #0F1627;   /* surface */
  --bg-3:      #131d31;   /* surface élevée */
  --line:      #1f2c40;   /* bordures */
  --teal:      #80C0C2;   /* accent signature */
  --teal-2:    #9fdadc;   /* accent clair */
  --teal-deep: #1F4D5C;   /* accent profond */
  --white:     #ffffff;
  --text:      #e7eef1;   /* texte courant */
  --muted:     #93a4b3;   /* texte secondaire */
  --black:     #000000;

  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1200px;
  --shadow:    0 24px 60px -20px rgba(0,0,0,.7);
  --glow:      0 0 0 1px rgba(128,192,194,.25), 0 0 40px -8px rgba(128,192,194,.35);

  --font-head: "Anton", "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Layout helpers --- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.grid { display: grid; gap: 28px; }
.center { text-align: center; }

/* --- Typo --- */
h1, h2, h3, .display {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: .98;
  letter-spacing: .5px;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: 1px; }
.italic { font-style: italic; }
p { color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text); max-width: 62ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700;
  font-size: .78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--teal); display: inline-block; }
.section-head { max-width: 780px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.text-teal { color: var(--teal); }
.text-white { color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .95rem; letter-spacing: .3px;
  padding: 15px 28px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--teal); color: #07222a; box-shadow: var(--glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px var(--teal), 0 18px 40px -10px rgba(128,192,194,.6); }
.btn--ghost { border-color: var(--line); color: var(--white); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); }
.btn--lg { padding: 18px 36px; font-size: 1rem; }

/* --- Header / Nav --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(11,15,26,.82); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 1.4rem; letter-spacing: 1px; color: #fff; }
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 600; font-size: .92rem; color: var(--text);
  padding: 10px 14px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta { margin-left: 10px; }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .2s ease; box-shadow: var(--shadow);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 11px 14px; border-radius: 8px; font-size: .9rem; }
.drop a:hover { background: var(--bg-3); color: var(--teal); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: #fff; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 78px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 75% 20%, rgba(128,192,194,.18), transparent 60%),
    radial-gradient(700px 600px at 10% 90%, rgba(31,77,92,.35), transparent 60%),
    linear-gradient(180deg, rgba(11,15,26,.4), var(--bg) 92%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .35;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000, transparent 75%);
          mask-image: radial-gradient(circle at 70% 30%, #000, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { margin: 18px 0 22px; }
.hero h1 .italic { color: var(--teal); }
.hero .lead { margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 34px; margin-top: 54px; flex-wrap: wrap; }
.hero-meta .stat strong { font-family: var(--font-head); font-size: 2.2rem; color: #fff; display: block; line-height: 1; }
.hero-meta .stat span { font-size: .82rem; color: var(--muted); letter-spacing: .5px; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--muted); font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; }

/* --- Marquee (villes) --- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; gap: 42px; white-space: nowrap; animation: scroll-x 40s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 1px; color: var(--muted); }
.marquee-track span::after { content: "✦"; color: var(--teal); margin-left: 42px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* --- Cards --- */
.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .3s ease, border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: rgba(128,192,194,.4); box-shadow: var(--shadow); }
.card .ic {
  width: 54px; height: 54px; display: grid; place-items: center; font-size: 1.5rem;
  border-radius: 14px; background: var(--teal-deep); color: var(--teal-2); margin-bottom: 18px;
}
.card h3 { color: #fff; margin-bottom: 10px; }
.card .card-link { color: var(--teal); font-weight: 700; font-size: .9rem; margin-top: 16px; display: inline-flex; gap: 6px; }
.card .card-link::after { content: "→"; transition: transform .2s; }
.card:hover .card-link::after { transform: translateX(4px); }

.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Stats band --- */
.stats-band { background: linear-gradient(120deg, var(--teal-deep), var(--bg-2)); border: 1px solid var(--line); border-radius: 24px; padding: 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-grid .num { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.4rem); color: #fff; line-height: 1; }
.stats-grid .num em { color: var(--teal); font-style: normal; }
.stats-grid .lbl { color: var(--muted); font-size: .85rem; margin-top: 8px; }

/* --- Client cards --- */
.client-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: .3s; }
.client-card:hover { border-color: rgba(128,192,194,.4); transform: translateY(-5px); }
.client-card .ch { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.client-card .logo-box { width: 50px; height: 50px; border-radius: 12px; background: var(--bg-3); display: grid; place-items: center; font-family: var(--font-head); color: var(--teal); font-size: 1.2rem; }
.client-card .tag { font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); border: 1px solid var(--teal-deep); padding: 4px 10px; border-radius: 100px; }
.client-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 8px; }
.client-card .bio { font-size: .92rem; }
.client-card .metrics { display: flex; gap: 24px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.client-card .metrics b { font-family: var(--font-head); color: #fff; font-size: 1.4rem; display: block; line-height: 1; }
.client-card .metrics span { font-size: .72rem; color: var(--muted); letter-spacing: .5px; }

/* --- Portfolio --- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { background: var(--bg-2); border: 1px solid var(--line); color: var(--muted); padding: 9px 18px; border-radius: 100px; font-weight: 600; font-size: .85rem; cursor: pointer; transition: .2s; }
.filter-btn:hover { color: #fff; }
.filter-btn.active { background: var(--teal); color: #07222a; border-color: var(--teal); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pf-item { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-3); }
.pf-item .ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--line); font-family: var(--font-head); font-size: 3rem; }
.pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pf-item:hover img { transform: scale(1.06); }
.pf-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; background: linear-gradient(transparent, rgba(7,12,20,.92)); opacity: 0; transition: .3s; }
.pf-item:hover .pf-overlay { opacity: 1; }
.pf-overlay .cat { font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); }
.pf-overlay h4 { color: #fff; font-size: 1.05rem; margin-top: 4px; }

/* --- Instagram --- */
.ig-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.ig-handle { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 1.6rem; color: #fff; }
.ig-handle .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); }
.ig-embed { min-height: 320px; border-radius: var(--radius); overflow: hidden; }
.ig-fallback { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ig-fallback a { aspect-ratio: 1; border-radius: var(--radius-sm); background: var(--bg-3); border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: .3s; }
.ig-fallback a:hover { border-color: var(--teal); color: var(--teal); transform: scale(1.03); }

/* --- Faux feeds Instagram (carrousel) --- */
.igf-wrap { position: relative; }
.igf-carousel { position: relative; }
.igf-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding: 6px 2px 10px; scrollbar-width: none;
}
.igf-track::-webkit-scrollbar { display: none; }
.igf {
  scroll-snap-align: center; flex: 0 0 auto; width: min(440px, 86vw);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
}
.igf-head { display: flex; gap: 16px; align-items: center; padding: 20px; }
.igf-avatar {
  width: 66px; height: 66px; border-radius: 50%; padding: 3px; flex: 0 0 auto;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: grid; place-items: center;
}
.igf-avatar span, .igf-avatar img { width: 100%; height: 100%; border-radius: 50%; border: 3px solid var(--bg-2); }
.igf-avatar span { background: var(--bg-3); display: grid; place-items: center; font-family: var(--font-head); color: #fff; font-size: 1.25rem; }
.igf-avatar img { object-fit: cover; }
.igf-handle { font-weight: 700; color: #fff; display: flex; align-items: center; gap: 6px; font-size: 1.02rem; }
.igf-badge { color: #3897f0; font-size: .85rem; }
.igf-stats { display: flex; gap: 18px; margin-top: 8px; font-size: .8rem; color: var(--muted); flex-wrap: wrap; }
.igf-stats b { color: #fff; font-weight: 700; }
.igf-bio { padding: 0 20px 16px; font-size: .85rem; color: var(--text); line-height: 1.5; }
.igf-bio b { color: #fff; }
.igf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.igp {
  position: relative; aspect-ratio: 1; border: 0; padding: 0; cursor: pointer;
  background: #0a0e18 center/cover no-repeat; overflow: hidden;
}
.igp--ph { background: linear-gradient(135deg, var(--teal-deep), var(--bg-3)); }
.igp--ph:nth-child(3n+2) { background: linear-gradient(135deg, #243b4a, var(--bg-3)); }
.igp--ph:nth-child(3n) { background: linear-gradient(135deg, #1a2c3a, var(--teal-deep)); }
.igp--ph span { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.22); font-family: var(--font-head); font-size: 1.5rem; }
.igp::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .2s; }
.igp:hover::after { background: rgba(0,0,0,.28); }
.igp-play { position: absolute; top: 7px; right: 8px; z-index: 2; color: #fff; font-size: .7rem; filter: drop-shadow(0 1px 3px rgba(0,0,0,.7)); }
.igp:focus-visible { outline: 3px solid var(--teal); outline-offset: -3px; }
.igf-foot { padding: 14px 20px; border-top: 1px solid var(--line); }
.igf-cta { font-size: .78rem; color: var(--muted); }
.igf-hint { margin-top: 18px; font-size: .85rem; color: var(--muted); }

.igf-arw {
  position: absolute; top: 90px; z-index: 4; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(11,15,26,.85); color: #fff; cursor: pointer;
  backdrop-filter: blur(6px); display: grid; place-items: center; font-size: 1.5rem; transition: .2s;
}
.igf-arw:hover { border-color: var(--teal); color: var(--teal); transform: scale(1.08); }
.igf-arw--prev { left: -10px; }
.igf-arw--next { right: -10px; }
.igf-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.igf-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; transition: .25s; padding: 0; }
.igf-dots button.on { background: var(--teal); width: 24px; border-radius: 6px; }
@media (max-width: 720px) { .igf-arw { display: none; } }

/* --- Lightbox style Instagram --- */
.iglb { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; }
.iglb.open { display: flex; }
.iglb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.94); backdrop-filter: blur(4px); }
.iglb-post {
  position: relative; z-index: 2; width: min(440px, 94vw); max-height: 94vh; background: #000;
  border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid #222;
}
.iglb-bar { display: flex; align-items: center; gap: 11px; padding: 13px 15px; border-bottom: 1px solid #1c1c1c; }
.iglb-ava { width: 36px; height: 36px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); color: #fff; font-size: .8rem; font-family: var(--font-head); }
.iglb-handle { color: #fff; font-size: .92rem; }
.iglb-img { background: #000; aspect-ratio: 1; display: grid; place-items: center; }
.iglb-img img, .iglb-img video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.iglb-img.ph { background: linear-gradient(135deg, var(--teal-deep), var(--bg-3)); }
.iglb-img.ph span { color: rgba(255,255,255,.3); font-family: var(--font-head); font-size: 2.4rem; }
.iglb-cap { padding: 13px 15px 6px; font-size: .9rem; color: #ddd; line-height: 1.5; }
.iglb-cap b { color: #fff; }
.iglb-count { padding: 0 15px 14px; font-size: .75rem; color: #888; }
.iglb-x { position: absolute; top: 18px; right: 18px; z-index: 5; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.1); color: #fff; font-size: 1.1rem; cursor: pointer; }
.iglb-x:hover { background: rgba(255,255,255,.2); }
.iglb-nav { position: absolute; z-index: 5; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; border: 0; background: rgba(255,255,255,.1); color: #fff; font-size: 1.7rem; cursor: pointer; transition: .2s; }
.iglb-nav:hover { background: rgba(255,255,255,.22); }
.iglb-prev { left: max(14px, calc(50% - min(440px,94vw)/2 - 64px)); }
.iglb-next { right: max(14px, calc(50% - min(440px,94vw)/2 - 64px)); }
@media (max-width: 720px) { .iglb-prev { left: 8px; } .iglb-next { right: 8px; } .iglb-nav { width: 44px; height: 44px; } }

/* --- Process steps --- */
.steps { counter-reset: step; display: grid; gap: 24px; }
.step { display: flex; gap: 22px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-head); font-size: 2rem; color: var(--teal); min-width: 60px; }
.step h3 { color: #fff; margin-bottom: 6px; font-size: 1.2rem; }

/* --- Check list --- */
.checks { display: grid; gap: 14px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.checks li::before { content: "✓"; color: var(--teal); font-weight: 800; margin-top: 2px; }

/* --- CTA band --- */
.cta-band { background: linear-gradient(120deg, var(--teal-deep), var(--bg-3)); border: 1px solid rgba(128,192,194,.3); border-radius: 28px; padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: #cfe0e3; max-width: 56ch; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Forms --- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--text); }
.field input, .field textarea, .field select {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; color: #fff; font-family: inherit; font-size: .95rem; transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); }
.field textarea { min-height: 140px; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: .9rem; min-height: 1.2em; margin-top: 4px; }
.form-status.ok { color: var(--teal); font-weight: 600; }
.form-status.err { color: #ff8b8b; font-weight: 600; }

/* --- Page hero (interior) --- */
.page-hero { padding: 150px 0 60px; position: relative; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 400px at 80% 0%, rgba(128,192,194,.14), transparent 60%); }
.page-hero .container { position: relative; }
.breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--teal); }
.page-hero h1 { margin-bottom: 18px; }

/* --- Footer --- */
.footer { background: var(--black); border-top: 1px solid var(--line); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { font-family: var(--font-body); font-weight: 700; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 18px; }
.footer a { color: var(--muted); font-size: .9rem; display: block; padding: 5px 0; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer .brand { margin-bottom: 16px; }
.footer .desc { font-size: .9rem; max-width: 38ch; }
.footer-zones { columns: 2; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 50px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: var(--muted); }

/* --- Reveal animation (progressive enhancement : visible sans JS) --- */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* --- SEO city extras --- */
.ville-services { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.ville-link-pill { display:inline-block; margin:4px 6px 4px 0; padding:8px 14px; border:1px solid var(--line); border-radius:100px; font-size:.85rem; color:var(--muted); transition:.2s; }
.ville-link-pill:hover { border-color: var(--teal); color: var(--teal); }
.prose p { margin-bottom: 18px; color: var(--text); }
.prose h2 { margin: 40px 0 16px; }
.prose h3 { margin: 28px 0 12px; color:#fff; }

/* --- Responsive --- */
@media (max-width: 960px) {
  .cols-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 820px) {
  .nav-links { position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 16px 24px 26px; gap: 4px;
    transform: translateY(-130%); transition: transform .35s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 12px; }
  .drop { position: static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:0; background:transparent; padding:0 0 0 14px; min-width:0; }
  .has-drop:hover .drop { transform: none; }
  .burger { display: flex; }
  .nav-cta { display: none; }
}
@media (max-width: 640px) {
  .cols-2, .cols-3, .cols-4, .ville-services, .row-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .portfolio-grid, .ig-fallback { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
  .step { flex-direction: column; gap: 8px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
