/*
 * Temper — design tokens & site shell.
 *
 * THE RULE THIS FILE EXISTS TO ENFORCE: #tpr-forge is a fixed, full-viewport
 * WebGL2 canvas that persists behind every section on every page — a real
 * advected/folded noise field (repeated fold-and-draw operations on a
 * scalar field) rendered onto a tapered blade-shaped silhouette, plus a
 * drifting ember/spark layer standing in for the forge fire, never rebuilt
 * per-section. Every element with class="glass" performs a genuine inner
 * glow whose intensity (--tpr-glow, set by forge.js from the actual
 * simulated pattern/ember state under that element) and color (--glow-rgb,
 * interpolated between steel gray and ember orange from that same live
 * state) are coupled to real simulation state, not merely decorative CSS.
 * Mirrors Dram's --dr-glow / #dr-pour architecture exactly, re-grounded in
 * steel and fire — there is no glass or liquid in this theme's world, the
 * coupling is "the forge's ember heat is the thing that makes the UI feel
 * alive."
 */

:root {
	--ink: #161412;
	--ink-2: #1E1A17;
	--paper: #F2EFE9;
	--paper-2: #E8E2D6;
	--surface: rgba(22, 20, 18, 0.04);
	--surface-strong: rgba(22, 20, 18, 0.08);
	--line: rgba(22, 20, 18, 0.14);
	--line-on-dark: rgba(242, 239, 233, 0.14);
	--text: #201C19;
	--text-soft: #5B564F;
	--text-faint: #8B857A;
	--text-on-dark: #F2EFE9;
	--text-on-dark-soft: #C9C2B5;

	/* Steel spectrum — the primary brand material. Bright polished steel
	   through blued/oxidized dark steel. Sampled directly by the
	   pattern-weld shader, so a change here changes the blade's rendered
	   grain colors, not just UI chrome. */
	--tpr-steel-1: #D8DCE0;
	--tpr-steel-2: #A8B0B8;
	--tpr-steel-3: #626B73;
	--tpr-steel-4: #3A4148;

	/* Forge ember — single accent, reads as glowing coal/fire. */
	--ember: #FF6B35;
	--ember-deep: #E8552A;

	/* Real bladesmith temper-color spectrum (oxide colors steel turns when
	   heated, used by smiths to judge hardness) — pale straw through blue.
	   Appears only in the dedicated temper-color widget, not scattered
	   elsewhere. */
	--tpr-temper-1: #F0D060;
	--tpr-temper-2: #D9A441;
	--tpr-temper-3: #8B5A6B;
	--tpr-temper-4: #4A6B8A;

	--glow-rgb: 232, 85, 42;

	--font-display: 'Roboto Slab', Georgia, serif;
	--font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
	--font-label: 'Inter', -apple-system, 'Segoe UI', sans-serif;

	--fs-1: 1rem;
	--fs-2: 1.25rem;
	--fs-3: 1.5625rem;
	--fs-4: 1.9531rem;
	--fs-5: 2.4414rem;
	--fs-6: clamp(2.2rem, 1.3rem + 4.2vw, 3.8rem);
	--fs-7: clamp(2.4rem, 1.15rem + 5.8vw, 5.2rem);

	--sp-1: 4px;
	--sp-2: 8px;
	--sp-3: 16px;
	--sp-4: 24px;
	--sp-5: 40px;
	--sp-6: 64px;
	--sp-7: 96px;
	--sp-8: 144px;

	--radius: 12px;
	--radius-sm: 7px;
	--wrap: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	font-family: var(--font-sans);
	background: var(--paper);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.14; margin: 0 0 var(--sp-3); letter-spacing: -0.01em; }
