/* Maquette standalone — Freelance WordPress 2026
   Aucun lien avec le thème WordPress en production. */

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

:root {
	/* Charte arnaud-merigeau.fr (thème NumberOne) */
	--brand-orange: #e98030;
	--brand-orange-hover: #d56f20;
	--brand-orange-soft: #fff4eb;
	--brand-orange-light: #ffcaa1;
	--brand-yellow: #ecc059;
	--bg-page: #f8f8f8;
	--bg-card: #ffffff;
	--bg-dark: #000000;
	--border: #ededed;
	--border-light: #f8f8f8;
	--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);
	--reveal-duration: 0.7s;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.reveal { 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; }

/* ── Animations chargement & scroll ── */
body:not(.is-loaded) .hero__content,
body:not(.is-loaded) .hero-visual__card,
body:not(.is-loaded) .site-header__inner {
	opacity: 0;
}

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

.hero-visual__card {
	transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
body:not(.is-loaded) .hero-visual__card { transform: translateY(20px) scale(0.97); }
body.is-loaded .hero-visual__card { opacity: 1; transform: translateY(0) scale(1); }
body.is-loaded .hero-visual__card:nth-child(1) { transition-delay: 0.15s; }
body.is-loaded .hero-visual__card:nth-child(2) { transition-delay: 0.25s; }
body.is-loaded .hero-visual__card:nth-child(3) { transition-delay: 0.35s; }
body.is-loaded .hero-visual__card:nth-child(4) { transition-delay: 0.45s; }

/* Flottement subtil post-chargement (inspiré MeetSponsors) */
@keyframes hero-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}
body.is-loaded .hero-visual__card--large {
	animation: hero-float 5s var(--ease-out) 1s infinite;
}
body.is-loaded .hero-visual__card:nth-child(2) {
	animation: hero-float 4.5s var(--ease-out) 1.4s infinite;
}
body.is-loaded .hero-visual__card:nth-child(3) {
	animation: hero-float 5.5s var(--ease-out) 1.8s infinite;
}

.site-header__inner {
	transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
body.is-loaded .site-header__inner {
	opacity: 1;
	transform: translateY(0);
}
body:not(.is-loaded) .site-header__inner { transform: translateY(-8px); }

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity var(--reveal-duration) var(--ease-out),
		transform var(--reveal-duration) 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; }

.mock-banner {
	background: #000;
	color: #fff;
	font-size: 13px;
	text-align: center;
	padding: 10px 16px;
}
.mock-banner strong { color: var(--brand-orange); }

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(248, 248, 248, 0.94);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
}
.site-header__inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.logo {
	font-weight: 700;
	font-size: 15px;
	color: var(--text);
	text-decoration: none;
	letter-spacing: -0.02em;
}
.logo span { color: var(--brand-orange); }
.nav { display: flex; gap: 20px; flex-wrap: wrap; }
.nav a {
	color: var(--text-muted);
	font-size: 14px;
	text-decoration: none;
	font-weight: 500;
}
.nav a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
	background: var(--brand-orange);
	color: #fff !important;
	padding: 8px 16px;
	border: 2px solid var(--brand-orange);
}
.nav-cta:hover {
	background: #fff;
	color: var(--brand-orange) !important;
}

/* Layout */
.wrapper { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section-title {
	display: block;
	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 40px;
	line-height: 1.2;
}
.section-title--center { text-align: center; }

/* Hero */
.hero {
	padding: 56px 0 48px;
}
.hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.hero__eyebrow {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--brand-orange);
	margin: 0 0 16px;
}
.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 2.5em);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin: 0 0 20px;
	text-transform: uppercase;
}
.hero__subtitle {
	font-size: 1.1rem;
	color: var(--text-muted);
	margin: 0 0 28px;
	line-height: 1.55;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--brand-orange);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
	padding: 14px 26px;
	border-radius: 0;
	text-decoration: none;
	border: 2px solid var(--brand-orange);
	cursor: pointer;
	transition: color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.btn:hover {
	background: #fff;
	color: var(--brand-orange);
	text-decoration: none;
}
.btn--outline {
	background: #fff;
	color: var(--text);
	border: 2px solid var(--border);
}
.btn--outline:hover {
	background: var(--brand-orange-soft);
	border-color: var(--brand-orange);
	color: var(--brand-orange);
}
.breadcrumb {
	margin-top: 28px;
	font-size: 13px;
	color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb span { margin: 0 6px; }

/* Hero bento visual */
.hero-visual {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 12px;
}
.hero-visual__card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
	min-height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	opacity: 0;
}
.hero-visual__card--large {
	grid-row: span 2;
	background: var(--brand-orange-soft);
	border-color: var(--brand-orange-light);
	min-height: 220px;
}
.hero-visual__icon {
	width: 36px;
	height: 36px;
	border-radius: 0;
	background: var(--brand-orange);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}
.hero-visual__label {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
}

/* Trust strip */
.trust {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: var(--bg-card);
	padding: 20px 0;
}
.trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	text-align: center;
}
.trust__item strong {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--brand-orange);
}
.trust__item span {
	font-size: 13px;
	color: var(--text-muted);
}

