@font-face { font-family: "Raleway"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/raleway-400-latin.ttf") format("truetype"); }
@font-face { font-family: "Raleway"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/raleway-500-latin.ttf") format("truetype"); }
@font-face { font-family: "Raleway"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/raleway-600-latin.ttf") format("truetype"); }
@font-face { font-family: "Raleway"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/raleway-700-latin.ttf") format("truetype"); }
@font-face { font-family: "Lato"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/lato-400-latin.ttf") format("truetype"); }
@font-face { font-family: "Lato"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/lato-700-latin.ttf") format("truetype"); }
@font-face { font-family: "Roboto"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/roboto-400-latin.ttf") format("truetype"); }
@font-face { font-family: "Roboto"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/roboto-500-latin.ttf") format("truetype"); }
@font-face { font-family: "Roboto"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/roboto-700-latin.ttf") format("truetype"); }

:root {
  --blue: #1781c4;
  --blue-deep: #043c90;
  --blue-soft: #4789e6;
  --navy: #0e3d80;
  --ink: #0c0c0c;
  --muted: #545454;
  --text: #2d2d2d;
  --pink: #c9144a;
  --pink-hot: #ef1048;
  --orange: #ed751f;
  --red: #c4322d;
  --purple: #a83887;
  --bg: #fff;
  --bg-soft: #f6f6f6;
  --bg-grey: #f0f0f0;
  --line: #e6e6e6;
  --header: 110px;
  --wrap: 1240px;
  --radius: 25px;
  --font-head: "Raleway", sans-serif;
  --font-body: "Lato", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.menu-open, body.menu-open { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
button, input, textarea { font: inherit; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.6em; }

.sr-only, .form__hp {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--blue); color: #fff; padding: 0.6rem 1rem;
}
.skip-link:focus { left: 0; }

.wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
.wrap--narrow { width: min(860px, calc(100% - 40px)); }

.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; fill: currentColor; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px;
  color: #000; background: transparent;
  border-bottom: 1px solid #000; padding: 0 0 8px;
}
.btn:hover { color: var(--blue); border-color: var(--blue); }
.btn--header {
  background: var(--blue); color: #fff; border: 0;
  border-radius: 10px; padding: 15px 30px;
}
.btn--header:hover { background: var(--navy); color: #fff; }
.btn--icon-left { flex-direction: row; }
.btn--icon-right { flex-direction: row; }
.btn__icon { display: inline-flex; }
.text-link {
  color: var(--pink); font-weight: 700; font-size: 13px;
  text-transform: lowercase;
}
.text-link:hover { color: var(--pink-hot); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; }
.topbar { background: var(--bg-soft); font-size: 12px; }
.topbar__inner {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto; padding: 4px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar__contact, .topbar__group, .nav__list, .social, .footer-refs, .footer-bottom__links, .filter, .group-logos {
  list-style: none; padding: 0; margin: 0;
}
.topbar__contact, .topbar__group { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; }
.topbar a { color: var(--text); }
.topbar a:hover { color: var(--blue); }
.topbar__icon { margin-right: 6px; width: 14px; height: 14px; }
.topbar__group { font-family: var(--font-head); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.topbar__group li + li { border-left: 1px solid #dadada; padding-left: 20px; }

.mainbar { box-shadow: 35px 12px 28px -16px rgba(0,0,0,.23); background: #fff; }
.mainbar__inner {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto; min-height: var(--header);
  display: grid; grid-template-columns: 15% 1fr auto;
  align-items: center; gap: 16px;
}
.logo { display: block; max-width: 140px; }
.logo__img { width: 80%; height: auto; }
.nav__list { display: flex; align-items: center; justify-content: center; gap: 8px 22px; }
.nav__link {
  font-family: var(--font-head); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px;
  color: #000; padding: 20px 0; display: inline-block;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--blue); }
.nav__item--mobile-cta { display: none; }
.nav__burger { display: none; background: #fff; border: 0; padding: 8px; cursor: pointer; }
.nav__burger .icon { width: 25px; height: 25px; }
.nav__burger-close { display: none; }
.nav.is-open .nav__burger-open { display: none; }
.nav.is-open .nav__burger-close { display: block; }

/* Hero */
.hero { position: relative; min-height: 90vh; display: grid; place-items: center; overflow: hidden; color: #fff; text-align: center; }
.hero__bg {
  position: absolute; inset: -8%;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.hero__overlay { position: absolute; inset: 0; background: #000; opacity: .2; }
.hero__inner { position: relative; z-index: 1; padding: 80px 20px 40px; width: min(1100px, 100%); }
.hero__kicker {
  font-family: var(--font-head); font-size: 15px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 2px;
  border-top: 3px solid var(--blue); border-bottom: 3px solid var(--blue);
  display: inline-block; padding: 6px 0; margin: 0 0 18px;
}
.hero__title {
  font-family: var(--font-head); font-size: clamp(30px, 5.4vw, 65px);
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0,0,0,.3); margin: 0;
}
.hero__scroll { display: inline-block; margin-top: 70px; color: #fff; }
.hero__scroll span {
  display: block; width: 18px; height: 18px; margin: 0 auto;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: bounce 1.6s infinite;
}
@keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(8px); } }

.page-hero {
  position: relative; min-height: 420px;
  background-size: cover; background-position: center; background-attachment: fixed;
  display: grid; place-items: center; color: #fff; text-align: center;
}
.page-hero--short { min-height: 400px; }
.page-hero__overlay { position: absolute; inset: 0; background: #000; }
.page-hero__inner { position: relative; z-index: 1; padding: 80px 20px; }
.page-hero__kicker { text-transform: uppercase; letter-spacing: 2px; font-size: 15px; }
.page-hero__title { font-size: clamp(32px, 5vw, 56px); font-weight: 600; text-transform: uppercase; }

.section-title {
  font-size: clamp(28px, 4vw, 50px); font-weight: 700;
  padding-left: 20px; border-left: 5px solid var(--blue);
}
.section-title--sm { font-size: 28px; }
.section-title--center { border: 0; padding: 0; text-align: center; }
.section-title--blend { mix-blend-mode: difference; font-size: 38px; border: 0; padding: 0; }
.page-title { font-family: var(--font-body); font-size: clamp(32px, 4vw, 48px); font-weight: 400; }
.page-title--lg { font-size: clamp(34px, 4.2vw, 48px); }
.page-kicker { color: var(--navy); font-weight: 700; font-size: 13px; text-transform: uppercase; }
.lede { color: var(--muted); }
.lede--center { text-align: center; max-width: 720px; margin: 0 auto 2rem; }

.about, .works-home { padding: 100px 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about__img { height: 600px; width: 100%; object-fit: cover; border-radius: 15px; }
.about__float { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.rich-text { color: #000; font-size: 13px; font-weight: 400; text-align: justify; }
.rich-text a { color: var(--pink); }

.domains-home { background: var(--bg-grey); padding: 50px 0 100px; }
.domain-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px;
}
.domain-card {
  position: relative; min-height: 340px; border-radius: var(--radius); overflow: hidden;
  color: #fff; display: flex; align-items: flex-end;
}
.domain-card__bg, .domain-card__overlay { position: absolute; inset: 0; }
.domain-card__bg { background-size: cover; background-position: center; }
.domain-card__overlay { background: #000; opacity: .3; transition: background .3s, opacity .3s; }
.domain-card:hover .domain-card__overlay { background: var(--hover, var(--blue)); opacity: .5; }
.domain-card__body {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end;
  padding: 24px 16px 16px;
}
.domain-card__title { color: #fff; font-family: var(--font-body); font-weight: 500; text-transform: uppercase; margin: 0 0 6px; }
.domain-card__blurb { color: #fff; font-size: 14px; margin: 0; }
.domain-card__arrow { font-size: 28px; line-height: 1; }

.works-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 24px; }
.work-card__img { width: 100%; height: 280px; object-fit: cover; }
.work-card__meta { font-size: 13px; color: var(--muted); margin: 10px 0 0; }
.work-card__title { font-size: 22px; margin: 8px 0 0; }
.work-card__title a:hover { color: var(--pink); }
.works-home__cta, .about__cta { margin-top: 30px; }

/* Inner pages */
.split--bureau { padding: 40px 0 80px; }
.split__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.split__media { min-height: 520px; background-size: cover; background-position: center; }
.columns-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.stats { display: flex; gap: 40px; list-style: none; padding: 0; margin: 32px 0; }
.stats strong { display: block; font-size: 42px; font-family: var(--font-head); }
.stats span { font-size: 12px; font-weight: 600; }
.tools { columns: 2; gap: 24px; }

.societe-hero { padding-top: 20px; }
.societe-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 520px; }
.societe-hero__text { padding: 60px 40px 40px 0; }
.societe-hero__media { background-size: cover; background-position: center; min-height: 420px; }
.prose-block { padding: 48px 0; }
.group-block { padding: 20px 0 40px; }
.group-logos { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center; }
.group-logos__img { max-height: 70px; width: auto; }

.page-plain { padding: 70px 0 80px; }
.metier-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px 16px; margin: 40px 0 70px; }
.metier-card__media { display: block; height: 220px; background-size: cover; background-position: center; }
.metier-card__title { font-size: 21px; margin: 16px 0 8px; }
.metier-card ul { font-size: 12px; line-height: 1.6; }
.certs { display: grid; gap: 18px; max-width: 1024px; margin: 0 auto; }
.cert h3 { font-size: 15px; margin-bottom: 4px; }
.cert p { font-size: 12px; line-height: 1.6; color: var(--muted); }

.engage { padding: 70px 0; }
.engage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.engage-col h2 { font-size: 28px; }

.metier { padding: 70px 0; }
.metier-intro { font-size: 18px; font-weight: 500; }
.metier-closing, .metier-since { margin-top: 1.5rem; }

.real-hero { padding: 70px 0 20px; }
.real-hero__grid { display: grid; grid-template-columns: 30% 1fr; gap: 20px; align-items: end; }
.real-hero__accent { min-height: 160px; background: linear-gradient(240deg, #0e3d80 0%, #4789e6 100%); }
.real-hero__title {
  font-family: var(--font-body); font-size: clamp(40px, 6vw, 80px);
  font-weight: 600; line-height: .9; mix-blend-mode: difference; color: #383838;
}
.real-hero__titles { display: flex; flex-direction: column; justify-content: flex-end; min-height: 160px; }
.real-hero__kicker { text-align: right; color: var(--muted); font-size: 17px; background: none; padding: 0; margin: 0 0 8px; }
.filters { padding: 20px 0 80px; }
.filters__label { text-align: center; color: var(--blue-deep); font-weight: 600; text-transform: uppercase; }
.filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 16px; margin: 16px 0 36px; }
.filter__btn {
  border: 0; background: var(--bg-grey); color: #111;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  text-transform: uppercase; padding: 10px 15px; cursor: pointer;
}
.filter__btn.is-active, .filter__btn[aria-pressed="true"] { background: var(--blue-deep); color: #fff; }
.work-card.is-hidden { display: none; }
.works-empty { text-align: center; color: var(--muted); }

.chantier { padding: 50px 0 80px; }
.breadcrumb { font-size: 13px; }
.chantier__meta { display: flex; gap: 24px; text-transform: uppercase; font-size: 13px; font-weight: 700; }
.chantier__cover { margin: 24px 0; }
.chantier__img { width: 100%; max-height: 520px; object-fit: cover; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 32px 0; }
.gallery__img { width: 100%; height: 180px; object-fit: cover; }
.chantier-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; border-top: 1px solid var(--line); padding-top: 24px; }
.chantier-nav__link { max-width: 45%; }
.chantier-nav__link span { display: block; font-size: 12px; text-transform: uppercase; color: var(--muted); }
.chantier-nav__link--next { text-align: right; margin-left: auto; }

.contact { padding: 45px 0 80px; }
.contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; }
.form__fields { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.form__group { padding: 0 12px; margin-bottom: 16px; }
.form__group--half { width: 50%; }
.form__group--full { width: 100%; }
.form__field {
  width: 100%; border: 0; background: #f9f9f9; padding: 14px 16px; color: #000;
}
.form__accept { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.form__submit {
  background: var(--blue-soft); color: #fff; border: 0;
  padding: 12px 28px; cursor: pointer; text-transform: uppercase;
}
.form__submit:hover { background: var(--navy); }
.form__status.is-error { color: var(--red); }
.form.is-sent .form__fields, .form.is-sent .form__submit { display: none; }
.form__success { padding: 24px 0; }
.contact__coords { margin-top: 32px; color: var(--muted); }
.contact__side { min-height: 480px; background-size: cover; background-position: center; }

.legal { padding: 70px 0 90px; }
.legal__h1 { font-size: 36px; }
.legal__h2 { font-size: 22px; margin-top: 2rem; }
.legal a { color: var(--pink); }
.cookie-prefs { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* Footer */
.footer-cta { position: relative; padding: 120px 20px; text-align: center; overflow: hidden; }
.footer-cta__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.footer-cta__bg::after { content: ""; position: absolute; inset: 0; background: #fff; opacity: .8; }
.footer-cta__inner { position: relative; z-index: 1; }
.footer-cta__title { font-family: var(--font-body); font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; }
.footer { width: min(var(--wrap), calc(100% - 40px)); margin: 0 auto; padding: 50px 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; border-top: 1px solid var(--line); }
.footer__heading { font-size: 20px; font-weight: 700; }
.footer__heading--lg { font-size: 20px; }
.footer__col p, .footer-refs { color: var(--muted); font-size: 14px; }
.footer-refs li { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 10px; font-size: 12px; line-height: 1.4; }
.footer-refs__icon { color: #01348a; flex: none; }
.social { display: flex; gap: 12px; }
.social__link { display: grid; place-items: center; width: 36px; height: 36px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 10px 60px; border-top: 1px solid #ececec; font-size: 12px;
}
.footer-bottom__links { display: flex; gap: 16px; }
.footer-bottom a:hover { color: var(--pink); }

/* Cookie */
.cookie {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: min(420px, calc(100% - 32px));
  background: #fff; box-shadow: 0 12px 40px rgba(0,0,0,.18);
  padding: 24px; border-radius: 8px;
}
.cookie__close { position: absolute; top: 8px; right: 8px; border: 0; background: none; cursor: pointer; }
.cookie__title { font-size: 18px; }
.cookie__text { font-size: 13px; color: var(--muted); }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 8px; }
.cookie__btn {
  border: 0; cursor: pointer; padding: 10px 14px; font-size: 13px; font-weight: 600;
  background: var(--blue); color: #fff; text-decoration: none;
}
.cookie__btn--ghost { background: #eee; color: #111; }
.cookie__policy { font-size: 12px; margin: 0; }
.cookie__policy a { color: var(--pink); }

/* Lightbox */
.lightbox { border: 0; padding: 0; max-width: min(1100px, 96vw); background: transparent; }
.lightbox::backdrop { background: rgba(0,0,0,.86); }
.lightbox__figure { margin: 0; }
.lightbox__img { max-height: 80vh; width: auto; margin: 0 auto; }
.lightbox__caption, .lightbox__counter { color: #fff; text-align: center; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: none; border: 0; color: #fff; cursor: pointer; font-size: 0;
}
.lightbox__close { top: 8px; right: 8px; }
.lightbox__nav--prev { left: 8px; top: 50%; }
.lightbox__nav--next { right: 8px; top: 50%; }
.lightbox .icon { width: 28px; height: 28px; }

[data-anim] { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
[data-anim].is-visible { opacity: 1; transform: none; }
.reduced-motion [data-anim], .reduced-motion .about__float, .reduced-motion .hero__scroll span { animation: none; opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .metier-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .mainbar__inner { grid-template-columns: 1fr auto auto; }
  .nav__burger { display: inline-flex; }
  .nav__list {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 20px 24px; box-shadow: 0 16px 24px rgba(0,0,0,.12);
  }
  .nav.is-open .nav__list { display: flex; }
  .nav__item--mobile-cta { display: list-item; }
  .nav__link { padding: 12px 0; }
  .mainbar__cta { display: none; }
  .about__grid, .split__grid, .societe-hero__grid, .contact__grid, .engage__grid, .real-hero__grid { grid-template-columns: 1fr; }
  .columns-2, .tools { columns: 1; grid-template-columns: 1fr; }
  .about__img { height: 400px; }
}

@media (max-width: 767px) {
  .hero { min-height: 65vh; }
  .hero__bg { background-attachment: scroll; inset: 0; }
  .page-hero { background-attachment: scroll; min-height: 280px; }
  .topbar__inner { flex-direction: column; align-items: flex-start; padding: 8px 0; }
  .topbar__group li + li { border: 0; padding-left: 0; }
  .logo { max-width: 110px; }
  .logo__img { width: 40%; }
  .domain-grid, .works-grid, .metier-grid, .gallery { grid-template-columns: 1fr; }
  .real-hero__titles { min-height: 0; }
  .form__group--half { width: 100%; }
  .footer { grid-template-columns: 1fr; padding: 40px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 16px; }
  .cookie { right: 16px; left: 16px; width: auto; }
  .hero__scroll { margin-top: 40px; }
  .about, .works-home, .domains-home { padding: 60px 0; }
}