h1 { font-size: var(--fs-7); }
h2 { font-size: var(--fs-5); }
h3 { font-size: var(--fs-3); }
p { margin: 0 0 var(--sp-3); color: var(--text-soft); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Persistent forge-simulation background ---------- */
#tpr-forge { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
#tpr-forge canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--sp-4); position: relative; z-index: 1; }
.wrap--narrow { max-width: 760px; }

/* ---------- Glass (the signature material) ---------- */
.glass {
	--tpr-glow: 0;
	position: relative;
	background: rgba(242, 239, 233, 0.5);
	backdrop-filter: blur(20px) saturate(150%);
	-webkit-backdrop-filter: blur(20px) saturate(150%);
	border: 1px solid rgba(255, 250, 240, 0.55);
	border-radius: var(--radius);
	box-shadow:
		inset 0 0 calc(10px + var(--tpr-glow) * 26px) rgba(var(--glow-rgb), calc(0.18 + var(--tpr-glow) * 0.42)),
		inset 0 1px 0 rgba(255,250,240,0.6),
		0 24px 48px -28px rgba(10, 8, 6, 0.45);
	transition: box-shadow 260ms ease, transform 200ms ease, border-color 200ms ease;
}
.glass:hover { border-color: rgba(255,250,240,0.85); transform: translateY(-2px); }
.glass--dark {
	background: rgba(22, 20, 18, 0.46);
	border-color: rgba(255,250,240,0.14);
	color: var(--text-on-dark);
}
.glass--dark p { color: var(--text-on-dark-soft); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; padding: var(--sp-2) 0; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); padding: 10px var(--sp-4); }
.brand { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; display: flex; align-items: baseline; gap: 10px; }
.brand__tag { font-family: var(--font-label); font-size: 0.6875rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.nav ul { list-style: none; display: flex; gap: var(--sp-5); margin: 0; padding: 0; }
.nav a { font-size: 0.9375rem; color: var(--text-soft); transition: color 160ms ease; }
.nav a:hover { color: var(--ember-deep); }

.nav-toggle {
	display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius-sm);
	color: var(--text); padding: 0.5em 0.9em; font-size: 0.9rem; cursor: pointer;
}
@media (max-width: 860px) {
	.nav-toggle { display: inline-flex; }
	/* .site-header's backdrop-filter -- and, worse, a lingering .glass:hover
	   transform left active on touch devices after tapping the toggle button
	   (a descendant, so :hover matches the header too) -- otherwise creates a
	   containing block for .nav's position:fixed panel (same effect as
	   `transform` on any ancestor), trapping it inside the header's own
	   ~68px box instead of the viewport. transform:none needs !important to
	   reliably beat .glass:hover's transform at equal specificity. Fixed
	   from day one on this theme -- a bug class that has recurred multiple
	   times across this catalogue. */
	.site-header.nav-open { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--paper); transform: none !important; }
	.nav {
		position: fixed; inset: 68px 0 0 0; background: var(--paper); padding: var(--sp-5) var(--sp-4);
		transform: translateY(-8px); opacity: 0; pointer-events: none;
		transition: opacity 220ms ease, transform 220ms ease; overflow-y: auto; z-index: 39;
	}
	.nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
	.nav ul { flex-direction: column; align-items: flex-start; gap: var(--sp-4); }
	.nav a { font-size: 1.25rem; }
	.brand__tag { display: none; }
	.site-header__inner { padding: var(--sp-2) var(--sp-3); gap: var(--sp-2); }
	.site-header__inner > div { gap: var(--sp-2) !important; }
	.btn.btn--solid { padding: 0.6em 0.85em; font-size: 0.75rem; }
	.nav-toggle { padding: 0.5em 0.7em; font-size: 0.78rem; }
	.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 8px; padding: 0.85em 1.5em; border-radius: 999px;
	font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600; border: 1px solid var(--line);
	background: transparent; color: var(--text); cursor: pointer; transition: all 180ms ease;
}
.btn:hover { border-color: var(--ember); color: var(--ember-deep); }
.btn--solid { background: var(--ember); color: #fff; border-color: var(--ember); }
.btn--solid:hover { background: var(--ember-deep); border-color: var(--ember-deep); color: #fff; }
.btn--on-dark { background: rgba(242,239,233,0.1); color: var(--text-on-dark); border-color: var(--line-on-dark); }
.btn--on-dark:hover { background: rgba(242,239,233,0.18); border-color: rgba(255,250,240,0.4); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-label); font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ember-deep); margin-bottom: var(--sp-3); }
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--ember); }
.eyebrow--on-dark { color: var(--tpr-steel-1); }
.eyebrow--on-dark::before { background: var(--tpr-steel-1); }

