/* ============================================================
   PYROLEX LABS — design system
   Palette: charred black ground, birch-cream type, crimson accent
   Type: Prata (display, from the original site) · Source Sans 3 (body) · IBM Plex Mono (specs)
   Built by Revora Websites
   ============================================================ */

:root {
  --char: #0b0909;
  --char-2: #100d0d;
  --soot: #171213;
  --soot-2: #1e1717;
  --ash: #322427;
  --line: #2a1e20;
  --line-soft: #221a1b;

  --bone: #f2e9dd;
  --smoke: #a79694;
  --faint: #7d6e6c;

  --crimson: #D7263D;
  --crimson-soft: #E85566;
  --blood: #8E1220;
  --bamboo: #d9b88a;
  --bamboo-deep: #b28d5c;

  --ok: #8fb573;

  --font-display: "Prata", "Iowan Old Style", Georgia, serif;
  --font-body: "Source Sans 3", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  --radius: 10px;
  --radius-lg: 16px;
  --gutter: clamp(20px, 5vw, 48px);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 92px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(142, 18, 32, 0.08), transparent 60%),
    var(--char);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-inline: 0;
}

img { max-width: 100%; display: block; }

::selection { background: rgba(215, 38, 61, 0.35); color: var(--bone); }

a { color: var(--crimson-soft); text-decoration: none; }
a:hover { color: var(--crimson); }

:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- type ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.005em;
  text-wrap: balance;
  margin: 0 0 0.45em;
  color: var(--crimson);
  background: linear-gradient(180deg, var(--crimson-soft) 0%, var(--crimson) 46%, var(--blood) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(215, 38, 61, 0.28));
}

h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.28rem, 2vw, 1.55rem); }

p { margin: 0 0 1em; max-width: 62ch; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--smoke); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--blood), var(--crimson));
  flex: none;
}

/* burn-line under section headings */
.burn {
  position: relative;
  padding-bottom: 14px;
}
.burn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 74px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--blood) 70%, transparent);
  box-shadow: 0 0 14px rgba(215, 38, 61, 0.55);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* ---------- layout ---------- */

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: clamp(64px, 9vw, 120px); }
section.tight { padding-block: clamp(44px, 6vw, 72px); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
  align-items: stretch;
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 11, 9, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 14px;
}
.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1;
  color: var(--crimson);
  background: linear-gradient(180deg, var(--crimson-soft) 0%, var(--crimson) 55%, var(--blood) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo:hover { filter: drop-shadow(0 0 10px rgba(215, 38, 61, 0.45)); }
.logo .lab { font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--smoke);
  font-size: 0.93rem;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--bone); }
.nav-links a[aria-current="page"] { position: relative; }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
}
.nav-links .btn { margin-left: 6px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ash);
  border-radius: 8px;
  color: var(--bone);
  padding: 8px 10px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--char-2);
    border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter) 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; font-size: 1.02rem; }
  .nav-links .btn { margin: 10px 0 0; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn-fire {
  background: linear-gradient(160deg, #ff5c6d 0%, var(--crimson) 34%, var(--blood) 100%);
  color: #fff2f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 22px rgba(142, 18, 32, 0.45);
}
.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 32px rgba(215, 38, 61, 0.55);
  color: #fff2f0;
}
.btn-ghost {
  background: transparent;
  border-color: var(--ash);
  color: var(--bone);
}
.btn-ghost:hover { border-color: var(--bamboo-deep); color: var(--bamboo); }
.btn-sm { padding: 9px 18px; font-size: 0.87rem; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("img/bg.jpg") center 20% / cover no-repeat;
  opacity: 0.16;
  filter: saturate(0.6) contrast(1.1);
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 11, 9, 0.25) 0%, rgba(14, 11, 9, 0.72) 62%, var(--char) 100%),
    radial-gradient(700px 420px at 22% 68%, rgba(215, 38, 61, 0.16), transparent 70%);
}
.hero-inner {
  position: relative;
  padding-block: clamp(84px, 13vw, 170px) clamp(72px, 10vw, 130px);
  max-width: 780px;
}
.hero .lede { max-width: 56ch; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-meta {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--crimson); box-shadow: 0 0 8px var(--crimson); }

