/* Gouy-Pailler TP — styles du site (d'après la maquette validée) */

:root {
	--red: #D91E1E;
	--red-dark: #B51818;
	--coral: #FF6B5B;
	--ink: #17181A;
	--bg: #F4F3EF;
	--white: #FFFFFF;
	--text: #1C1C1C;
	--muted: #6B6B66;
	--muted-2: #9C9C97;
	--line: #E4E3DD;
	--on-dark: #D8D7D2;
	--on-dark-muted: #B8B7B1;
	--font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
	--font-body: 'Barlow', system-ui, sans-serif;
	--gutter: 56px;
	--section-y: 88px;
	--header-h: 92px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
	outline: 3px solid var(--coral);
	outline-offset: 2px;
}

h1, h2, h3 {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.05;
	margin: 0;
	color: var(--ink);
}
h2 { font-size: 38px; font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--white); padding: 12px 16px; }
.skip-link:focus { left: 16px; top: 16px; }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 960px; }

.tag {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 13px;
	color: var(--red);
}
.tag--light { color: var(--coral); }

/* Boutons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 14px 32px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-radius: 2px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color .15s, color .15s, border-color .15s;
}
.btn--sm { min-height: 44px; padding: 10px 24px; font-size: 15px; }
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--ink); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #2B2C2F; }

.link-underline {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	color: var(--red);
	border-bottom: 2px solid var(--red);
	padding-bottom: 4px;
}
.link-underline:hover { color: var(--red-dark); border-color: var(--red-dark); }

/* En-tête */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--ink); }
.site-header__inner {
	max-width: 1440px;
	margin: 0 auto;
	height: var(--header-h);
	padding: 0 var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand__logo { height: 56px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; font-family: var(--font-display); }
.brand__name { font-weight: 800; font-size: 19px; color: var(--white); letter-spacing: 0.03em; text-transform: uppercase; }
.brand__sub { font-weight: 600; font-size: 13px; color: var(--muted-2); letter-spacing: 0.18em; text-transform: uppercase; }

.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 30px; }
.nav-list a {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 16px;
	color: var(--on-dark);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 8px 0;
}
.nav-list a:hover, .nav-list .current-menu-item > a { color: var(--white); }
.site-nav__mobile-cta { display: none; }

.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	background: none; border: 0; padding: 11px;
	cursor: pointer;
	flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); transition: transform .2s, opacity .2s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
.nav-open { overflow: hidden; }