/* ---------- Grid / card ---------- */
.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { display: block; padding: var(--sp-4); }
.card__media { aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: var(--sp-4); background: var(--surface); }
.card__media--rule { background: linear-gradient(135deg, var(--tpr-steel-1) 0%, var(--tpr-steel-3) 55%, var(--ink-2) 100%); position: relative; }
.card__media--rule::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255,250,240,0.14) 0 2px, transparent 2px 26px); }
.card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card__eyebrow { font-family: var(--font-label); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ember-deep); margin-bottom: var(--sp-2); }
.card__title { margin-bottom: var(--sp-2); }
.card__excerpt { color: var(--text-soft); font-size: 0.9375rem; margin-bottom: 0; }

.section-head { max-width: 640px; margin-bottom: var(--sp-6); }
.pull-quote { font-family: var(--font-display); font-style: italic; font-size: var(--fs-4); line-height: 1.3; max-width: 900px; }
.pull-quote cite { display: block; margin-top: var(--sp-4); font-family: var(--font-label); font-size: 0.875rem; font-weight: 600; font-style: normal; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: var(--sp-8) 0 var(--sp-7); min-height: 92vh; display: flex; align-items: center; }
.hero__inner { position: relative; z-index: 2; max-width: 900px; }
.hero__panel { padding: var(--sp-6); max-width: 720px; }
.hero__lede { font-size: var(--fs-2); max-width: 46ch; font-family: var(--font-sans); color: var(--text-soft); }
.hero__actions { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); flex-wrap: wrap; }
.hero__stats { display: flex; gap: var(--sp-6); margin-top: var(--sp-7); flex-wrap: wrap; }
.hero__stat-num { font-family: var(--font-label); font-weight: 700; font-size: var(--fs-4); color: var(--ember-deep); }
.hero__stat-label { font-family: var(--font-label); font-size: 0.78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Footer ---------- */
.site-footer { margin-top: var(--sp-8); padding: var(--sp-7) 0 var(--sp-5); background: var(--ink); color: var(--text-on-dark); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-6); margin-bottom: var(--sp-7); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-on-dark-soft); font-family: var(--font-label); font-weight: 600; margin-bottom: var(--sp-3); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a, .footer-grid p { color: var(--text-on-dark-soft); font-size: 0.9375rem; }
.footer-grid .brand { color: var(--text-on-dark); }
.footer-legal { display: flex; justify-content: space-between; padding-top: var(--sp-5); border-top: 1px solid var(--line-on-dark); font-size: 0.8125rem; color: var(--text-on-dark-soft); flex-wrap: wrap; gap: var(--sp-2); }

/* ---------- Forms ---------- */
.enquiry-form input, .enquiry-form textarea, .enquiry-form select {
	width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line);
	background: rgba(255,250,240,0.65); font-family: var(--font-sans); font-size: 0.9375rem; margin-bottom: var(--sp-3);
}
.enquiry-form input:focus, .enquiry-form textarea:focus { outline: 2px solid var(--ember); outline-offset: 1px; }
.enquiry-form__status { font-size: 0.875rem; color: var(--text-soft); }
.enquiry-form__status.is-error { color: var(--ember-deep); }

/* ---------- Focus visibility (keyboard navigation) ---------- */
a:focus-visible, button:focus-visible, .btn:focus-visible, .nav-toggle:focus-visible {
	outline: 2px solid var(--ember-deep);
	outline-offset: 2px;
	border-radius: 4px;
}

