/* ==========================================================================
   La Fenêtre Polonaise — styles principaux
   ========================================================================== */

:root {
	--lfp-accent: #f5c12e;
	--lfp-black: #000;
	--lfp-ink: #111;
	--lfp-bg: #1e1e1e;
	--lfp-bg-2: #2b2b2b;
	--lfp-bg-3: #3a3a3a;
	--lfp-line: #2c2c2c;
	--lfp-text: #fff;
	--lfp-muted: #c9c9c9;
	--lfp-font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
	--lfp-font-body: "Open Sans", "Helvetica Neue", Arial, sans-serif;
	--lfp-gutter: clamp(16px, 4vw, 40px);
	--lfp-header-h: 98px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s ease; }
a:hover, a:focus-visible { color: var(--lfp-accent); }
:focus-visible { outline: 2px solid var(--lfp-accent); outline-offset: 2px; }
input, select, textarea, button { font: inherit; }

.screen-reader-text {
	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:focus {
	position: fixed !important; top: 8px; left: 8px; z-index: 1000;
	width: auto; height: auto; clip: auto;
	padding: 10px 16px; background: var(--lfp-accent); color: var(--lfp-ink);
}

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--lfp-gutter); }
.container--narrow { max-width: 860px; }
.container--content { max-width: 860px; }

/* --------------------------------------------------------------------------
   En-tête
   -------------------------------------------------------------------------- */

.site-header { position: sticky; top: 0; z-index: 100; }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 0; } }

.topbar {
	height: 34px;
	padding-inline: var(--lfp-gutter);
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	background: #141414;
	border-bottom: 1px solid var(--lfp-line);
	font-size: 12px; color: #b5b5b5;
}
.topbar__address { font-family: var(--lfp-font-body); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; }
.topbar__menu li + li { border-left: 1px solid var(--lfp-bg-3); }
.topbar__menu a { display: block; padding-inline: 18px; line-height: 12px; }
.topbar__menu li:last-child a { padding-right: 0; }

.navbar {
	height: 64px;
	padding-left: var(--lfp-gutter);
	display: flex; align-items: center;
	background: var(--lfp-black);
	border-bottom: 1px solid var(--lfp-line);
}
.navbar__brand { height: 100%; display: flex; align-items: center; padding-right: 36px; border-right: 1px solid var(--lfp-line); }
.navbar__brand .custom-logo { max-height: 44px; width: auto; }

