/**
 * Pizzalove — Blocs du site.
 *
 * CE QUI A CHANGE, ET POURQUOI
 * ----------------------------
 * La premiere version etait une seule dalle sombre : meme fond partout, meme
 * rythme vertical partout, grilles de cartes centrees partout. Techniquement
 * correcte, visuellement morte. Un site qui a l'air concu ALTERNE — clair contre
 * sombre, large contre etroit, texte contre image — parce que c'est le contraste
 * entre les sections qui cree la hierarchie, pas la decoration a l'interieur.
 *
 * Donc : les sections alternent entre la suie et la farine. Les rangees
 * editoriales sont asymetriques et changent de cote. L'echelle typographique
 * monte beaucoup plus haut. Et le heros porte une vraie image — dessinee en SVG,
 * faute de photographie.
 *
 * LES VARIABLES SONT SUR :root, PAS SEULEMENT SUR .pzl-site
 * ---------------------------------------------------------
 * Elles etaient uniquement sur .pzl-site. Un rendu qui oubliait ce conteneur
 * perdait TOUTES les couleurs d'un coup : le texte retombait au noir par defaut
 * du navigateur, sur un fond quasi noir. Illisible. C'est exactement ce qui est
 * arrive a l'apercu. Les declarer aussi sur :root fait qu'un conteneur oublie ne
 * peut plus rendre une page illisible, et tools/check-contrast.php refuse
 * maintenant de construire si un couple texte/fond passe sous 4,5:1.
 */

:root,
.pzl-site {
	/* Suie : chaude et brune, jamais bleutee. C'est du bois brule, pas du metal. */
	--soot: #14110F;
	--soot2: #1D1815;
	--soot3: #292018;

	/* Farine : le cote clair, pour les sections editoriales. */
	--flour: #F4EFE6;
	--flour2: #EAE2D5;
	--paper-ink: #241C16;
	--paper-dim: #574C41;

	/* Texte sur fond sombre. */
	--ink: #F7F3EC;
	--ash: #BCB0A2;
	--faint: #9A8D7E;

	/* Braise. */
	--ember: #F26224;
	--flame: #FF9D3A;
	--crust: #8A4A20;
	--steel: #63BECE;

	--line: rgba(247, 243, 236, 0.14);
	--line-dark: rgba(36, 28, 22, 0.16);

	--disp: 'Fraunces', Georgia, serif;
	--ui: 'Archivo', system-ui, -apple-system, sans-serif;
	--mono: 'DM Mono', ui-monospace, 'SF Mono', monospace;

	--gut: clamp(20px, 5vw, 64px);
	--rhythm: clamp(64px, 11vh, 132px);
}

.pzl-site {
	background: var(--soot);
	color: var(--ink);
	font-family: var(--ui);
	font-size: 17px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.pzl-site * { box-sizing: border-box; }
.pzl-site img, .pzl-site svg { max-width: 100%; }
.pzl-wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--gut); }
.pzl-wrap-tight { max-width: 780px; }

/* ================= TYPOGRAPHIE ================= */

.pzl-h1 {
	font-family: var(--disp);
	font-size: clamp(46px, 9.5vw, 116px);
	font-weight: 600;
	line-height: 0.91;
	letter-spacing: -0.035em;
	margin: 0 0 24px;
	font-variation-settings: 'SOFT' 40, 'WONK' 1;
	text-wrap: balance;
}
.pzl-h2 {
	font-family: var(--disp);
	font-size: clamp(32px, 5.6vw, 62px);
	font-weight: 600;
	line-height: 0.97;
	letter-spacing: -0.028em;
	margin: 0 0 18px;
	font-variation-settings: 'SOFT' 30, 'WONK' 1;
	text-wrap: balance;
}
.pzl-h3 {
	font-family: var(--disp);
	font-size: clamp(21px, 2.6vw, 29px);
	font-weight: 600;
	line-height: 1.14;
	letter-spacing: -0.018em;
	margin: 0 0 10px;
}
.pzl-h4 {
	font-family: var(--ui);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.005em;
	margin: 0 0 7px;
}
.pzl-h1 em, .pzl-h2 em, .pzl-h3 em { font-style: italic; }