/* ---------- Inner page head ---------- */
.page-head { padding: var(--sp-6) 0; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: var(--fs-6); }
.page-head__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--sp-6); flex-wrap: wrap; }
.page-head__intro { max-width: 640px; }
.page-head__stats { display: flex; gap: var(--sp-6); flex: 0 0 auto; }
.page-head__stats .about-stats__num { font-size: var(--fs-5); }
@media (max-width: 720px) { .page-head__inner { align-items: flex-start; } .page-head__stats { gap: var(--sp-5); } }

.entry-content { line-height: 1.75; }
.entry-content h2 { margin-top: var(--sp-6); }
.entry-content ul, .entry-content ol { padding-left: 1.4em; color: var(--text-soft); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--font-label); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); margin-bottom: var(--sp-3); }
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--ember-deep); }

/* ---------- Two-column detail head ---------- */
.detail-head { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items: start; padding: var(--sp-7) 0; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.detail-head__media { border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.detail-head__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-head--blade .detail-head__media { aspect-ratio: 4/5; }
.detail-head--steel .detail-head__media { aspect-ratio: 4/5; }
.detail-head__body { display: flex; flex-direction: column; }
.detail-head__lede { font-size: var(--fs-2); color: var(--text-soft); margin-bottom: var(--sp-4); }
.detail-head__actions { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); flex-wrap: wrap; }
@media (max-width: 860px) { .detail-head { grid-template-columns: 1fr; gap: var(--sp-5); padding: var(--sp-6) 0; } }

/* ---------- Steel cross-link card ---------- */
.material-link {
	display: flex; align-items: center; gap: var(--sp-4); padding: var(--sp-4); text-decoration: none; color: inherit;
}
.material-link__media { width: 88px; height: 88px; flex: 0 0 auto; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface); }
.material-link__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.material-link__eyebrow { font-family: var(--font-label); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ember-deep); margin-bottom: 4px; }
.material-link__title { font-family: var(--font-display); font-size: var(--fs-3); margin: 0; }

/* ---------- Spec sheet / fact line ---------- */
.spec-sheet { display: grid; gap: 0; border-top: 1px solid var(--line); }
.spec-sheet__row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); gap: var(--sp-4); }
.spec-sheet__row dt { font-family: var(--font-label); font-size: 0.8125rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.spec-sheet__row dd { margin: 0; font-weight: 700; text-align: right; }
.fact-line { display: flex; gap: var(--sp-3); flex-wrap: wrap; font-family: var(--font-label); font-size: 0.8125rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--sp-2); }
dl.fact-line { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px var(--sp-4); }
dl.fact-line .fact-line__row dt { margin-bottom: 2px; }
dl.fact-line .fact-line__row dd { margin: 0; color: var(--text-soft); font-weight: 700; white-space: normal; }

/* ---------- Tasting notes / pattern-look callout ---------- */
.tasting-notes { margin: var(--sp-4) 0; padding: var(--sp-4); border-left: 3px solid var(--ember); background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.tasting-notes__label { font-family: var(--font-label); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ember-deep); margin-bottom: 6px; }
.tasting-notes__text { margin: 0; color: var(--text); }

/* ---------- Archive intro + pills ---------- */
.archive-intro { max-width: 640px; margin: var(--sp-3) 0 0; color: var(--text-soft); }
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: var(--sp-5) 0 var(--sp-6); }
.filter-pills a { display: inline-block; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); font-family: var(--font-label); font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-soft); text-decoration: none; transition: border-color 160ms ease, color 160ms ease; }
.filter-pills a:hover, .filter-pills a.is-active { border-color: var(--ember); color: var(--ember-deep); }

