/* ==========================================================
   BASE
========================================================== */

:root {
	--bg: #fbfbfa;
	--surface: #ffffff;
	--text: #10151d;
	--muted: #72767d;
	--line: #e7e7e4;

	--orange: #ff5a36;
	--blue: #1598e8;
	--green: #14bd70;

	--max-width: 1400px;
	--page-padding: 56px;

	--radius: 22px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);

	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Helvetica,
		Arial,
		sans-serif;

	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	display: block;
	width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--max-width)
	);
	margin-inline: auto;
}


/* ==========================================================
   HEADER
========================================================== */

.site-header {
	height: 94px;
	display: flex;
	align-items: center;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.identity {
	line-height: 1.15;
}

.identity strong {
	display: block;
	font-size: 20px;
	letter-spacing: -.035em;
}

.identity span {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-size: 13px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;

	min-height: 48px;
	padding: 0 23px;

	border-radius: 999px;

	background: var(--green);
	color: #fff;

	font-size: 14px;
	font-weight: 600;

	transition:
		transform .2s ease,
		opacity .2s ease;
}

.button:hover {
	transform: translateY(-2px);
}

.arrow {
	font-size: 19px;
	line-height: 1;
}


/* ==========================================================
   HERO + SERVICES
========================================================== */

.hero {
	padding: 52px 0 70px;
	border-bottom: 1px solid var(--line);
}

.hero-main {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 65px;
	align-items: center;
}

.section-label {
	display: flex;
	align-items: center;
	gap: 15px;

	margin-bottom: 25px;

	color: #85898f;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.section-label::before {
	content: "";
	width: 20px;
	height: 2px;
	flex: 0 0 auto;
	background: var(--orange);
}

.hero h1 {
	max-width: 570px;
	margin: 0;

	font-size: clamp(62px, 6.3vw, 104px);
	font-weight: 650;
	line-height: .95;
	letter-spacing: -.065em;
}

.hero-description {
	max-width: 570px;

	margin: 30px 0 30px;

	color: var(--muted);
	font-size: 19px;
	line-height: 1.55;
}


/* HERO IMAGE */

.hero-visual {
	min-width: 0;
}

.hero-visual img {
	width: 100%;
	max-height: 500px;
	object-fit: contain;
	object-position: center;
}


/* SERVICES */

.services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 50px 0;
}

.service {
	padding: 0 45px;
	border-left: 1px solid var(--line);
}

.service:first-child {
	padding-left: 8px;
	border-left: 0;
}

.service:last-child {
	padding-right: 0;
}

/* ==========================================================
   SERVICE VISUALS
========================================================== */

.service-visual {
    width: 88px;
    height: 88px;
    margin: 0 auto 25px auto;
}

.service-visual svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.service-visual svg > * {
    fill: none;
    stroke: var(--text);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-visual .thin {
    stroke-width: 2;
    opacity: .3;
}

.service-visual .accent {
    stroke: none;
}

.service-visual .reverse {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
}

.service-visual .accent-fill {
    stroke: none;
}

.service-visual .accent-stroke {
    fill: none;
    stroke-width: 4;
}


/* 01 — OFFRE */

.service-visual--offer .accent,
.service-visual--offer .accent-fill {
    fill: var(--orange);
}

.service-visual--offer .accent-stroke {
    stroke: var(--orange);
}


/* 02 — SUPPORTS */

.service-visual--support .accent,
.service-visual--support .accent-fill {
    fill: var(--blue);
}

.service-visual--support .accent-stroke {
    stroke: var(--blue);
}


/* 03 — MARCHÉ */

.service-visual--market .accent,
.service-visual--market .accent-fill {
    fill: var(--green);
}

.service-visual--market .accent-stroke {
    stroke: var(--green);
}

.service h2 {
	margin: 0 0 9px;
	text-align: center;
	font-size: 24px;
	font-weight: 650;
	letter-spacing: -.035em;
}

.service p {
	max-width: 340px;

	margin: 0;

	color: var(--muted);
	font-size: 17px;
	line-height: 1.48;
}


/* ==========================================================
   EXPERIENCE
========================================================== */

.experience {
	padding: 50px 0;
	border-bottom: 1px solid var(--line);
}

.experience-grid {
	display: grid;
	grid-template-columns: 1.15fr 1.25fr .25fr;
	gap: 55px;
	align-items: center;
}

.experience-title {
	margin: 0;

	font-size: clamp(32px, 3vw, 44px);
	line-height: 1.08;
	letter-spacing: -.05em;
	font-weight: 650;
}


/* TIMELINE */

.timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);

	position: relative;
}