/* Bento services */
.services-bento {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto auto auto;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.services-bento > li {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.services-bento > li:hover {
	border-color: var(--brand-orange);
	box-shadow: 0 8px 32px rgba(233, 128, 48, 0.12);
}
.services-bento > li:nth-child(1),
.services-bento > li:nth-child(4) {
	grid-column: span 2;
}
.service-icon {
	width: 44px;
	height: 44px;
	border-radius: 0;
	background: var(--brand-orange-soft);
	color: var(--brand-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 16px;
}
.services-bento h2 {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 10px;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1.3;
}
.services-bento p {
	margin: 0 0 12px;
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.55;
}
.services-bento .link {
	font-size: 14px;
	font-weight: 600;
	color: var(--brand-orange);
	text-decoration: none;
}
.services-bento .link:hover { text-decoration: underline; }

/* Blog teaser (remplace CTA PrestaShop) */
.teaser-blog {
	background: var(--brand-orange-soft);
	border: 2px solid var(--brand-orange-light);
	border-radius: var(--radius);
	padding: 40px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.teaser-blog h2 {
	margin: 0 0 8px;
	font-family: var(--font-display);
	font-size: 1.2rem;
	text-transform: uppercase;
}
.teaser-blog p {
	margin: 0;
	color: var(--text-muted);
	max-width: 520px;
}

/* Portfolio dark section */
.section--dark {
	background: var(--bg-dark);
	color: #f5f5f5;
}
.section--dark .section-title { color: #fff; }
.section--dark a { color: var(--brand-orange-light); }
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}
.portfolio-grid li {
	border-radius: var(--radius);
	overflow: hidden;
	background: #222;
	border: 1px solid #333;
	transition: transform 0.25s;
}
.portfolio-grid li:hover { transform: translateY(-4px); }
.portfolio-grid a {
	display: block;
	text-decoration: none;
	color: inherit;
}
.portfolio-grid .thumb {
	aspect-ratio: 4/3;
	background: #333;
	position: relative;
	overflow: hidden;
}
.portfolio-grid .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.portfolio-grid .meta {
	padding: 16px 18px;
}
.portfolio-grid .meta h3 {
	margin: 0 0 4px;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}
.portfolio-grid .meta span {
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.portfolio-cta { text-align: center; }

/* CTA devis band */
.cta-band {
	background: var(--brand-orange-soft);
	border-top: 2px solid var(--brand-orange-light);
	border-bottom: 2px solid var(--brand-orange-light);
}
.cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.cta-band h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.35rem;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}
.cta-band p {
	margin: 4px 0 0;
	color: var(--text-muted);
	font-size: 15px;
}

/* FAQ 2 columns */
.faq-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 48px;
	align-items: start;
}
.faq-sidebar {
	position: sticky;
	top: 100px;
}
.faq-sidebar p {
	color: var(--text-muted);
	font-size: 15px;
	margin: 0 0 20px;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	overflow: hidden;
}
.faq-item summary {
	padding: 18px 22px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+";
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--brand-orange);
	flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
	padding: 0 22px 20px;
	font-size: 15px;
	color: var(--text-muted);
	border-top: 1px solid var(--border);
}
.faq-item .faq-body p:first-child { margin-top: 16px; }
.faq-item .faq-body p { margin: 0 0 12px; }
.faq-item .faq-body ul { margin: 0 0 12px; padding-left: 20px; }
.faq-item .faq-body li { margin-bottom: 6px; }
.faq-item .faq-body strong { color: var(--text); }

/* Geo cities */
.geo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.geo-grid a {
	display: block;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 24px 20px;
	text-decoration: none;
	color: var(--text);
	transition: border-color 0.2s;
}
.geo-grid a:hover {
	border-color: var(--brand-orange);
	text-decoration: none;
}
.geo-grid strong {
	display: block;
	font-size: 1.05rem;
	margin-bottom: 4px;
}
.geo-grid span {
	font-size: 13px;
	color: var(--text-muted);
}

/* Footer mock */
.site-footer {
	background: var(--bg-dark);
	color: #999;
	padding: 48px 0 32px;
	font-size: 14px;
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.site-footer h3 {
	color: #fff;
	font-size: 15px;
	margin: 0 0 12px;
}
.site-footer a { color: #bbb; }
.site-footer__bottom {
	border-top: 1px solid #333;
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

/* SEO note (dev only) */
.seo-note {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: var(--radius-sm);
	padding: 20px 24px;
	margin-top: 48px;
	font-size: 14px;
	color: #166534;
}
.seo-note ul { margin: 8px 0 0; padding-left: 20px; }

/* Responsive */
@media (max-width: 960px) {
	.hero__grid { grid-template-columns: 1fr; }
	.hero-visual { max-width: 420px; }
	.trust__grid { grid-template-columns: repeat(2, 1fr); }
	.services-bento { grid-template-columns: 1fr 1fr; }
	.services-bento > li:nth-child(1),
	.services-bento > li:nth-child(4) { grid-column: span 2; }
	.portfolio-grid { grid-template-columns: repeat(2, 1fr); }
	.faq-layout { grid-template-columns: 1fr; }
	.faq-sidebar { position: static; }
	.geo-grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__grid { grid-template-columns: 1fr; }
	.nav { display: none; }
}

@media (max-width: 600px) {
	.section { padding: 48px 0; }
	.services-bento,
	.services-bento > li:nth-child(1),
	.services-bento > li:nth-child(4) {
		grid-template-columns: 1fr;
		grid-column: span 1;
	}
	.portfolio-grid { grid-template-columns: 1fr; }
	.geo-grid { grid-template-columns: 1fr; }
	.teaser-blog { padding: 28px 24px; }
	.cta-band__inner { flex-direction: column; text-align: center; }
}