/* Hero */
.hero { position: relative; min-height: 680px; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(23,24,26,.35) 0%, rgba(23,24,26,.15) 40%, rgba(23,24,26,.85) 100%);
}
.hero__content { position: relative; z-index: 1; padding-bottom: 72px; padding-top: 120px; display: flex; flex-direction: column; gap: 24px; }
.hero__title { font-size: 64px; line-height: .98; font-weight: 800; color: var(--white); max-width: 760px; }
.hero__text { margin: 0; font-size: 19px; color: #EDEDEA; max-width: 560px; line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }

/* Chiffres */
.stats {
	background: var(--white);
	border-bottom: 1px solid var(--line);
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 32px var(--gutter);
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 48px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat__value { font-family: var(--font-display); font-weight: 800; font-size: 40px; color: var(--ink); line-height: 1.1; }
.stat__label { font-size: 14px; color: var(--muted); }

/* Sections */
.section { padding: var(--section-y) 0; background: var(--bg); }
.section--white { background: var(--white); }
.section--dark { background: var(--ink); }
.section__head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.section__head--split { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.section__head--split > div { display: flex; flex-direction: column; gap: 10px; }
.section__head--center { align-items: center; text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

/* Services */
.service-card { position: relative; height: 320px; border-radius: 4px; overflow: hidden; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,24,26,0) 45%, rgba(23,24,26,.88) 100%); }
.service-card__body { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 1; }
.service-card h3 { color: var(--white); font-size: 24px; }
.service-card p { margin: 6px 0 0; color: var(--on-dark); font-size: 14px; }

.activites {
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px 24px;
}
.activites li { display: flex; align-items: flex-start; gap: 8px; font-weight: 500; }
.activites .icon { color: var(--red); flex: 0 0 20px; margin-top: 2px; }

/* Réalisations */
.real-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: var(--white); }
.real-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--line); }
.real-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.real-card:hover .real-card__media img { transform: scale(1.03); }
.real-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; position: relative; }
.real-card__type { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.real-card__title a::after { content: ""; position: absolute; inset: 0; }
.real-card__text { margin: 0; font-size: 14px; color: var(--muted); }
.real-card__more { margin-top: auto; padding-top: 8px; font-family: var(--font-display); font-weight: 700; font-size: 14px; text-transform: uppercase; color: var(--ink); }
.real-card:hover .real-card__more { color: var(--red); }

/* Pourquoi nous */
.why { display: flex; gap: 64px; }
.why__intro { flex: 0 0 380px; display: flex; flex-direction: column; gap: 16px; }
.why__intro h2 { color: var(--white); font-size: 34px; }
.why__items { flex: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.why__item { display: flex; flex-direction: column; gap: 10px; }
.why__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; }
.why__item h3 { color: var(--white); font-size: 19px; font-weight: 600; }
.why__item p { margin: 0; font-size: 14px; color: var(--on-dark-muted); line-height: 1.5; }

/* Zone */
.zone { display: flex; gap: 56px; align-items: center; }
.zone__text { flex: 1; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.zone__text h2 { font-size: 34px; }
.zone__text p { margin: 0; color: var(--muted); max-width: 480px; }
.zone__map { flex: 1; align-self: stretch; min-height: 340px; border-radius: 4px; overflow: hidden; background: var(--line); }
.zone__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* Avis */
.review { margin: 0; border: 1px solid var(--line); border-radius: 4px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.review__stars { color: var(--red); font-size: 18px; letter-spacing: 2px; }
.review blockquote { margin: 0; font-size: 15px; color: #3A3A38; line-height: 1.6; }
.review blockquote::before { content: "« "; }
.review blockquote::after { content: " »"; }
.review figcaption { font-size: 13px; color: var(--muted); }

/* Bandeau CTA */
.cta-band { position: relative; min-height: 300px; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(23,24,26,.78); }
.cta-band__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 48px 24px; }
.cta-band h2 { color: var(--white); }

/* Contact */
.contact { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 16px; }
.contact__info p { margin: 0; color: var(--muted); }
.contact__list { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.contact__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.contact__list .icon { color: var(--red); flex: 0 0 20px; }
.contact__list a:hover { color: var(--red); }

.devis-form { background: var(--bg); border-radius: 4px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 14px; }
.field input, .field select, .field textarea {
	font: inherit;
	font-size: 16px;
	color: var(--text);
	background: var(--white);
	border: 1px solid #CFCEC7;
	border-radius: 2px;
	padding: 12px 14px;
	min-height: 48px;
	width: 100%;
}
.field textarea { resize: vertical; }
.field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.field--check input { width: 20px; height: 20px; min-height: 0; margin-top: 3px; flex: 0 0 20px; accent-color: var(--red); }
.field--check label { font-weight: 400; font-size: 13px; color: var(--muted); }
.devis-form .btn { align-self: flex-start; }
.devis-form__note { margin: 0; font-size: 13px; color: var(--muted); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-notice { margin: 0; padding: 14px 16px; border-radius: 2px; font-weight: 500; }
.form-notice--success { background: #E6F2E8; color: #1E5B2B; }
.form-notice--error { background: #FBE4E2; color: #8E1414; }

/* Pages intérieures */
.page-hero { background: var(--ink); padding: 72px 0 56px; }
.page-hero .container { display: flex; flex-direction: column; gap: 12px; }
.page-hero h1 { color: var(--white); font-size: 52px; font-weight: 800; }
.single-photo { margin: 0 0 32px; border-radius: 4px; overflow: hidden; }
.single-photo img { width: 100%; }
.prose { font-size: 17px; }
.prose img { border-radius: 4px; }
.prose h2 { font-size: 30px; margin: 32px 0 12px; }
.prose a { color: var(--red); text-decoration: underline; }
.single-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.pagination { margin-top: 40px; }
.pagination .nav-links { display: flex; gap: 12px; flex-wrap: wrap; font-family: var(--font-display); font-weight: 700; }
.pagination .page-numbers { padding: 8px 14px; border: 1px solid var(--line); }
.pagination .current { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* Pied de page */
.site-footer { background: var(--ink); color: var(--on-dark); font-size: 14px; }
.site-footer__inner { max-width: 1440px; margin: 0 auto; padding: 56px var(--gutter) 32px; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.site-footer__col { display: flex; flex-direction: column; gap: 8px; }
.site-footer__col a:hover { color: var(--white); text-decoration: underline; }
.site-footer__brand img { height: 40px; width: auto; }
.site-footer__brand p { margin: 0; color: #8C8C88; max-width: 260px; font-size: 13px; }
.site-footer__title { font-family: var(--font-display); font-weight: 700; color: var(--white); letter-spacing: .06em; font-size: 13px; }
.site-footer__legal { max-width: 1440px; margin: 0 auto; padding: 16px var(--gutter) 32px; border-top: 1px solid #2B2C2F; font-size: 12px; color: #8C8C88; }

.mobile-bar { display: none; }

/* Liens et petits compléments */
.section__more { margin: 32px 0 0; }
.link-underline--light { color: var(--coral); border-color: var(--coral); align-self: flex-start; margin-top: 8px; }
.link-underline--light:hover { color: var(--white); border-color: var(--white); }
a.service-card img { transition: transform .3s; }
a.service-card:hover img { transform: scale(1.04); }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.on-dark { color: var(--white); }
.grid-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* Bandeau de titre avec photo */
.page-hero { position: relative; overflow: hidden; }
.page-hero__content { position: relative; z-index: 1; }
.page-hero__text { margin: 0; color: var(--on-dark); font-size: 18px; max-width: 640px; }
.page-hero--img { padding: 140px 0 64px; }
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero--img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,24,26,.45) 0%, rgba(23,24,26,.88) 100%); }

/* Page services */
.service-nav { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: var(--header-h); z-index: 20; }
.service-nav .container { display: flex; gap: 8px 28px; overflow-x: auto; padding-top: 14px; padding-bottom: 14px; scrollbar-width: none; }
.service-nav a { white-space: nowrap; font-family: var(--font-display); font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); padding: 6px 0; }
.service-nav a:hover { color: var(--red); }
.service-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.service-row--reverse .service-row__media { order: 2; }
.service-row__media { border-radius: 4px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--line); }
.service-row__media img { width: 100%; height: 100%; object-fit: cover; }
.service-row__text { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.service-row__text p { margin: 0; color: #3A3A38; font-size: 17px; }
.service-row__text .link-underline { margin-top: 8px; }
.activites--dark { margin-top: 0; }
.activites--dark li { color: var(--on-dark); }
.activites--dark .icon { color: var(--coral); }

/* Page entreprise */
.about { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; align-items: start; }
.about__photo { margin: 0; border-radius: 4px; overflow: hidden; }
.about__photo img { width: 100%; }
.about__text h2 { margin: 8px 0 16px; }
.team { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.team-card { display: grid; grid-template-columns: 200px 1fr; background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.team-card img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.team-card__body { padding: 24px; display: flex; flex-direction: column; gap: 6px; }
.team-card__role { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }
.team-card p { margin: 6px 0 0; font-size: 15px; color: var(--muted); }
.team-card--compact { grid-template-columns: 1fr; }
.partners { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.partners__list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.partners__list li { font-family: var(--font-display); font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: .03em; color: var(--ink); border: 1px solid var(--line); padding: 10px 18px; border-radius: 2px; }

/* Recrutement / contact */
.form-title { font-size: 28px; margin-bottom: 16px; }
.job h2 { font-size: 30px; margin: 12px 0 8px; }
.job h3 { font-size: 20px; margin: 24px 0 8px; }
.contact__hours { margin-top: 8px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact__hours h3 { font-size: 16px; margin-bottom: 6px; }
.contact__hours p { margin: 0; }
.contact-map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* Réalisations : filtres */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter { font-family: var(--font-display); font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: .03em; padding: 10px 16px; min-height: 44px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 2px; color: var(--ink); }
.filter:hover { border-color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* Actualités */
.fb-banner { margin-top: 48px; padding: 28px 32px; background: var(--bg); border-radius: 4px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.fb-banner p { margin: 0; font-size: 17px; }

/* Contenu éditorial : listes et galeries */
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 26px; margin: 6px 0; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: .65em; width: 8px; height: 8px; background: var(--red); }
.prose h3 { font-size: 22px; margin: 28px 0 8px; }
.prose .wp-block-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 32px 0 0; }
.prose .wp-block-gallery .wp-block-image,
.prose .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) { margin: 0; width: auto; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 4px; }
.prose .wp-block-gallery img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Tablette ---------- */
@media (max-width: 1180px) {
	:root { --gutter: 32px; --section-y: 72px; --header-h: 72px; }
	.why { flex-direction: column; gap: 40px; }
	.why__intro { flex: none; }
	.activites { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.brand__logo { height: 44px; }
	.site-header__cta { display: none; }
	.nav-toggle { display: flex; }
	.site-nav {
		display: none;
		position: fixed;
		top: var(--header-h); left: 0; right: 0; bottom: 0;
		background: var(--ink);
		padding: 24px var(--gutter) 40px;
		flex-direction: column;
		gap: 24px;
		overflow-y: auto;
	}
	.nav-open .site-nav { display: flex; }
	.nav-list { flex-direction: column; align-items: stretch; gap: 0; }
	.nav-list a { display: block; font-size: 24px; padding: 14px 0; border-bottom: 1px solid #2B2C2F; color: var(--white); }
	.site-nav__mobile-cta { display: inline-flex; }
	.team { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
	.service-row, .about, .partners { grid-template-columns: 1fr; gap: 32px; }
	.service-row--reverse .service-row__media { order: 0; }
	.about__photo { max-width: 420px; }
	.grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.zone { flex-direction: column; align-items: stretch; }
	.contact { grid-template-columns: 1fr; gap: 40px; }
	.why__items { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
	:root { --gutter: 18px; --section-y: 48px; }
	body { padding-bottom: 64px; }
	h2 { font-size: 26px; }
	.brand__logo { height: 36px; }
	.brand__name { font-size: 15px; }
	.brand__sub { font-size: 11px; }
	.hero { min-height: 560px; }
	.hero__content { padding-bottom: 32px; gap: 14px; }
	.hero__title { font-size: 34px; line-height: 1; }
	.hero__text { font-size: 15px; }
	.hero__actions { flex-direction: column; gap: 10px; }
	.hero__actions .btn { width: 100%; }
	.stats { padding: 24px var(--gutter); justify-content: space-between; row-gap: 16px; }
	.stat { padding: 0 8px; flex: 1 1 0; }
	.stat + .stat { border-left: 0; }
	.stat__value { font-size: 24px; }
	.stat__label { font-size: 11px; }
	.section__head { margin-bottom: 24px; }
	.grid-3 { grid-template-columns: 1fr; gap: 16px; }
	.service-card { height: 200px; }
	.service-card h3 { font-size: 20px; }
	.activites { grid-template-columns: 1fr; }
	.why__intro h2, .zone__text h2 { font-size: 24px; }
	.zone__map, .zone__map iframe { min-height: 260px; }
	.cta-band { min-height: 260px; }
	.cta-band h2 { font-size: 24px; }
	.devis-form { padding: 20px; }
	.field-row { grid-template-columns: 1fr; }
	.devis-form .btn { align-self: stretch; }
	.page-hero { padding: 48px 0 36px; }
	.page-hero--img { padding: 96px 0 36px; }
	.page-hero h1 { font-size: 34px; }
	.page-hero__text { font-size: 15px; }
	.service-row__text p { font-size: 16px; }
	.team-card { grid-template-columns: 1fr; }
	.team-card img { min-height: 0; aspect-ratio: 4 / 3; }
	.partners__list li { font-size: 16px; padding: 8px 12px; }
	.prose .wp-block-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
	.fb-banner { padding: 20px; }
	.contact-map iframe { height: 280px; }
	.site-footer__inner { flex-direction: column; gap: 24px; padding-top: 32px; }

	.mobile-bar {
		display: flex;
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
		height: 64px;
		background: var(--white);
		border-top: 1px solid var(--line);
		box-shadow: 0 -2px 8px rgba(0,0,0,.08);
	}
	.mobile-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: var(--ink); font-size: 11px; font-weight: 600; }
	.mobile-bar__primary { background: var(--red); }
	.mobile-bar a.mobile-bar__primary { color: var(--white); }
}