.timeline::after {
	content: "";

	position: absolute;
	left: 8%;
	right: 8%;
	bottom: 32px;

	height: 1px;

	background: #dcdcdc;
}

.timeline-item {
	position: relative;
	z-index: 1;

	text-align: center;
}

.timeline-brand {
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 14px;
}


/* LOGOS */

.timeline-logo {
    display: block;

    width: auto;
    max-width: 145px;
    height: auto;
    max-height: 32px;

    object-fit: contain;
    object-position: center;
}


/* Ajustements optiques individuels */

.timeline-logo--accenture {
    max-width: 140px;
    max-height: 30px;
}

.timeline-logo--canva {
    max-width: 115px;
    max-height: 32px;
}

.timeline-logo--dekuple {
    max-width: 125px;
    max-height: 30px;
}


/* CONSULTANT */

.timeline-consultant {
    display: inline-flex;
    align-items: center;

    font-size: 18px;
    font-weight: 750;
    line-height: 1;
    letter-spacing: -.04em;
}

.timeline-dot {
	width: 7px;
	height: 7px;

	margin: 12px auto 9px;

	border-radius: 50%;
	background: #8e9298;
}

.timeline-date {
	position: relative;
	z-index: 2;

	display: inline-block;
	padding: 0 5px;

	background: var(--bg);

	color: #8a8e94;
	font-size: 12px;
}

.experience-about {
	padding-left: 25px;
	border-left: 1px solid var(--line);

	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
}


/* ==========================================================
   PROJECTS
========================================================== */

.projects {
	padding: 50px 0 65px;
}

.projects-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;

	margin-bottom: 28px;
}