.pzl-eyebrow {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	margin: 0 0 18px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 11px;
}
.pzl-eyebrow::before {
	content: "";
	width: 26px;
	height: 1.5px;
	background: currentColor;
	flex: none;
	opacity: 0.6;
}
.pzl-ember { color: var(--ember); }
.pzl-flame { color: var(--flame); }
.pzl-steel { color: var(--steel); }

.pzl-lede {
	font-size: clamp(18px, 2.1vw, 23px);
	line-height: 1.46;
	color: var(--ash);
	max-width: 56ch;
	margin: 0 0 30px;
	text-wrap: pretty;
}
.pzl-lede strong { color: var(--ink); font-weight: 600; }
.pzl-p { color: var(--ash); margin: 0 0 15px; max-width: 64ch; text-wrap: pretty; }
.pzl-p strong { color: var(--ink); font-weight: 600; }

/*
 * Sections claires. Chaque couleur de texte est REASSIGNEE : heriter les tons
 * concus pour un fond sombre est exactement la faute qui rend une page
 * illisible.
 */
.pzl-light {
	background: var(--flour);
	color: var(--paper-ink);
}
.pzl-light .pzl-h1,
.pzl-light .pzl-h2,
.pzl-light .pzl-h3,
.pzl-light .pzl-h4 { color: var(--paper-ink); }
.pzl-light .pzl-lede,
.pzl-light .pzl-p { color: var(--paper-dim); }
.pzl-light .pzl-lede strong,
.pzl-light .pzl-p strong { color: var(--paper-ink); }
.pzl-light .pzl-eyebrow { color: var(--crust); }
.pzl-light .pzl-ember { color: #B93A0C; }
.pzl-light .pzl-card { border-color: var(--line-dark); }
.pzl-light .pzl-num { color: #B93A0C; }
.pzl-light .pzl-btn-ghost { color: var(--paper-ink); border-color: var(--line-dark); }
.pzl-light .pzl-btn-ghost:hover { border-color: var(--paper-ink); }
.pzl-light .pzl-link { color: var(--paper-dim); border-bottom-color: var(--line-dark); }
.pzl-light .pzl-link:hover { color: var(--paper-ink); }
.pzl-light .pzl-steps li { border-top-color: #B93A0C; }
.pzl-light .pzl-step-n { color: #B93A0C; }

/* ================= CHROME ================= */

.pzl-head {
	position: sticky;
	top: 0;
	z-index: 60;
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 15px var(--gut);
	background: rgba(20, 17, 15, 0.88);
	backdrop-filter: blur(14px) saturate(1.2);
	border-bottom: 1px solid var(--line);
}
.pzl-mark {
	font-family: var(--disp);
	font-size: 25px;
	font-weight: 600;
	letter-spacing: -0.035em;
	color: var(--ink);
	text-decoration: none;
	margin: 0;
	flex: none;
}
.pzl-mark-o { color: var(--ember); }
.pzl-nav { display: flex; gap: 22px; margin-left: auto; }
.pzl-nav a {
	font-size: 14px;
	color: var(--ash);
	text-decoration: none;
	padding: 5px 0;
	position: relative;
	white-space: nowrap;
}
.pzl-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 1.5px;
	background: var(--ember);
	transition: right 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.pzl-nav a:hover { color: var(--ink); }
.pzl-nav a:hover::after,
.pzl-nav a[aria-current="page"]::after { right: 0; }
.pzl-nav a[aria-current="page"] { color: var(--ink); }
.pzl-burger { display: none; }

/* ================= BOUTONS ================= */

.pzl-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 14px 26px;
	background: var(--ember);
	color: #150E08;
	font-family: var(--ui);
	font-size: 15.5px;
	font-weight: 700;
	letter-spacing: -0.005em;
	text-decoration: none;
	border: 1.5px solid var(--ember);
	border-radius: 2px;
	transition: transform 0.16s cubic-bezier(0.22, 1, 0.36, 1), background 0.16s ease, box-shadow 0.16s ease;
}
.pzl-btn:hover {
	background: var(--flame);
	border-color: var(--flame);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px -12px rgba(242, 98, 36, 0.7);
}
.pzl-btn-lg { padding: 17px 34px; font-size: 17px; }
.pzl-btn-sm { padding: 9px 16px; font-size: 13.5px; }
.pzl-btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.pzl-btn-ghost:hover { background: transparent; border-color: var(--ink); box-shadow: none; }
.pzl-link {
	color: var(--ash);
	text-decoration: none;
	font-size: 15.5px;
	font-weight: 500;
	border-bottom: 1px solid var(--line);
	padding-bottom: 3px;
	transition: color 0.15s ease, border-color 0.15s ease;
}
.pzl-link:hover { color: var(--ink); border-bottom-color: var(--ember); }

/* ================= HEROS ================= */

.pzl-hero {
	position: relative;
	padding: clamp(44px, 7vh, 92px) 0 clamp(40px, 7vh, 80px);
	overflow: hidden;
	background:
		radial-gradient(88% 70% at 79% 36%, rgba(242, 98, 36, 0.20), transparent 62%),
		radial-gradient(60% 50% at 8% 6%, rgba(255, 157, 58, 0.08), transparent 70%),
		var(--soot);
}
.pzl-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(28px, 5vw, 68px);
	align-items: center;
}
.pzl-hero-art { position: relative; }
.pzl-hero-art > svg {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.62));
}
.pzl-hero-cta { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; margin-top: 34px; }