/* ---------- cards / product ---------- */

.card {
  background: linear-gradient(180deg, var(--soot) 0%, var(--char-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--ash);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soot-2);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-media img { transform: scale(1.04); }
.card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.card-body h3 { margin: 0; }
.card-body p { color: var(--smoke); font-size: 0.95rem; margin: 0; }
.card-foot { margin-top: auto; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--bamboo);
  white-space: nowrap;
}
.price small { color: var(--faint); font-weight: 400; font-size: 0.72rem; }

.badge {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid;
}
.badge-stock { color: var(--ok); border-color: rgba(143, 181, 115, 0.4); background: rgba(143, 181, 115, 0.08); }
.badge-out { color: var(--faint); border-color: var(--ash); background: rgba(255, 255, 255, 0.02); }
.badge-fire { color: var(--crimson); border-color: rgba(215, 38, 61, 0.45); background: rgba(215, 38, 61, 0.08); }
.badge-corner { position: absolute; top: 14px; left: 14px; backdrop-filter: blur(6px); background: rgba(14, 11, 9, 0.72); }

/* spec table — laser job-ticket style */
.spec {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  border-top: 1px dashed var(--ash);
  margin: 4px 0 0;
  padding: 0;
}
.spec div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
}
.spec dt { color: var(--faint); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.66rem; padding-top: 2px; }
.spec dd { margin: 0; color: var(--bamboo); text-align: right; }

/* ---------- band (full-width CTA strip) ---------- */

.band {
  background:
    radial-gradient(600px 300px at 12% 50%, rgba(215, 38, 61, 0.13), transparent 70%),
    linear-gradient(180deg, var(--soot) 0%, var(--char-2) 100%);
  border-block: 1px solid var(--line);
}
.band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: clamp(40px, 6vw, 64px);
}
.band h2 { margin: 0 0 6px; }
.band p { margin: 0; color: var(--smoke); }

/* ---------- gallery ---------- */

.masonry {
  columns: 3;
  column-gap: 16px;
}
.masonry figure {
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  background: var(--soot-2);
}
.masonry img { width: 100%; transition: transform 0.4s ease; }
.masonry figure:hover img { transform: scale(1.03); }
.masonry figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(14, 11, 9, 0.88));
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bamboo);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.masonry figure:hover figcaption { opacity: 1; }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 540px) { .masonry { columns: 2; column-gap: 10px; } .masonry figure { margin-bottom: 10px; } }

/* ---------- forms / job ticket ---------- */

.ticket {
  background: linear-gradient(180deg, var(--soot) 0%, var(--char-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
}
.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px dashed var(--ash);
  padding-bottom: 18px;
  margin-bottom: 26px;
}
.ticket-head h2 { margin: 0; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.ticket-no {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: var(--faint);
  text-transform: uppercase;
}

fieldset { border: none; margin: 0 0 28px; padding: 0; }
legend {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 14px;
  padding: 0;
}

label { display: block; font-weight: 500; font-size: 0.9rem; margin-bottom: 7px; color: var(--bone); }
label .opt { color: var(--faint); font-weight: 400; font-size: 0.8rem; }

input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  background: var(--char);
  border: 1px solid var(--ash);
  border-radius: var(--radius);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 12px 15px;
  transition: border-color 0.18s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(215, 38, 61, 0.15);
}
textarea { min-height: 120px; resize: vertical; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--smoke) 50%), linear-gradient(135deg, var(--smoke) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.form-field { margin-bottom: 18px; }

/* option pills */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills label {
  margin: 0;
  cursor: pointer;
  border: 1px solid var(--ash);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--smoke);
  transition: all 0.15s ease;
}
.pills input:checked + label {
  border-color: var(--crimson);
  color: var(--bone);
  background: rgba(215, 38, 61, 0.1);
  box-shadow: 0 0 0 1px var(--crimson) inset;
}
.pills input:focus-visible + label { outline: 2px solid var(--crimson); outline-offset: 2px; }