.projects-heading h2 {
	margin: 0;

	font-size: clamp(34px, 3.5vw, 52px);
	line-height: 1.05;
	letter-spacing: -.05em;
	font-weight: 650;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.project {
	overflow: hidden;

	border: 1px solid var(--line);
	border-radius: var(--radius);

	background: var(--surface);

	transition:
		transform .25s ease,
		box-shadow .25s ease;
}

.project:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.project-image {
	aspect-ratio: 1.45 / 1;
	overflow: hidden;
	background: #eee;
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;

	transition: transform .4s ease;
}

.project:hover .project-image img {
	transform: scale(1.025);
}

.project-content {
	position: relative;
	min-height: 160px;
	padding: 20px 68px 23px 22px;
}

.project-type {
	display: block;

	margin-bottom: 6px;

	color: #8b8f94;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.project h3 {
	margin: 0 0 7px;

	font-size: 21px;
	letter-spacing: -.035em;
}

.project p {
	margin: 0;

	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.project-arrow {
	position: absolute;
	top: 23px;
	right: 20px;

	width: 38px;
	height: 38px;

	display: grid;
	place-items: center;

	border: 1px solid #d8d8d5;
	border-radius: 50%;

	font-size: 19px;
}


/* ==========================================================
   FOOTER
========================================================== */

footer {
	border-top: 1px solid var(--line);
}

.footer-inner {
	min-height: 105px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;

	color: #8b8e93;
	font-size: 13px;
}

.footer-brand {
	color: var(--text);
	font-weight: 700;
}

.footer-left,
.footer-links {
	display: flex;
	align-items: center;
	gap: 25px;
}

.footer-links a:hover {
	color: var(--text);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

	:root {
		--page-padding: 32px;
	}

	.hero-main {
		grid-template-columns: .9fr 1.1fr;
		gap: 30px;
	}

	.hero h1 {
		font-size: clamp(56px, 7vw, 78px);
	}

	.services {
		margin-top: 55px;
	}

	.service {
		padding: 0 28px;
	}

	.experience-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.experience-about {
		max-width: 600px;
		padding: 0;
		border: 0;
	}

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 720px) {

	:root {
		--page-padding: 20px;
	}

	.site-header {
		height: 78px;
	}

	.identity strong {
		font-size: 17px;
	}

	.identity span {
		font-size: 11px;
	}

	.button {
		min-height: 43px;
		padding: 0 17px;
		font-size: 13px;
	}


	/* HERO */

	.hero {
		padding: 38px 0 48px;
	}

	.hero-main {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 35px;
	}

	.section-label {
		margin-bottom: 20px;
		font-size: 10px;
	}

	.hero h1 {
		max-width: 100%;
		font-size: clamp(52px, 15vw, 72px);
	}

	.hero-description {
		margin: 24px 0 26px;

		font-size: 17px;
		line-height: 1.5;
	}

	.hero-visual {
		margin-inline: -10px;
	}

	.hero-visual img {
		max-height: 390px;
	}


	/* SERVICES */

	.services {
		display: block;
		margin-top: 45px;
	}

	.service,
	.service:first-child,
	.service:last-child {
		display: block;
		padding: 32px 0;
		border: 0;
		border-top: 1px solid var(--line);
	}

	.service-visual {
		width: 74px;
		height: 74px;
		margin-bottom: 20px;
	}

	.service h2 {
		margin: 0 0 7px;
		font-size: 21px;
	}

	.service p {
		font-size: 15px;
	}

	/* EXPERIENCE */

	.experience {
		padding: 42px 0;
	}

	.experience-title {
		font-size: 30px;
	}

	.timeline {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 12px;
	}

	.timeline::after {
		display: none;
	}

	.timeline-item {
		padding: 18px 10px;

		border: 1px solid var(--line);
		border-radius: 16px;

		background: var(--surface);
	}

	.timeline-dot {
		display: none;
	}

	.timeline-date {
		margin-top: 7px;
		background: transparent;
	}


	/* PROJECTS */

	.projects {
		padding: 42px 0 50px;
	}

	.projects-heading {
		display: block;
		margin-bottom: 25px;
	}

	.projects-heading h2 {
		font-size: 36px;
	}

	.projects-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.project-image {
		aspect-ratio: 1.5 / 1;
	}

	.project-content {
		min-height: 145px;
	}


	/* FOOTER */

	.footer-inner {
		padding: 28px 0;

		flex-direction: column;
		align-items: flex-start;

		min-height: 0;
	}

	.footer-left {
		flex-direction: column;
		align-items: flex-start;
		gap: 7px;
	}

}


/* ==========================================================
   VERY SMALL MOBILE
========================================================== */

@media (max-width: 400px) {

	:root {
		--page-padding: 16px;
	}

	.identity span {
		display: none;
	}

	.button {
		padding-inline: 15px;
	}

	.hero h1 {
		font-size: 50px;
	}

	.timeline {
		grid-template-columns: 1fr;
		gap: 10px;
	}

}


/* ==========================================================
   ACCESSIBILITY / PERFORMANCE
========================================================== */

@media (prefers-reduced-motion: reduce) {

	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition: none !important;
	}

}

/* ==========================================================
   CONTACT / WPFORMS
========================================================== */

.contact-section {
    padding: 70px 0 85px;
    border-top: 1px solid var(--line);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
    gap: clamp(60px, 8vw, 120px);
    align-items: start;
}

.contact-intro h2 {
    margin: 0 0 18px;

    font-size: clamp(34px, 3.2vw, 52px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.contact-intro p {
    max-width: 390px;
    margin: 0;

    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   RESET WPFORMS
---------------------------------------------------------- */

.contact-form #wpforms-103 {
    margin: 0 !important;
    padding: 0 !important;
}

.contact-form #wpforms-103 .wpforms-form {
    margin: 0 !important;
}

.contact-form #wpforms-103 .wpforms-field {
    padding: 0 0 20px !important;
}


/* ----------------------------------------------------------
   LABELS
---------------------------------------------------------- */

.contact-form #wpforms-103 .wpforms-field-label {
    display: block !important;

    margin: 0 0 8px !important;

    color: var(--text) !important;

    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.contact-form #wpforms-103 .wpforms-required-label {
    color: #ff6347 !important;
}