.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__top { font-size: 10px; font-weight: 600; letter-spacing: .22em; color: #b5b5b5; }
.brand__bottom { font-size: 17px; font-weight: 700; letter-spacing: .1em; }

.navbar__nav { flex: 1; height: 100%; display: flex; align-items: center; }
.navbar__nav > .menu,
.navbar__nav > ul { list-style: none; margin: 0; padding: 0 0 0 40px; flex: 1; display: flex; align-items: center; gap: 34px; }
.navbar__nav .menu-item { position: relative; }
.navbar__nav .menu-item > a { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; padding-block: 20px; }
.navbar__nav .current-menu-item > a { color: var(--lfp-accent); }
.navbar__nav .sub-menu {
	position: absolute; top: 100%; left: -20px; min-width: 240px;
	list-style: none; margin: 0; padding: 12px 0;
	background: var(--lfp-bg); border-top: 2px solid var(--lfp-accent);
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.navbar__nav .menu-item:hover > .sub-menu,
.navbar__nav .menu-item:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.navbar__nav .sub-menu a { padding: 10px 20px; font-size: 13px; text-transform: uppercase; }

.navbar__actions { height: 100%; display: flex; align-items: center; }
.navbar__cta {
	height: 38px; margin-right: 22px; padding-inline: 16px;
	display: flex; align-items: center; gap: 10px;
	background: #333; color: var(--lfp-accent);
	font-size: 14px; font-weight: 500; white-space: nowrap;
}
.navbar__cta:hover { background: #444; }
.navbar__phone {
	height: 100%; padding-inline: 24px;
	display: flex; align-items: center;
	border-left: 1px solid var(--lfp-line);
	font-size: 14px; font-weight: 600; white-space: nowrap;
}

.navbar__toggle {
	display: none; margin-left: auto; width: 64px; height: 64px;
	border: 0; border-left: 1px solid var(--lfp-line);
	background: transparent; color: #fff; cursor: pointer;
	align-items: center; justify-content: center;
}
.navbar__toggle-close { display: none; }
.navbar__toggle[aria-expanded="true"] .navbar__toggle-open { display: none; }
.navbar__toggle[aria-expanded="true"] .navbar__toggle-close { display: block; }

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */

.btn-corner {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 46px; padding-inline: 26px;
	border: 0; border-left: 2px solid var(--lfp-accent); border-bottom: 2px solid var(--lfp-accent);
	background: transparent; color: inherit;
	font-size: 14px; font-weight: 600; cursor: pointer;
	transition: background .15s ease, color .15s ease;
}
.btn-corner:hover, .btn-corner:focus-visible { background: var(--lfp-accent); color: var(--lfp-ink); }
.btn-corner--dark { background: var(--lfp-bg); color: #fff; border-left: 0; border-right: 2px solid var(--lfp-accent); }

/* --------------------------------------------------------------------------
   Bandeau d'accueil
   -------------------------------------------------------------------------- */

.hero {
	min-height: calc(100vh - var(--lfp-header-h));
	min-height: calc(100svh - var(--lfp-header-h));
	display: grid; grid-template-columns: minmax(0, 640fr) minmax(0, 800fr);
}
.hero__text {
	display: flex; flex-direction: column; justify-content: space-between;
	padding: 48px 40px 56px;
	background: radial-gradient(ellipse at 50% 45%, #fff 0%, #e9e9e9 55%, #cfcfcf 100%);
	color: var(--lfp-ink);
}
.hero__center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; }
.hero__eyebrow { margin: 0; font-size: clamp(22px, 2.2vw, 30px); font-weight: 700; color: #a67a0a; }
.hero__title { margin: 0; max-width: 540px; font-size: clamp(32px, 3.2vw, 46px); line-height: 1.12; font-weight: 700; }
.hero__lead { margin: 0; max-width: 440px; font-size: 17px; color: #2b2b2b; }
.hero__center .btn-corner { margin-top: 14px; }
.hero__center .search-form { width: 100%; max-width: 420px; }

.hero__thumbs {
	margin-top: 40px; padding-top: 32px; border-top: 1px solid #bdbdbd;
	display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px;
}
.hero__thumb { height: 66px; background: #222; display: flex; align-items: center; justify-content: center; overflow: hidden; transition: transform .15s ease; }
.hero__thumb:nth-child(even) { background: #3a3a3a; }
.hero__thumb:hover { transform: translateY(-3px); }
.hero__thumb svg { height: 48px; width: auto; }
.hero__thumb img { width: 100%; height: 100%; object-fit: cover; }

.hero__visual {
	position: relative; overflow: hidden;
	display: flex; align-items: flex-end; justify-content: center;
	background: linear-gradient(180deg, #8f8f8f 0%, #b9b9b9 58%, #7d7d7d 60%, #9a9a9a 100%);
}
.hero__svg { width: auto; height: 92%; max-height: 760px; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.hero--product { min-height: 560px; }
.hero--404 { grid-template-columns: 1fr; min-height: 520px; }

/* --------------------------------------------------------------------------
   Sections génériques
   -------------------------------------------------------------------------- */

.section { padding-block: clamp(56px, 7vw, 96px); }
.section--dark { background: var(--lfp-bg); }
.section--black { background: var(--lfp-black); }

.section-head { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.section-title { margin: 0; font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; line-height: 1.2; }
.section-title--left { text-align: left; }
.section-sub { margin: 0; max-width: 720px; font-family: var(--lfp-font-body); font-size: 15px; color: #d6d6d6; }

/* Gamme */
.gamme__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1px; background: #333; }
.gamme .section-head { margin: 0; padding-block: 48px; }
.gamme__item {
	position: relative; min-height: 600px; overflow: hidden;
	display: flex; flex-direction: column;
	padding: 40px 18px 0;
	background: linear-gradient(180deg, #0d0d0d 0%, #000 70%, #2e2e2e 100%);
}
.gamme__title { font-size: clamp(18px, 1.75vw, 25px); font-weight: 700; line-height: 1.2; text-transform: uppercase; }
.gamme__models {
	margin-top: 10px; font-family: var(--lfp-font-body); font-size: 12px; color: #b5b5b5;
	opacity: 0; transform: translateY(-4px); transition: opacity .2s ease, transform .2s ease;
}
.gamme__item:hover .gamme__models,
.gamme__item:focus-visible .gamme__models { opacity: 1; transform: none; }
.gamme__item:hover .gamme__title { color: var(--lfp-accent); }
.gamme__visual { flex: 1; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 60px; }
.gamme__visual svg { width: 88%; max-width: 220px; transition: transform .3s ease; }
.gamme__visual img { width: 100%; height: auto; max-height: 420px; object-fit: contain; transition: transform .3s ease; }
.gamme__item:hover .gamme__visual svg,
.gamme__item:hover .gamme__visual img { transform: scale(1.04); }

/* Présentation */
.points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.point { display: flex; flex-direction: column; gap: 14px; }
.point__bar { width: 44px; height: 3px; background: var(--lfp-accent); }
.point__title { margin: 0; font-size: 20px; font-weight: 700; }
.point__text { margin: 0; font-family: var(--lfp-font-body); font-size: 15px; line-height: 1.65; color: var(--lfp-muted); }

/* Méthode */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--lfp-line); border: 1px solid var(--lfp-line); }
.step { padding: 32px 28px; background: #0d0d0d; display: flex; flex-direction: column; gap: 12px; }
.step__num { font-size: 40px; font-weight: 800; line-height: 1; color: var(--lfp-accent); }
.step__title { margin: 0; font-size: 18px; font-weight: 700; }
.step__text { margin: 0; font-family: var(--lfp-font-body); font-size: 14px; line-height: 1.6; color: var(--lfp-muted); }

/* Showroom */
.showroom { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: 560px; }
.showroom__info { padding: clamp(48px, 6vw, 72px) clamp(24px, 5.5vw, 80px); background: var(--lfp-bg-2); display: flex; flex-direction: column; gap: 28px; }
.showroom__grid { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 32px; font-family: var(--lfp-font-body); }
.showroom__grid dt { font-size: 13px; font-weight: 600; color: var(--lfp-accent); }
.showroom__grid dd { margin: 4px 0 0; font-size: 16px; }
.showroom__zone-title { margin: 0 0 12px; font-size: 14px; font-weight: 600; }
.depts { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; }
.depts li { padding: 7px 12px; background: var(--lfp-bg); }
.depts li.is-home { background: var(--lfp-accent); color: var(--lfp-ink); font-weight: 600; }
.showroom__map { position: relative; background: var(--lfp-bg-3); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.showroom__map svg { width: 90%; max-width: 560px; }
.showroom__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05); }

/* Devis */
.devis { padding-block: 72px 80px; background: var(--lfp-bg-2); border-top: 1px solid var(--lfp-bg-3); }
.devis-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; }
.field--full { grid-column: 1 / -1; }
.devis-form input[type="text"],
.devis-form input[type="tel"],
.devis-form input[type="email"],
.devis-form select,
.devis-form textarea {
	width: 100%; min-height: 46px; padding: 12px 16px;
	border: 0; border-radius: 0; background: #fff; color: var(--lfp-ink); font-size: 14px;
}
.devis-form textarea { resize: vertical; }
.devis-form__footer { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding-top: 6px; }
.consent { display: flex; gap: 10px; align-items: flex-start; max-width: 520px; font-family: var(--lfp-font-body); font-size: 12px; line-height: 1.5; color: #d6d6d6; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 0; flex-shrink: 0; accent-color: var(--lfp-accent); }
.consent a { color: var(--lfp-accent); text-decoration: underline; }
.devis-form__hint { margin: 0; font-size: 12px; color: #b5b5b5; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.devis-notice { margin: 0 0 24px; padding: 14px 18px; font-size: 14px; font-weight: 600; }
.devis-notice--success { background: var(--lfp-accent); color: var(--lfp-ink); }
.devis-notice--error { background: #6b1d14; color: #fff; }

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */

.footer-inner { width: 100%; max-width: 1060px; margin-inline: auto; padding-inline: var(--lfp-gutter); }
.social-bar { background: var(--lfp-bg-3); }
.social-bar__inner { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.social-bar__title { font-size: 16px; font-weight: 600; }
.social-bar__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 14px; }
.social-bar__list a { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--lfp-accent); font-weight: 800; font-size: 15px; }
.social-bar__list a:hover { background: var(--lfp-accent); color: var(--lfp-ink); }

.site-footer { padding-block: 64px 40px; background: #1c1c1c; }
.footer-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.footer-col__title {
	display: inline-block; margin: 0 0 12px; padding: 0 8px 6px;
	border-left: 1px solid var(--lfp-accent); border-bottom: 1px solid var(--lfp-accent);
	font-size: 15px; font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 13px; }
.footer-legal-nav { margin-top: 48px; }
.footer-legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 24px; font-size: 14px; font-weight: 600; }
.footer-legal a { padding-left: 10px; border-left: 1px solid var(--lfp-accent); }
.copyright { padding: 12px var(--lfp-gutter); background: #000; text-align: center; font-size: 12px; color: #d6d6d6; }

/* --------------------------------------------------------------------------
   Pages, articles, listes
   -------------------------------------------------------------------------- */

.page-hero { padding-block: clamp(48px, 7vw, 88px); background: radial-gradient(ellipse at 50% 40%, #fff 0%, #e9e9e9 60%, #d2d2d2 100%); color: var(--lfp-ink); text-align: center; }
.page-hero__title { margin: 8px 0 0; font-size: clamp(30px, 3.4vw, 46px); font-weight: 700; line-height: 1.15; }
.page-hero__sub { margin-top: 12px; color: #444; }
.page-hero .entry-meta { font-size: 13px; font-weight: 600; color: #7a5d0a; }
.page-cover img { width: 100%; max-height: 560px; object-fit: cover; }

.section-light { padding-block: clamp(48px, 6vw, 80px); background: var(--lfp-bg); }

.entry-content { font-family: var(--lfp-font-body); font-size: 17px; line-height: 1.75; color: #e6e6e6; }
.entry-content h2, .entry-content h3, .entry-content h4 { font-family: var(--lfp-font); color: #fff; line-height: 1.25; margin: 1.8em 0 .6em; }
.entry-content h2 { font-size: 28px; }
.entry-content h3 { font-size: 22px; }
.entry-content a { color: var(--lfp-accent); text-decoration: underline; }
.entry-content img { height: auto; }
.entry-content blockquote { margin: 1.5em 0; padding-left: 20px; border-left: 3px solid var(--lfp-accent); font-style: italic; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 10px 12px; border-bottom: 1px solid var(--lfp-bg-3); text-align: left; }
.entry-content .wp-block-button__link { background: var(--lfp-accent); color: var(--lfp-ink); border-radius: 0; text-decoration: none; font-family: var(--lfp-font); font-weight: 600; }
.alignwide { margin-inline: calc(50% - 50vw + var(--lfp-gutter)); max-width: none; }
.alignfull { margin-inline: calc(50% - 50vw); max-width: 100vw; }

.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.post-card { background: #141414; border: 1px solid var(--lfp-line); }
.post-card__link { display: flex; flex-direction: column; height: 100%; }
.post-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.post-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.post-card .entry-meta { font-size: 12px; color: var(--lfp-accent); font-weight: 600; }
.post-card__title { margin: 0; font-size: 20px; line-height: 1.3; }
.post-card__excerpt { font-family: var(--lfp-font-body); font-size: 14px; color: var(--lfp-muted); }

.pagination { margin-top: 48px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pagination .page-numbers { min-width: 44px; min-height: 44px; padding-inline: 12px; display: flex; align-items: center; justify-content: center; background: #141414; border: 1px solid var(--lfp-line); font-weight: 600; }
.pagination .page-numbers.current { background: var(--lfp-accent); color: var(--lfp-ink); border-color: var(--lfp-accent); }

.post-nav .nav-links { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--lfp-bg-3); font-family: var(--lfp-font); font-weight: 600; }
.post-nav a { text-decoration: none; color: #fff; }

.search-form { display: flex; }
.search-form__input { flex: 1; min-height: 46px; padding: 10px 16px; border: 1px solid #bbb; border-right: 0; background: #fff; color: var(--lfp-ink); }
.search-form__submit { width: 46px; border: 0; background: var(--lfp-ink); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }

.comments .comment-list { padding-left: 20px; font-family: var(--lfp-font-body); }
.comment-form input:not([type="submit"]):not([type="checkbox"]), .comment-form textarea { width: 100%; padding: 10px 14px; border: 0; background: #fff; color: var(--lfp-ink); }
.comment-form .submit { min-height: 46px; padding-inline: 24px; border: 0; background: var(--lfp-accent); color: var(--lfp-ink); font-weight: 600; cursor: pointer; }

.widget { margin-bottom: 32px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
	.navbar__nav > .menu, .navbar__nav > ul { gap: 22px; padding-left: 24px; }
	.navbar__nav .menu-item > a .lfp-icon { display: none; }
	.navbar__phone { display: none; }
	.gamme__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.gamme__item { min-height: 460px; }
	.gamme__models { opacity: 1; transform: none; }
	.steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
	:root { --lfp-header-h: 64px; }
	.topbar { display: none; }
	.navbar__brand { border-right: 0; }
	.navbar__toggle { display: flex; }
	.navbar__nav {
		position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
		height: auto; flex-direction: column; align-items: stretch;
		padding: 16px var(--lfp-gutter) 32px;
		background: var(--lfp-black); overflow-y: auto;
		transform: translateX(100%); visibility: hidden;
		transition: transform .25s ease, visibility .25s;
	}
	.admin-bar .navbar__nav { top: 110px; }
	.navbar__nav.is-open { transform: none; visibility: visible; }
	.navbar__nav > .menu, .navbar__nav > ul { flex: none; flex-direction: column; align-items: stretch; gap: 0; padding: 0; }
	.navbar__nav .menu-item > a { padding-block: 16px; border-bottom: 1px solid var(--lfp-line); font-size: 17px; }
	.navbar__nav .menu-item > a .lfp-icon { display: block; }
	.navbar__nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; border: 0; background: transparent; padding: 0 0 8px 30px; }
	.navbar__actions { height: auto; flex-direction: column; align-items: stretch; gap: 12px; margin-top: 24px; }
	.navbar__cta { margin: 0; height: 52px; justify-content: center; }
	.navbar__phone { display: flex; height: 52px; justify-content: center; border: 1px solid var(--lfp-line); }
	body.nav-open { overflow: hidden; }

	.hero { grid-template-columns: 1fr; min-height: 0; }
	.hero__text { padding: 56px var(--lfp-gutter) 32px; }
	.hero__visual { height: 62vw; min-height: 320px; max-height: 560px; }
	.hero__svg { height: 100%; }
	.hero__thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }

	.points { grid-template-columns: 1fr; gap: 32px; }
	.showroom { grid-template-columns: 1fr; }
	.showroom__map { min-height: 360px; }
}

@media (max-width: 640px) {
	.gamme__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gamme__item { min-height: 340px; padding: 24px 14px 0; }
	.gamme__visual { padding-bottom: 28px; }
	.steps { grid-template-columns: 1fr; }
	.showroom__grid { grid-template-columns: 1fr; }
	.devis-form { grid-template-columns: 1fr; }
	.devis-form__footer { flex-direction: column; align-items: stretch; }
	.devis-form__footer .btn-corner { width: 100%; min-height: 52px; }
	.footer-cols { grid-template-columns: 1fr; }
	.footer-legal { flex-direction: column; }
	.social-bar__inner { flex-direction: column; justify-content: center; padding-block: 16px; }
	.post-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition: none !important; }
}