/* dropzone — "the board" */
.dropzone {
  border: 2px dashed var(--bamboo-deep);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(217, 184, 138, 0.05), transparent),
    var(--char);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.dropzone:hover, .dropzone.drag {
  border-color: var(--crimson);
  background: rgba(215, 38, 61, 0.05);
}
.dropzone p { margin: 0 auto; }
.dropzone .dz-title { font-weight: 600; color: var(--bamboo); font-size: 1rem; }
.dropzone .dz-sub { color: var(--faint); font-size: 0.82rem; margin-top: 6px; }
.dz-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.dz-previews:empty { margin: 0; }
.dz-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ash);
  aspect-ratio: 1;
  background: var(--soot-2);
}
.dz-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dz-thumb button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(14, 11, 9, 0.85);
  color: var(--bone);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.dz-thumb button:hover { background: var(--blood); }

.form-note {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--faint);
  letter-spacing: 0.04em;
}

.alert {
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.92rem;
  margin: 18px 0;
  border: 1px solid;
}
.alert-err { border-color: rgba(228, 87, 46, 0.5); background: rgba(228, 87, 46, 0.08); color: #f0a68e; }
.alert-ok { border-color: rgba(143, 181, 115, 0.4); background: rgba(143, 181, 115, 0.08); color: var(--ok); }

/* success panel */
.receipt {
  text-align: center;
  padding: clamp(36px, 6vw, 64px) clamp(20px, 4vw, 48px);
}
.receipt .ref {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--crimson);
  display: inline-block;
  border: 1px dashed var(--bamboo-deep);
  border-radius: var(--radius);
  padding: 12px 26px;
  margin: 18px 0 8px;
}

/* ---------- steps ---------- */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 18px; counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps li {
  counter-increment: step;
  background: var(--soot);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
}
.steps li::before {
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--crimson);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 12px;
}
.steps b { display: block; margin-bottom: 6px; font-size: 1.02rem; }
.steps span { color: var(--smoke); font-size: 0.9rem; }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line-soft);
  background: var(--char-2);
  padding-block: clamp(44px, 6vw, 64px) 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 34px;
  margin-bottom: 44px;
}
.foot-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 14px;
}
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot-grid a { color: var(--smoke); font-size: 0.92rem; }
.foot-grid a:hover { color: var(--bone); }
.foot-brand p { color: var(--smoke); font-size: 0.9rem; max-width: 34ch; }
.foot-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--faint);
}
.foot-bottom a { color: var(--bamboo); }

/* ---------- reveal on scroll (JS adds .js to <html>) ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- page header (inner pages) ---------- */

.page-head {
  padding-block: clamp(56px, 8vw, 96px) clamp(30px, 5vw, 56px);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/bg.jpg") right -80px top -60px / 560px no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.page-head .wrap { position: relative; }

/* ---------- admin ---------- */

.order-card {
  background: var(--soot);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 18px;
}
.order-card header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed var(--ash);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.order-card .thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.order-card .thumbs a {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ash);
  display: block;
}
.order-card .thumbs img { width: 100%; height: 100%; object-fit: cover; }
.kv { display: grid; grid-template-columns: 110px 1fr; gap: 6px 14px; font-size: 0.92rem; }
.kv dt { color: var(--faint); font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; padding-top: 3px; }
.kv dd { margin: 0; overflow-wrap: anywhere; }

/* ---------- misc ---------- */

.hr-burn {
  border: none;
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--ash) 20%, var(--ash) 80%, transparent);
}

.center { text-align: center; }
.center p, .center .lede { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