/* ----------------------------------------------------------
   INPUTS
---------------------------------------------------------- */

.contact-form #wpforms-103 input[type="text"],
.contact-form #wpforms-103 input[type="email"],
.contact-form #wpforms-103 input[type="tel"],
.contact-form #wpforms-103 input[type="url"],
.contact-form #wpforms-103 select,
.contact-form #wpforms-103 textarea {

    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;

    border: 1px solid #e3e3df !important;
    border-radius: 10px !important;

    background: #f7f7f5 !important;

    color: var(--text) !important;

    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 400 !important;

    outline: none !important;
    box-shadow: none !important;

    transition:
        border-color .18s ease,
        background-color .18s ease,
        box-shadow .18s ease !important;
}


/* INPUT SIMPLE */

.contact-form #wpforms-103 input[type="text"],
.contact-form #wpforms-103 input[type="email"],
.contact-form #wpforms-103 input[type="tel"],
.contact-form #wpforms-103 input[type="url"],
.contact-form #wpforms-103 select {
    height: 50px !important;
    padding: 0 16px !important;
}


/* TEXTAREA */

.contact-form #wpforms-103 textarea {
    min-height: 145px !important;
    padding: 15px 16px !important;
    resize: vertical !important;
}


/* ----------------------------------------------------------
   FOCUS
---------------------------------------------------------- */

.contact-form #wpforms-103 input:focus,
.contact-form #wpforms-103 select:focus,
.contact-form #wpforms-103 textarea:focus {
    background: #fff !important;
    border-color: var(--text) !important;

    box-shadow:
        0 0 0 3px rgba(17, 24, 39, .05) !important;
}


/* ----------------------------------------------------------
   ERRORS
---------------------------------------------------------- */

.contact-form #wpforms-103 label.wpforms-error {
    margin-top: 6px !important;

    color: #d94735 !important;

    font-size: 12px !important;
    font-weight: 500 !important;
}

.contact-form #wpforms-103 input.wpforms-error,
.contact-form #wpforms-103 textarea.wpforms-error {
    border-color: #d94735 !important;
}


/* ----------------------------------------------------------
   SUBMIT
---------------------------------------------------------- */

.contact-form #wpforms-103 .wpforms-submit-container {
    margin: 4px 0 0 !important;
    padding: 0 !important;
}

.contact-form #wpforms-103 button.wpforms-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 150px !important;
    height: 48px !important;

    margin: 0 !important;
    padding: 0 24px !important;

    border: 0 !important;
    border-radius: 999px !important;

    background: var(--text) !important;
    color: #fff !important;

    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    line-height: 1 !important;

    cursor: pointer !important;

    box-shadow: none !important;

    transition:
        transform .18s ease,
        opacity .18s ease !important;
}

.contact-form #wpforms-103 button.wpforms-submit:hover {
    background: var(--text) !important;
    color: #fff !important;

    transform: translateY(-2px);
    opacity: .88;
}

.contact-form #wpforms-103 button.wpforms-submit:focus {
    outline: 2px solid var(--text) !important;
    outline-offset: 3px !important;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 980px) {

    .contact-grid {
        grid-template-columns: .75fr 1.25fr;
        gap: 50px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 720px) {

    .contact-section {
        padding: 55px 0 65px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .contact-intro h2 {
        font-size: 36px;
    }

    .contact-intro p {
        max-width: 100%;
        font-size: 15px;
    }

    .contact-form #wpforms-103 .wpforms-field {
        padding-bottom: 17px !important;
    }

    .contact-form #wpforms-103 input[type="text"],
    .contact-form #wpforms-103 input[type="email"],
    .contact-form #wpforms-103 input[type="tel"],
    .contact-form #wpforms-103 input[type="url"],
    .contact-form #wpforms-103 select {
        height: 50px !important;
        font-size: 16px !important;
    }

    .contact-form #wpforms-103 textarea {
        min-height: 135px !important;
        font-size: 16px !important;
    }

    .contact-form #wpforms-103 button.wpforms-submit {
        width: 100% !important;
        height: 50px !important;
    }

}