/* ---------- About page ---------- */
.about-stats { display: flex; gap: var(--sp-6); flex-wrap: wrap; margin: var(--sp-6) 0; padding: var(--sp-5) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-stats__num { font-family: var(--font-label); font-weight: 700; font-size: var(--fs-4); color: var(--ember-deep); }
.about-stats__label { font-family: var(--font-label); font-size: 0.78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Comments (WP core classes, minimal skin) ---------- */
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .children { list-style: none; padding-left: var(--sp-5); }
.comment-body { padding: var(--sp-4) 0; border-bottom: 1px solid var(--line); }
.comment-form input, .comment-form textarea {
	width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line);
	background: #fff; font-family: var(--font-sans); font-size: 0.9375rem; margin-bottom: var(--sp-3);
}

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translate(-28px, 8px); }
[data-reveal="left"].is-visible { transform: none; }
[data-reveal="right"] { transform: translate(28px, 8px); }
[data-reveal="right"].is-visible { transform: none; }
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   Signature #2 — Forging Process Diagram (scroll-drawn SVG)
   ===================================================================== */
.forge-route { padding: var(--sp-6); overflow: hidden; }
.forge-route__svg { width: 100%; height: auto; display: block; }
.forge-outline { fill: none; stroke: var(--text-faint); stroke-width: 2; opacity: 0.35; }
.forge-outline--fill { fill: var(--surface-strong); stroke: none; opacity: 1; }
.flow-line { fill: none; stroke: var(--ember); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.flow-node { fill: var(--paper); stroke: var(--text-faint); stroke-width: 2; transition: fill 300ms ease, stroke 300ms ease, r 300ms ease; }
.flow-node-group.is-active .flow-node { fill: var(--ember); stroke: var(--ember-deep); r: 9; }
.flow-label { font-family: var(--font-label); font-size: 15px; font-weight: 600; fill: var(--text-faint); letter-spacing: 0.02em; transition: fill 300ms ease; }
.flow-node-group.is-active .flow-label { fill: var(--text); }
.flow-arrow { fill: var(--text-faint); opacity: 0.5; transition: fill 300ms ease, opacity 300ms ease; }
.flow-arrow.is-lit { fill: var(--ember); opacity: 1; }
.flow-comet { fill: var(--tpr-temper-1); opacity: 0; filter: drop-shadow(0 0 4px var(--ember)); }
.forge-route__caption { max-width: 640px; margin-top: var(--sp-5); }

/* =====================================================================
   Signature #3 — Temper Color widget
   ===================================================================== */
.temper-widget { padding: var(--sp-6); }
.temper-widget__head { max-width: 640px; margin-bottom: var(--sp-5); }
.temper-widget__control { margin-bottom: var(--sp-6); }
.temper-widget__labels { display: flex; justify-content: space-between; font-family: var(--font-label); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); margin-bottom: var(--sp-2); }
.temper-widget__slider {
	-webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px;
	background: linear-gradient(90deg, var(--tpr-temper-1), var(--tpr-temper-2) 35%, var(--tpr-temper-3) 68%, var(--tpr-temper-4));
	outline: none; cursor: pointer;
}
.temper-widget__slider::-webkit-slider-thumb {
	-webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
	background: var(--paper); border: 3px solid var(--ink); box-shadow: 0 2px 6px rgba(0,0,0,0.3); cursor: pointer;
}
.temper-widget__slider::-moz-range-thumb {
	width: 22px; height: 22px; border-radius: 50%; background: var(--paper); border: 3px solid var(--ink);
	box-shadow: 0 2px 6px rgba(0,0,0,0.3); cursor: pointer;
}
.temper-widget__stage { display: grid; grid-template-columns: 220px 1fr; gap: var(--sp-6); align-items: center; }
@media (max-width: 720px) { .temper-widget__stage { grid-template-columns: 1fr; } }
.temper-widget__blade { width: 100%; max-width: 220px; margin: 0 auto; }
.temper-widget__blade-svg { width: 100%; height: auto; display: block; }
.temper-widget__readout { display: grid; gap: var(--sp-4); }
.temper-widget__readout-row { border-bottom: 1px solid var(--line); padding-bottom: var(--sp-3); }
.temper-widget__readout-row label { display: block; font-family: var(--font-label); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); margin-bottom: 4px; }
.temper-widget__readout-row span { font-family: var(--font-display); font-size: var(--fs-3); color: var(--text); display: block; }
.temper-widget__readout-row p { margin: 4px 0 0; font-size: 0.9375rem; }
