/* Maquette Savoir-faire 2026 */

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

:root {
	--brand-orange: #e98030;
	--brand-orange-soft: #fff4eb;
	--brand-orange-light: #ffcaa1;
	--bg-page: #f8f8f8;
	--bg-card: #ffffff;
	--bg-dark: #000000;
	--border: #ededed;
	--text: #000000;
	--text-muted: #666666;
	--link: #e98030;
	--radius: 16px;
	--radius-sm: 10px;
	--max: 1280px;
	--font: 'muli', sans-serif;
	--font-display: 'Montserrat', sans-serif;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--header-offset: 72px;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
	.reveal, .timeline__item { opacity: 1 !important; transform: none !important; }
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg-page);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.mock-banner {
	background: #000;
	color: #fff;
	font-size: 13px;
	text-align: center;
	padding: 10px 16px;
	margin: 0;
}
.mock-banner strong { color: var(--brand-orange); }
.mock-banner code { background: rgba(255,255,255,.1); padding: 2px 6px; border-radius: 4px; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--border);
	border-top: 3px solid var(--brand-orange);
}
.site-header__inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.logo {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 18px;
	color: var(--text);
	text-decoration: none;
}
.logo span { color: var(--brand-orange); }
.nav { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; font-size: 13px; }
.nav a { color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.nav-cta {
	background: var(--brand-orange);
	color: #fff !important;
	padding: 8px 16px;
	border-radius: var(--radius-sm);
	text-decoration: none !important;
}

.wrapper { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--soft { background: var(--brand-orange-soft); }
.section-title {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin: 0 0 32px;
	line-height: 1.2;
}
.section-title--center { text-align: center; }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--brand-orange);
	color: #fff !important;
	border: 2px solid var(--brand-orange);
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	text-decoration: none !important;
	cursor: pointer;
	transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.btn:hover { background: #fff; color: var(--brand-orange) !important; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--brand-orange) !important; }
.btn--outline:hover { background: var(--brand-orange); color: #fff !important; }
.btn--light { border-color: #fff; background: transparent; color: #fff !important; }
.btn--light:hover { background: #fff; color: var(--text) !important; }

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }

/* Hero */
.hero {
	position: relative;
	padding-top: calc(var(--header-offset) + 48px);
	padding-bottom: 48px;
	overflow: hidden;
}
.hero__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.hero__ambient-base {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #fff 0%, var(--bg-page) 55%, var(--brand-orange-soft) 100%);
}
.hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.45;
}
.hero__orb--orange { width: 320px; height: 320px; background: var(--brand-orange-light); top: -80px; right: 8%; }
.hero__orb--gray { width: 240px; height: 240px; background: #ddd; bottom: -40px; left: 5%; }
.hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.hero__eyebrow {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	margin: 0 0 12px;
}
.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 800;
	line-height: 1.08;
	text-transform: uppercase;
	letter-spacing: -0.03em;
	margin: 0 0 16px;
}
.hero__subtitle { margin: 0 0 24px; color: var(--text-muted); font-size: 1.05rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.hero-tags a {
	display: inline-flex;
	padding: 8px 14px;
	background: rgba(255,255,255,.85);
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-muted);
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.hero-tags a:hover { border-color: var(--brand-orange); color: var(--brand-orange); transform: translateY(-2px); text-decoration: none; }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-top: 16px; }
.breadcrumb a { color: var(--text-muted); }

.hero__visual {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.hero-card {
	padding: 20px;
	background: rgba(255,255,255,.9);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 12px 40px rgba(233,128,48,.08);
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(233,128,48,.14); }
.hero-card--large { grid-column: span 2; display: flex; align-items: center; gap: 16px; }
.hero-card__icon {
	width: 44px;
	height: 44px;
	background: var(--brand-orange);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 18px;
	flex-shrink: 0;
}
.hero-card__label { font-size: 13px; font-weight: 600; color: var(--text-muted); }

body:not(.is-loaded) .hero__content { opacity: 0; transform: translateY(24px); }
body.is-loaded .hero__content { opacity: 1; transform: none; transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }

/* Trust */
.trust { padding: 20px 0; background: #fff; border-bottom: 1px solid var(--border); }
.trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	text-align: center;
}
.trust__item strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--brand-orange);
}
.trust__item span { font-size: 13px; color: var(--text-muted); }

/* Timeline */
.timeline-section { background: var(--brand-orange-soft); border-top: 2px solid var(--brand-orange-light); }
.timeline-section .section-title { text-align: center; }
.timeline {
	position: relative;
	max-width: 760px;
	margin: 0 auto 40px;
	padding: 0;
	list-style: none;
}
.timeline::before {
	content: '';
	position: absolute;
	left: 88px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--brand-orange-light);
	border-radius: 2px;
}
.timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 24px;
	padding: 0 0 32px;
	opacity: 0.45;
	transform: translateX(-8px);
	transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.timeline__item.is-active { opacity: 1; transform: none; }
.timeline__year {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--brand-orange);
	text-align: right;
	padding-top: 4px;
}
.timeline__year::after {
	content: '';
	position: absolute;
	left: 82px;
	top: 8px;
	width: 14px;
	height: 14px;
	background: #fff;
	border: 3px solid var(--brand-orange);
	border-radius: 50%;
	box-shadow: 0 0 0 4px var(--brand-orange-soft);
}
.timeline__body {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 16px 18px;
	font-size: 15px;
	line-height: 1.55;
}
.timeline__intro {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
	color: var(--text-muted);
	font-size: 15px;
}