/* La braise qui respire sous la pizza. */
.pzl-hero-glow {
	position: absolute;
	inset: 10% 4% 4% 4%;
	background: radial-gradient(closest-side, rgba(242, 98, 36, 0.52), transparent 72%);
	filter: blur(48px);
	z-index: 0;
	animation: pzl-breathe 7s ease-in-out infinite;
	pointer-events: none;
}
@keyframes pzl-breathe {
	0%, 100% { opacity: 0.5; transform: scale(0.97); }
	50% { opacity: 0.85; transform: scale(1.05); }
}

/* ================= LA SONDE ================= */

.pzl-probe {
	border: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(41, 32, 24, 0.72), rgba(29, 24, 21, 0.56));
	padding: 22px;
	border-radius: 3px;
}
.pzl-probe-lab {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--faint);
	margin: 0 0 16px;
}
.pzl-probe-row { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.pzl-probe-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.pzl-probe-field span {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--faint);
}
.pzl-probe-field input {
	width: 100%;
	min-height: 52px;
	padding: 0 10px;
	background: rgba(20, 17, 15, 0.9);
	border: 1px solid var(--line);
	color: var(--ink);
	font-family: var(--mono);
	font-size: 19px;
	font-variant-numeric: tabular-nums;
	border-radius: 2px;
	transition: border-color 0.15s ease;
}
.pzl-probe-field input:hover { border-color: rgba(247, 243, 236, 0.32); }
.pzl-probe-field input:focus { outline: 2px solid var(--steel); outline-offset: 1px; border-color: var(--steel); }
.pzl-probe-out { margin-top: 18px; min-height: 78px; }
.pzl-probe-wait { color: var(--faint); font-family: var(--mono); font-size: 14px; }
.pzl-probe-hit { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.pzl-probe-name { font-family: var(--disp); font-size: clamp(24px, 3.4vw, 34px); font-weight: 600; letter-spacing: -0.022em; }
.pzl-probe-meta { font-family: var(--mono); font-size: 13px; color: var(--ash); font-variant-numeric: tabular-nums; }
.pzl-probe-why { font-size: 14.5px; color: var(--ash); margin: 9px 0 0; }
.pzl-probe-bar { height: 3px; background: var(--line); margin-top: 13px; overflow: hidden; }
.pzl-probe-bar i {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--crust), var(--ember), var(--flame));
	transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================= SECTIONS ================= */

.pzl-sec { padding: var(--rhythm) 0; }
.pzl-sec-head { padding: clamp(52px, 9vh, 104px) 0 clamp(24px, 4vh, 44px); }
.pzl-soot2-bg { background: var(--soot2); }
.pzl-soot3-bg { background: var(--soot3); }

/* Rangees editoriales : asymetriques, et elles changent de cote. */
.pzl-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(30px, 6vw, 84px);
	align-items: center;
}
.pzl-row + .pzl-row { margin-top: var(--rhythm); }
.pzl-row-flip .pzl-row-art { order: -1; }
.pzl-row-art svg { display: block; width: 100%; height: auto; }
.pzl-row-fig {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	color: var(--faint);
	margin: 14px 0 0;
	text-transform: uppercase;
}
.pzl-light .pzl-row-fig { color: var(--paper-dim); }

.pzl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.pzl-card { border-top: 2px solid var(--line); padding-top: 20px; }
.pzl-num {
	font-family: var(--mono);
	font-size: 11.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ember);
	margin: 0 0 12px;
}

/* ================= BANDE DEFILANTE ================= */

.pzl-marquee {
	overflow: hidden;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--soot3);
	padding: 22px 0;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.pzl-marquee-track {
	display: flex;
	gap: 46px;
	width: max-content;
	animation: pzl-slide 46s linear infinite;
}
.pzl-marquee span {
	font-family: var(--disp);
	font-size: clamp(26px, 4vw, 46px);
	font-weight: 600;
	letter-spacing: -0.025em;
	color: transparent;
	-webkit-text-stroke: 1px var(--faint);
	white-space: nowrap;
}
.pzl-marquee span.pzl-hot { color: var(--ember); -webkit-text-stroke: 0; }
@keyframes pzl-slide {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ================= PREUVE ================= */

.pzl-proof {
	padding: clamp(38px, 6vh, 64px) 0;
	background: var(--soot3);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.pzl-proof-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 26px; }
.pzl-proof-cell { text-align: center; }
.pzl-proof-v {
	font-family: var(--mono);
	font-size: clamp(28px, 4.4vw, 44px);
	color: var(--ink);
	font-variant-numeric: tabular-nums;
	margin: 0;
	line-height: 1;
	letter-spacing: -0.025em;
}
.pzl-proof-l {
	font-size: 12.5px;
	color: var(--faint);
	margin: 9px 0 0;
	letter-spacing: 0.02em;
	line-height: 1.35;
}

/* ================= STYLES ================= */

.pzl-styles { display: grid; grid-template-columns: repeat(auto-fit, minmax(252px, 1fr)); gap: 18px; }
.pzl-style {
	display: block;
	padding: 22px 22px 58px;
	border: 1px solid var(--line-dark);
	background: var(--flour2);
	text-decoration: none;
	color: var(--paper-ink);
	position: relative;
	overflow: hidden;
	transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.18s ease;
}
.pzl-style::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 2px;
	background: var(--ember);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
.pzl-style:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(36, 28, 22, 0.55); }
.pzl-style:hover::after { transform: scaleX(1); }
.pzl-style-city {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--crust);
}
.pzl-style-name {
	font-family: var(--disp);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.022em;
	margin: 8px 0 9px;
	color: var(--paper-ink);
}
.pzl-style-crust { font-size: 14.5px; color: var(--paper-dim); margin: 0; line-height: 1.45; }
.pzl-style-prof { position: absolute; bottom: 16px; right: 18px; opacity: 0.42; }
.pzl-badge {
	position: absolute;
	bottom: 18px;
	left: 22px;
	font-family: var(--mono);
	font-size: 10px;
	padding: 3px 8px;
	border: 1px solid var(--line-dark);
	letter-spacing: 0.12em;
	background: rgba(255, 255, 255, 0.45);
}
.pzl-badge-a { color: #185128; border-color: rgba(24, 81, 40, 0.42); }
.pzl-badge-b { color: #6E4E0C; border-color: rgba(110, 78, 12, 0.42); }
.pzl-badge-c { color: var(--paper-dim); }

/* ================= CADRE DU CALCULATEUR ================= */

.pzl-cadre {
	margin: 0 auto;
	border: 1px solid var(--line);
	background: var(--soot2);
	padding: 12px;
	box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8);
}
.pzl-cadre-lab {
	font-family: var(--mono);
	font-size: 10.5px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--faint);
	margin: 4px 0 12px 6px;
	display: flex;
	align-items: center;
	gap: 9px;
}
.pzl-cadre-lab::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ember);
	box-shadow: 0 0 10px var(--ember);
	flex: none;
}
.pzl-cadre-in { background: #EDF2EF; color: #12201B; padding: 4px; }

/* ================= PALIERS ================= */

.pzl-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 18px; align-items: stretch; }
.pzl-plan {
	border: 1px solid var(--line);
	padding: 28px 22px;
	background: var(--soot2);
	position: relative;
	display: flex;
	flex-direction: column;
}
.pzl-plan-star {
	border-color: var(--ember);
	background: linear-gradient(180deg, var(--soot3), var(--soot2));
	box-shadow: 0 24px 60px -30px rgba(242, 98, 36, 0.6);
}
.pzl-plan-tag {
	position: absolute;
	top: -11px;
	left: 22px;
	background: var(--ember);
	color: #150E08;
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 4px 10px;
	margin: 0;
}
.pzl-plan-name { font-family: var(--disp); font-size: 25px; font-weight: 600; letter-spacing: -0.022em; margin: 0 0 8px; }
.pzl-plan-price { font-family: var(--mono); font-size: 33px; margin: 0 0 18px; font-variant-numeric: tabular-nums; letter-spacing: -0.03em; }
.pzl-plan-price span { display: block; font-size: 12px; color: var(--faint); letter-spacing: 0.03em; margin-top: 6px; }
.pzl-plan-list { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.pzl-plan-list li {
	font-size: 14.5px;
	color: var(--ash);
	padding: 9px 0 9px 20px;
	border-bottom: 1px solid var(--line);
	position: relative;
	line-height: 1.42;
}
.pzl-plan-list li::before { content: "→"; position: absolute; left: 0; color: var(--ember); }
.pzl-plan .pzl-btn { width: 100%; justify-content: center; }

/* ================= ETAPES ================= */

.pzl-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
	gap: clamp(26px, 3.4vw, 44px);
}
.pzl-steps li { border-top: 2px solid var(--ember); padding-top: 18px; }
.pzl-step-n {
	display: block;
	font-family: var(--mono);
	font-size: 11.5px;
	letter-spacing: 0.2em;
	color: var(--ember);
	margin-bottom: 12px;
}