/* E-E-A-T */
.eeat {
	background: #fff;
}
.eeat__card {
	max-width: 880px;
	margin: 0 auto;
	padding: 28px 32px;
	background: var(--bg-page);
	border: 1px solid var(--border);
	border-left: 4px solid var(--brand-orange);
	border-radius: var(--radius-sm);
}
.eeat__card ul { margin: 12px 0 0; padding-left: 1.2em; }
.eeat__card li { margin-bottom: 8px; }

/* Quote */
.quote blockquote {
	max-width: 720px;
	margin: 0 auto;
	padding: 32px 40px;
	font-family: var(--font-display);
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
	font-weight: 600;
	line-height: 1.45;
	text-align: center;
	border: 0;
	position: relative;
}
.quote blockquote::before {
	content: '\201C';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 4rem;
	line-height: 1;
	color: var(--brand-orange-light);
}

/* Stats */
.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}
.stats__item {
	padding: 28px 16px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--radius);
}
.stats__value {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--brand-orange);
	line-height: 1;
	margin-bottom: 8px;
}
.stats__label { font-size: 14px; color: rgba(255,255,255,.75); }

/* Expertises bento */
.expertise-bento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.expertise-bento li {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.expertise-bento li:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(233,128,48,.12);
	border-color: var(--brand-orange-light);
}
.expertise-bento li:first-child { grid-column: span 2; }
.expertise-bento h2 {
	font-family: var(--font-display);
	font-size: 1rem;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: -0.01em;
}
.expertise-bento p { margin: 0; font-size: 15px; color: var(--text-muted); flex: 1; }
.expertise-bento .link {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--brand-orange);
	text-decoration: none;
}
.expertise-bento .link:hover { text-decoration: underline; }
.expertise-icon { font-size: 28px; line-height: 1; }

.cta-modules {
	margin-top: 32px;
	padding: 28px 32px;
	background: var(--brand-orange-soft);
	border: 1px solid var(--brand-orange-light);
	border-radius: var(--radius);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.cta-modules p { margin: 0; max-width: 520px; color: var(--text-muted); }

/* Testimonials */
.testimonials { background: #eee; }
.testimonials__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}
.testimonials__track::-webkit-scrollbar { height: 6px; }
.testimonials__track::-webkit-scrollbar-thumb { background: var(--brand-orange-light); border-radius: 3px; }
.testimonial {
	flex: 0 0 min(340px, 85vw);
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
}
.testimonial__quote {
	font-style: italic;
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 16px;
	color: var(--text);
}
.testimonial__author { font-weight: 700; font-size: 14px; }
.testimonial__company { font-size: 13px; color: var(--text-muted); }

/* Skills */
.skills__groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.skills__group h3 {
	font-family: var(--font-display);
	font-size: 13px;
	text-transform: uppercase;
	margin: 0 0 12px;
	color: var(--text-muted);
}
.skills__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.skills__pills li {
	padding: 8px 14px;
	background: var(--bg-page);
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.skills__pills li:hover {
	border-color: var(--brand-orange);
	background: var(--brand-orange-soft);
	transform: translateY(-2px);
}

/* Advantages */
.advantages__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.advantages__grid li {
	padding: 24px 16px;
	background: rgba(255,255,255,.06);
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 600;
}

/* FAQ */
.faq { background: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-list details {
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	margin-bottom: 12px;
	overflow: hidden;
}
.faq-list summary {
	padding: 18px 20px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary { border-bottom: 1px solid var(--border); color: var(--brand-orange); }
.faq-list details div { padding: 0 20px 18px; font-size: 15px; color: var(--text-muted); }

/* CTA band */
.cta-band {
	text-align: center;
	padding: 56px 24px;
	background: var(--brand-orange-soft);
	border-top: 2px solid var(--brand-orange-light);
}
.cta-band h2 {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	text-transform: uppercase;
	margin: 0 0 12px;
}
.cta-band p { margin: 0 0 24px; color: var(--text-muted); }

.site-footer {
	background: #f8f8f8;
	text-align: center;
	padding: 40px 24px;
	font-size: 13px;
	color: var(--text-muted);
	border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
	.hero__grid { grid-template-columns: 1fr; }
	.hero__visual { max-width: 480px; }
	.expertise-bento { grid-template-columns: 1fr 1fr; }
	.expertise-bento li:first-child { grid-column: span 2; }
	.advantages__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
	.nav { display: none; }
	.trust__grid, .stats__grid { grid-template-columns: repeat(2, 1fr); }
	.timeline::before { left: 20px; }
	.timeline__item { grid-template-columns: 1fr; padding-left: 48px; }
	.timeline__year { text-align: left; }
	.timeline__year::after { left: 14px; }
	.expertise-bento, .expertise-bento li:first-child { grid-template-columns: 1fr; grid-column: auto; }
	.skills__groups { grid-template-columns: 1fr; }
	.advantages__grid { grid-template-columns: 1fr 1fr; }
}