/* ================= APPEL A L'ACTION ================= */

.pzl-cta {
	padding: clamp(72px, 12vh, 132px) 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(70% 100% at 50% 100%, rgba(242, 98, 36, 0.26), transparent 65%),
		var(--soot);
	border-top: 1px solid var(--line);
}
.pzl-cta .pzl-lede { margin-left: auto; margin-right: auto; }
.pzl-cta .pzl-eyebrow { justify-content: center; }

/* ================= PROSE ================= */

.pzl-prose { max-width: 730px; }
.pzl-prose .pzl-h3 { margin-bottom: 16px; }
.pzl-prose .pzl-p { font-size: 17.5px; line-height: 1.62; }

/* ================= PIED ================= */

.pzl-foot { padding: clamp(52px, 8vh, 82px) 0 38px; background: var(--soot2); border-top: 1px solid var(--line); }
.pzl-foot-row { display: flex; gap: 44px; flex-wrap: wrap; justify-content: space-between; }
.pzl-foot-p { color: var(--faint); font-size: 14px; margin: 10px 0 0; max-width: 34ch; }
.pzl-foot-nav { display: flex; flex-direction: column; gap: 9px; }
.pzl-foot-nav a { color: var(--ash); text-decoration: none; font-size: 14px; }
.pzl-foot-nav a:hover { color: var(--ink); }
.pzl-foot-fine { color: var(--faint); font-size: 12.5px; margin: 36px 0 0; border-top: 1px solid var(--line); padding-top: 20px; }

/* ================= REVELATION AU DEFILEMENT ================= */

.pzl-rise {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pzl-rise.pzl-in { opacity: 1; transform: none; }

/* ================= CELLULAIRE ================= */

@media (max-width: 900px) {
	.pzl-hero-grid { grid-template-columns: 1fr; }
	.pzl-hero-art { max-width: 430px; margin: 0 auto; }
	.pzl-row { grid-template-columns: 1fr; }
	.pzl-row-flip .pzl-row-art { order: 0; }
}

@media (max-width: 820px) {
	.pzl-nav { display: none; }
	.pzl-burger {
		display: block;
		margin-left: auto;
		min-width: 48px;
		min-height: 48px;
		background: transparent;
		border: 1px solid var(--line);
		color: var(--ink);
		font-size: 21px;
		border-radius: 2px;
		cursor: pointer;
	}
	.pzl-head.pzl-open .pzl-nav {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--soot2);
		border-bottom: 1px solid var(--line);
		padding: 12px var(--gut) 20px;
		gap: 0;
	}
	.pzl-head.pzl-open .pzl-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
	.pzl-probe-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pzl-foot-row { flex-direction: column; gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
	.pzl-site *,
	.pzl-marquee-track,
	.pzl-hero-glow { animation: none !important; transition: none !important; }
	.pzl-rise { opacity: 1; transform: none; }
}
