/* ==========================================================================
   Bulk Peptide Works — design system
   Industrial / supply-chain register: graphite, warm stone, industrial orange.
   Mobile-first. No external fonts, no external requests.
   ========================================================================== */

:root {
  /* Brand */
  --graphite: #151a20;
  --graphite-2: #1e252d;
  --graphite-3: #2b333c;
  --orange: #e56b2f;
  --orange-d: #c8551d;
  --orange-l: #f08a55;
  --stone: #f4f1eb;
  --stone-2: #eae5db;
  --stone-3: #ddd6c8;
  --steel: #66717e;
  --steel-l: #8c95a0;

  /* Semantic */
  --bg: var(--stone);
  --bg-alt: #fffefb;
  --bg-band: var(--stone-2);
  --ink: var(--graphite);
  --ink-2: #3d454f;
  --ink-3: var(--steel);
  --line: #d5cec2;
  --line-strong: #bdb5a6;
  --accent: var(--orange-d);
  --accent-ink: #fff;
  --ok: #2f6b4f;
  --ok-bg: #e4efe7;
  --warn: #8a5a12;
  --warn-bg: #f6ecd8;

  /* Type */
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  /* Space & shape */
  --wrap: 1180px;
  --wrap-narrow: 780px;
  --r: 4px;
  --r-lg: 8px;
  --pad: clamp(1rem, 4vw, 2rem);
  --band-y: clamp(2.75rem, 7vw, 5.25rem);
  --shadow: 0 1px 2px rgba(21, 26, 32, 0.06), 0 8px 24px -12px rgba(21, 26, 32, 0.18);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #12161b;
    --bg-alt: #191f26;
    --bg-band: #1b2229;
    --ink: #eef0f2;
    --ink-2: #c3c9d0;
    --ink-3: #98a1ab;
    --line: #2d353e;
    --line-strong: #3d4650;
    --accent: var(--orange);
    --accent-ink: #14181d;
    --ok: #8ed3ac;
    --ok-bg: #1d2c25;
    --warn: #e6bd77;
    --warn-bg: #2c2519;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 10px 28px -14px rgba(0, 0, 0, 0.7);
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 clamp(1rem, 0.97rem + 0.15vw, 1.0625rem) / 1.65 var(--sans);
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  text-underline-offset: 0.18em;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  line-height: 1.14;
  letter-spacing: -0.018em;
  font-weight: 640;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.35rem + 3.1vw, 3.35rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.15rem); }
h3 { font-size: clamp(1.09rem, 1.02rem + 0.35vw, 1.28rem); }
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
}
a:hover { text-decoration-thickness: 2px; }

strong { font-weight: 650; }
code {
  font: 500 0.875em/1.4 var(--mono);
  background: var(--bg-band);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.1em 0.35em;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

.sr,
.skip:not(:focus) {
  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:focus {
  position: absolute; z-index: 100; left: 0.75rem; top: 0.75rem;
  background: var(--graphite); color: #fff;
  padding: 0.6rem 1rem; border-radius: var(--r);
}

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.band { padding-block: var(--band-y); border-top: 1px solid var(--line); }
.band--tight { padding-block: clamp(1.5rem, 4vw, 2.25rem); }
.band--stone { background: var(--bg-band); }
.band + .band--stone,
.band--stone + .band { border-top-color: var(--line); }

.kicker {
  margin: 0 0 0.85rem;
  font: 600 0.7rem/1.2 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.lead {
  font-size: clamp(1.06rem, 1rem + 0.5vw, 1.27rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 62ch;
}
.sectionlead {
  font-size: clamp(1rem, 0.98rem + 0.25vw, 1.1rem);
  color: var(--ink-2);
  max-width: 68ch;
  margin-bottom: 2rem;
}
.microcopy {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 74ch;
  margin-top: 1.25rem;
}

/* ---------- compliance strip + header ---------- */

.topstrip {
  margin: 0;
  background: var(--graphite);
  color: #cfd5db;
  font: 500 0.72rem/1.3 var(--mono);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.45rem var(--pad);
}
.topstrip strong { color: #fff; font-weight: 650; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 64px;
  flex-wrap: wrap;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  margin-right: auto;
}
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand__text b { font-weight: 680; }

.navtoggle {
  margin-left: auto;
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  color: var(--ink);
  cursor: pointer;
}
.navtoggle svg { width: 22px; height: 22px; }

.nav__links {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.15rem;
  padding-block: 0.5rem 0.75rem;
  border-top: 1px solid var(--line);
}
.nav__links[data-open="true"] { display: flex; }
.nav__links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 520;
  padding: 0.6rem 0.25rem;
  border-radius: var(--r);
}
.nav__links a:hover { color: var(--ink); text-decoration: underline; }

/* Scoped to .nav so these beat the later `.btn { display: inline-flex }` rule. */
.nav .nav__cta { display: none; }
.nav .nav__cta-mobile { margin-top: 0.5rem; text-decoration: none; }

@media (min-width: 62rem) {
  .navtoggle { display: none; }
  .nav { flex-wrap: nowrap; }
  .nav .nav__cta-mobile { display: none; }
  .nav .nav__cta { display: inline-flex; }
  .nav__links {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 1.1rem;
    padding: 0;
    border: 0;
  }
  .nav__links a { padding: 0.35rem 0; font-size: 0.9rem; }
  .nav .nav__cta { margin-left: 1.1rem; }
}

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

.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--r);
  font: 600 0.925rem/1.2 var(--sans);
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 0.55rem 0.9rem; font-size: 0.85rem; }
.btn--primary {
  background: var(--orange-d);
  border-color: var(--orange-d);
  color: #fff;
}
.btn--primary:hover { background: var(--orange); border-color: var(--orange); }
.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-invert { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.btn--ghost-invert:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.btnrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.75rem;
}

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

.hero {
  padding-block: clamp(2.5rem, 7vw, 5rem);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-band) 70%, transparent), transparent 70%),
    var(--bg);
}
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
.hero__copy { max-width: 70ch; }
.hero h1 + .lead { margin-top: 1.1rem; }

.hero__panel {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange-d);
  border-radius: var(--r-lg);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  box-shadow: var(--shadow);
  align-self: start;
}
.facets { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.95rem; }
.facets li { display: grid; gap: 0.2rem; }
.facet__k {
  font: 600 0.66rem/1.2 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.facet__v { font-size: 0.925rem; line-height: 1.5; color: var(--ink); }

.hero__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-band);
  box-shadow: var(--shadow);
}
.hero__media img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.hero__media figcaption {
  padding: 0.55rem 0.75rem;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font: 500 0.72rem/1.4 var(--mono);
}
.hero__panel--strip { margin-top: clamp(1.25rem, 3vw, 2rem); border-left-width: 1px; border-top: 3px solid var(--orange-d); }
.hero__panel--strip .facets { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.5rem; }

@media (min-width: 60rem) {
  .hero__grid { grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr); align-items: start; }
  .hero__grid--media { grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr); align-items: center; }
  .hero__panel--strip .facets { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

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

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.card {
  background: var(--bg-alt);
  padding: clamp(1.15rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
}
.card__label {
  font: 600 0.68rem/1 var(--mono);
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.card h3 { margin-bottom: 0.45rem; }
.card p { color: var(--ink-2); font-size: 0.945rem; }
.card__link {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.card__link::after { content: " →"; }
.card__link:hover { text-decoration: underline; }

@media (min-width: 44rem) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 68rem) {
  .cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  /* An orphan card on its own row (e.g. 5 items in 4 columns) spans the row
     instead of leaving dead cells. */
  .cards--4 .card:nth-child(4n + 1):last-child,
  .cards--3 .card:nth-child(3n + 1):last-child { grid-column: 1 / -1; }
}
@media (min-width: 44rem) and (max-width: 67.99rem) {
  .cards .card:nth-child(odd):last-child { grid-column: 1 / -1; }
}

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

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: s; }
.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0 1.1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.step:first-child { border-top: 0; padding-top: 0; }
.step:last-child { padding-bottom: 0; }
.step__n {
  font: 650 0.9rem/1 var(--mono);
  letter-spacing: 0.06em;
  color: var(--accent);
  padding-top: 0.3rem;
  min-width: 2.1rem;
}
.step__body h3 { margin-bottom: 0.35rem; }
.step__body p { color: var(--ink-2); font-size: 0.965rem; }
.step__detail {
  margin-top: 0.6rem;
  font-size: 0.875rem;
  color: var(--ink-3);
  border-left: 2px solid var(--line-strong);
  padding-left: 0.8rem;
}

/* ---------- split ---------- */

.split { display: grid; gap: clamp(1.75rem, 5vw, 3rem); align-items: center; }
.split__copy { max-width: 62ch; }
@media (min-width: 60rem) {
  .split { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
  .split--reverse .split__copy { order: 2; }
}

.ticks { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 0.65rem; }
.ticks li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.945rem;
  color: var(--ink-2);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.52em;
  width: 0.7rem; height: 0.7rem;
  border-left: 2px solid var(--orange-d);
  border-bottom: 2px solid var(--orange-d);
  transform: rotate(-45deg);
}

/* ---------- media slots ---------- */

.media {
  margin: 0;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.media img, .media video { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; background: var(--bg-band); }
.media figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.media--empty {
  border-style: dashed;
  border-color: var(--line-strong);
  background: repeating-linear-gradient(
    135deg,
    transparent 0 10px,
    color-mix(in srgb, var(--line) 45%, transparent) 10px 11px
  ), var(--bg-alt);
}
.media__schematic {
  width: 100%;
  aspect-ratio: 3 / 2;
  color: var(--steel);
  opacity: 0.75;
  padding: 0.5rem;
}
.media__tag {
  display: inline-block;
  font: 650 0.63rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--steel);
  padding: 0.28em 0.5em;
  border-radius: 3px;
  margin-right: 0.4rem;
  vertical-align: 1px;
}
.mediagrid { display: grid; gap: 1rem; }
@media (min-width: 48rem) { .mediagrid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); } }

/* ---------- tables ---------- */

.tablewrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-alt);
  -webkit-overflow-scrolling: touch;
}
table.grid {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
  min-width: 40rem;
}
table.grid caption { text-align: left; padding: 0.75rem; color: var(--ink-3); }
table.grid th, table.grid td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.grid thead th {
  font: 650 0.68rem/1.3 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--bg-band);
  white-space: nowrap;
  position: sticky;
  top: 0;
}
table.grid tbody th { font-weight: 620; color: var(--ink); }
table.grid td { color: var(--ink-2); }
table.grid tbody tr:last-child th,
table.grid tbody tr:last-child td { border-bottom: 0; }
table.grid--cat { min-width: 46rem; }
.cat-act { white-space: nowrap; }
.linkish { font-weight: 600; font-size: 0.875rem; text-decoration: none; }
.linkish:hover { text-decoration: underline; }

.pill {
  display: inline-block;
  font: 600 0.72rem/1.35 var(--sans);
  padding: 0.22em 0.6em;
  border-radius: 999px;
  white-space: nowrap;
}
.pill--ok { background: var(--ok-bg); color: var(--ok); }
.pill--warn { background: var(--warn-bg); color: var(--warn); }

/* ---------- catalogue ---------- */

.catbar {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-bottom: 2rem;
}
@media (min-width: 46rem) {
  .catbar { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr); align-items: end; }
  .catbar__count { grid-column: 1 / -1; }
}
.catbar__count { margin: 0; font: 500 0.82rem/1.4 var(--mono); color: var(--ink-3); }

.catlist { display: grid; gap: 2.5rem; }
.catgroup[hidden] { display: none; }
.catgroup h3 { margin-bottom: 0.3rem; }
.catgroup__blurb { color: var(--ink-2); font-size: 0.925rem; max-width: 72ch; margin-bottom: 0; }

/* per-vial strength chips */
.cat-specs { line-height: 1.9; }
.spec {
  display: inline-block;
  font: 500 0.78rem/1.3 var(--mono);
  padding: 0.12em 0.42em;
  margin-right: 0.2em;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ink-2);
  white-space: nowrap;
}

.cat-row[hidden] { display: none; }
.catempty {
  margin: 2rem 0 0;
  padding: 1.1rem 1.25rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  color: var(--ink-2);
}

/* ---------- notices ---------- */

.notice {
  border: 1px solid var(--line);
  border-left: 3px solid var(--steel);
  border-radius: var(--r);
  background: var(--bg-alt);
  padding: clamp(1rem, 3vw, 1.4rem);
  font-size: 0.945rem;
  color: var(--ink-2);
  max-width: 90ch;
}
.notice + .notice { margin-top: 1rem; }
.notice__t { font-weight: 650; color: var(--ink); margin-bottom: 0.4rem; }
.notice--warn { border-left-color: var(--orange-d); background: var(--warn-bg); }
.notice--warn .notice__t { color: var(--ink); }
.band .notice { margin-top: 2rem; }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2.5rem 1.1rem 0;
  position: relative;
  font-weight: 620;
  font-size: 1.02rem;
  line-height: 1.4;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 0.35rem; top: 1.45rem;
  width: 0.62rem; height: 0.62rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg); top: 1.6rem; }
.faq__a { padding: 0 0 1.25rem; color: var(--ink-2); max-width: 72ch; }

/* ---------- prose (legal pages) ---------- */

.prose h2 { margin-top: 2.5rem; font-size: clamp(1.2rem, 1.1rem + 0.6vw, 1.5rem); }
.prose h2:first-of-type { margin-top: 1.75rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { padding-left: 1.15rem; display: grid; gap: 0.45rem; margin: 0 0 1em; }

/* ---------- CTA band ---------- */

.band--cta {
  background: var(--graphite);
  color: #f2f4f6;
  border-top: 0;
}
.band--cta h2 { color: #fff; }
.band--cta p { color: #c2cad2; max-width: 60ch; }
.ctabox { display: grid; gap: 1.5rem; align-items: center; }
.ctabox .btnrow { margin-top: 0; }
@media (min-width: 58rem) {
  .ctabox { grid-template-columns: minmax(0, 1.5fr) auto; }
}

/* ---------- contact channels ---------- */

.chanlist { display: grid; gap: 0.75rem; }
@media (min-width: 40rem) { .chanlist { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }
.chan {
  display: grid;
  gap: 0.15rem;
  text-decoration: none;
  color: inherit;
}
.chan--block {
  padding: 0.9rem 1.05rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.chan__k {
  font: 600 0.66rem/1.2 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.chan__v { font-weight: 600; font-size: 0.95rem; }
.chan--pending { border-style: dashed; border-color: var(--line-strong); }
.chan--pending .chan__v { font-weight: 500; color: var(--ink-3); font-style: italic; }
.chanlist--compact .chan--block { padding: 0.7rem 0.85rem; }

/* ---------- forms ---------- */

.field { display: grid; gap: 0.35rem; }
.field label { font-weight: 600; font-size: 0.875rem; }
.req { color: var(--orange-d); }
.opt { font-weight: 400; color: var(--ink-3); font-size: 0.8rem; }
.hint { margin: 0; font-size: 0.8rem; color: var(--ink-3); }

input[type="text"],
input[type="email"],
input[type="search"],
select,
textarea {
  font: inherit;
  font-size: 0.95rem;
  width: 100%;
  padding: 0.62rem 0.7rem;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  appearance: none;
}
textarea { resize: vertical; min-height: 6rem; }
select[multiple] { padding: 0.35rem; }
input::placeholder, textarea::placeholder { color: var(--ink-3); opacity: 0.85; }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: var(--orange-d);
  border-width: 2px;
}
.err { margin: 0; font-size: 0.82rem; font-weight: 600; color: var(--orange-d); }

.grid2 { display: grid; gap: 1.1rem; }
@media (min-width: 44rem) { .grid2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.reqform { display: grid; gap: 1.4rem; margin-top: 2rem; }
.fs {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1rem, 3vw, 1.5rem);
  margin: 0;
  display: grid;
  gap: 1.1rem;
  background: var(--bg-alt);
}
.fs legend {
  font: 650 0.7rem/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-inline: 0.5rem;
}
.field--check {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.6rem;
}
.field--check input { width: 1.1rem; height: 1.1rem; margin-top: 0.25rem; accent-color: var(--orange-d); }
.field--check label { font-weight: 500; font-size: 0.9rem; line-height: 1.5; }
.field--check .err { grid-column: 1 / -1; }

.summary {
  margin-top: 2rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange-d);
  border-radius: var(--r-lg);
  background: var(--bg-alt);
}
.summary pre {
  font: 500 0.85rem/1.6 var(--mono);
  white-space: pre-wrap;
  word-break: break-word;
  background: var(--bg-band);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1rem;
  margin: 1rem 0 0;
  max-height: 26rem;
  overflow: auto;
}

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

.site-footer {
  background: var(--graphite);
  color: #cbd2d9;
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  font-size: 0.925rem;
}
.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 52rem) {
  .footer__grid { grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 2.5rem; }
}
.fbrand .mark { width: 36px; height: 36px; }
.fbrand__t { margin: 0.8rem 0 0.35rem; color: #fff; font-size: 1.02rem; }
.fbrand__d { color: #9aa4ae; max-width: 34ch; font-size: 0.875rem; }
.fbrand .chanlist { margin-top: 1.1rem; grid-template-columns: 1fr; }
.fbrand .chan--block {
  background: var(--graphite-2);
  border-color: var(--graphite-3);
}
.fbrand .chan__k { color: #8b949e; }
.fbrand .chan__v { color: #e6eaee; }
.fbrand .chan--pending .chan__v { color: #9aa4ae; }

.fcol__h {
  font: 650 0.68rem/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b949e;
  margin: 0 0 0.9rem;
}
.fcol ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.fcol a { color: #dbe1e7; text-decoration: none; font-size: 0.9rem; }
.fcol a:hover { color: #fff; text-decoration: underline; }

.footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--graphite-3);
}
.ruo { font-size: 0.85rem; color: #b6bfc8; max-width: 90ch; }
.ruo strong { color: var(--orange-l); }
.footer__legal .microcopy { color: #8b949e; margin-top: 0.5rem; }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: #8b949e;
}
.footer__base p { margin: 0; }
.localeswitch { display: flex; gap: 0.9rem; }
.localeswitch a { color: #dbe1e7; text-decoration: none; }
.localeswitch a[aria-current="true"] { color: var(--orange-l); font-weight: 600; }

/* ---------- print ---------- */

@media print {
  .site-header, .topstrip, .band--cta, .navtoggle, .catbar { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .band { padding-block: 1rem; border: 0; }
  a { text-decoration: underline; color: #000; }
}

/* ==========================================================================
   Catalogue product cards + quote cart
   ========================================================================== */

.pgroup { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.pgroup[hidden] { display: none; }
.pgroup__h { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem); margin-bottom: 0.35rem; }
.pgroup__blurb { color: var(--ink-2); font-size: 0.925rem; max-width: 74ch; margin-bottom: 1.4rem; }

.pgrid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
@media (min-width: 34rem) { .pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 56rem) { .pgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 76rem) { .pgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.pcard {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.pcard[hidden] { display: none; }
.pcard:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.pcard__shot { display: block; background: var(--bg-band); line-height: 0; }
.pcard__shot img { width: 100%; height: auto; aspect-ratio: 404 / 622; object-fit: cover; }
.pcard__body { padding: 0.9rem 1rem 1.1rem; display: flex; flex-direction: column; flex: 1; gap: 0.5rem; }
.pcard__body h3 { font-size: 1rem; margin: 0; line-height: 1.28; }
.pcard__specs { margin: 0; line-height: 1.95; }
.pcard__meta { margin: 0; font: 500 0.78rem/1.4 var(--mono); color: var(--ink-3); }
.pcard__stock { margin: 0; }
.pcard__add { margin-top: auto; width: 100%; }

/* header cart button */
.cartbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  margin-left: 0.6rem;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  color: var(--ink);
  font: 600 0.85rem/1 var(--sans);
  cursor: pointer;
}
.cartbtn:hover { border-color: var(--ink); }
.cartbtn svg { width: 19px; height: 19px; flex: none; }
.cartbtn__t { display: none; }
@media (min-width: 62rem) { .cartbtn__t { display: inline; } }
.cartbtn__n {
  min-width: 1.35rem;
  padding: 0.05rem 0.3rem;
  border-radius: 999px;
  background: var(--orange-d);
  color: #fff;
  font: 700 0.72rem/1.5 var(--mono);
  text-align: center;
}
.cartbtn__n[data-empty="true"] { background: var(--steel); }

body.q-locked { overflow: hidden; }

/* drawer */
.qdrawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(26rem, 100%);
  background: var(--bg);
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 44px -24px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  z-index: 60;
  transform: translateX(101%);
  transition: transform 0.22s ease;
}
.qdrawer[data-open="true"] { transform: none; }
@media (prefers-reduced-motion: reduce) { .qdrawer { transition: none; } }
.qdrawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.1rem; border-bottom: 1px solid var(--line);
}
.qdrawer__head h2 { margin: 0; font-size: 1.05rem; }
.qdrawer__x {
  background: none; border: 0; font-size: 1.7rem; line-height: 1;
  color: var(--ink-3); cursor: pointer; padding: 0 0.2rem;
}
.qdrawer__body { flex: 1; overflow-y: auto; padding: 1.1rem; }
.qdrawer__foot { border-top: 1px solid var(--line); padding: 1rem 1.1rem; background: var(--bg-alt); }
.qdrawer__foot:empty { display: none; }

.qline { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.qline:first-child { padding-top: 0; }
.qline__top { display: flex; justify-content: space-between; gap: 0.6rem; align-items: start; }
.qline__top b { font-size: 0.94rem; line-height: 1.3; }
.qline__x { background: none; border: 0; color: var(--orange-d); font: 600 0.8rem var(--sans); cursor: pointer; flex: none; }
.qline__x:hover { text-decoration: underline; }
.qline__spec { display: block; font: 500 0.8rem var(--mono); color: var(--ink-3); margin-top: 0.2rem; }
.qline__qty { display: flex; align-items: center; gap: 0.45rem; margin-top: 0.6rem; font-size: 0.85rem; color: var(--ink-3); }
.qline__qty input { width: 4.6rem; padding: 0.35rem 0.45rem; }
.qline__qty b { color: var(--ink-2); font-size: 0.82rem; }

.qtot { margin: 1rem 0 0; font: 500 0.9rem/1.5 var(--mono); color: var(--ink-2); }
.qempty { display: grid; gap: 0.6rem; justify-items: start; padding: 1.2rem 0; }
.qempty b { font-size: 1rem; }
.qempty span { color: var(--ink-2); font-size: 0.92rem; }
.qempty .btn { margin-top: 0.4rem; }

/* spec chooser modal */
.qmodal {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(21, 26, 32, 0.55);
  display: grid; place-items: center; padding: 1rem;
}
.qmodal__panel {
  width: min(30rem, 100%);
  max-height: 90vh; overflow-y: auto;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  box-shadow: var(--shadow);
}
.qmodal__t { margin: 0 0 0.35rem; font-size: 1.1rem; }
.qmodal__sub { color: var(--ink-2); font-size: 0.9rem; }
.qmodal__fs { border: 0; padding: 0; margin: 1.1rem 0 0; }
.qmodal__fs legend {
  padding: 0; font: 650 0.68rem/1 var(--mono);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.6rem;
}
/* one row per strength: tick it, then set its own box count */
.qrows { display: grid; gap: 0.4rem; }
.qrow {
  display: grid;
  grid-template-columns: auto minmax(3.6rem, auto) 1fr;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
}
.qrow[data-on="true"] { border-color: var(--orange-d); background: var(--bg-band); }
.qrow__ck { width: 1.05rem; height: 1.05rem; accent-color: var(--orange-d); margin: 0; }
.qrow__lb { font: 600 0.86rem var(--mono); cursor: pointer; }
.qrow__qty { display: flex; align-items: center; gap: 0.4rem; justify-content: flex-end; }
.qrow__nb { width: 4.2rem; padding: 0.28rem 0.4rem; font-size: 0.85rem; }
.qrow__nb:disabled { opacity: 0.4; }
.qrow__qty b { font-size: 0.78rem; color: var(--ink-2); font-weight: 600; }
.qrow__v { font: 500 0.75rem var(--mono); color: var(--ink-3); min-width: 4.6rem; text-align: right; }
@media (max-width: 27rem) {
  .qrow { grid-template-columns: auto 1fr; }
  .qrow__qty { grid-column: 1 / -1; justify-content: flex-start; }
}

.qmodal__bulkpick { display: flex; gap: 0.9rem; margin-top: 0.7rem; }
.qmodal__bulkpick button {
  background: none; border: 0; padding: 0;
  color: var(--accent); font: 600 0.8rem var(--sans); cursor: pointer;
}
.qmodal__bulkpick button:hover { text-decoration: underline; }
.qmodal__total {
  margin-top: 1rem; padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  font: 600 0.86rem var(--mono); color: var(--ink);
}
.qmodal__note { margin-top: 0.7rem; font-size: 0.82rem; color: var(--ink-3); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* toast */
.qtoast {
  position: fixed; left: 50%; bottom: 1.1rem; z-index: 55;
  transform: translate(-50%, 140%);
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--graphite); color: #eef1f3;
  border-radius: var(--r-lg); padding: 0.7rem 0.85rem 0.7rem 1rem;
  box-shadow: 0 12px 32px -14px rgba(0, 0, 0, 0.6);
  font-size: 0.88rem; max-width: calc(100% - 2rem);
  transition: transform 0.2s ease;
}
.qtoast[data-show="true"] { transform: translate(-50%, 0); }
.qtoast span { color: #9aa4ae; font: 500 0.78rem var(--mono); }
.qtoast__btn {
  background: var(--orange-d); color: #fff; border: 0;
  border-radius: var(--r); padding: 0.42rem 0.7rem;
  font: 600 0.82rem var(--sans); cursor: pointer; flex: none;
}

/* Persistent WhatsApp route on every page. */
.wafab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.5rem;
  padding: 0 1rem 0 0.78rem;
  border-radius: 999px;
  background: #1fa855;
  color: #fff;
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.55);
  font: 700 0.9rem/1 var(--sans);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.wafab:hover { background: #178c46; color: #fff; transform: translateY(-2px); }
.wafab:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.wafab svg { width: 2rem; height: 2rem; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.wafab svg path + path { fill: currentColor; stroke: none; }
@media (max-width: 34rem) {
  .wafab { width: 3.5rem; padding: 0; justify-content: center; }
  .wafab span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
}
@media (prefers-reduced-motion: reduce) { .wafab { transition: none; } }
@media print { .wafab { display: none; } }

/* /quote page */
.qcart { margin-bottom: 1rem; }
.qsendtop {
  display: flex;
  align-items: center;
  gap: 0.8rem 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.2rem;
  padding: 1rem;
  border: 1px solid #88c79f;
  border-radius: var(--r-lg);
  background: #eef8f1;
}
.qsendtop .btn--wa { flex: 0 0 auto; }
.qsendtop .microcopy { margin: 0; flex: 1 1 18rem; }
@media (max-width: 34rem) {
  .qsendtop { align-items: stretch; }
  .qsendtop .btn--wa { width: 100%; }
}
.qsendtop + .qctx { margin-top: 0; }

.qcart .qline:first-child { padding-top: 0.9rem; border-top: 1px solid var(--line); }
.qctx {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-alt); padding: 0 clamp(1rem, 3vw, 1.4rem);
  margin-bottom: 2rem;
}
.qctx summary {
  cursor: pointer; padding: 1rem 0; font-weight: 620;
  display: flex; gap: 0.5rem; align-items: baseline; flex-wrap: wrap;
}
.qctx[open] summary { border-bottom: 1px solid var(--line); margin-bottom: 1.2rem; }
.qctx > .grid2, .qctx > .field { margin-bottom: 1.1rem; }
.qsend h2 { font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem); }
.qsend__ph { font-size: 0.95rem; margin-top: 2rem; }
.btn--wa { background: #1f8a4c; border-color: #1f8a4c; }
.btn--wa:hover { background: #23a05a; border-color: #23a05a; }
.btn--wa svg { width: 18px; height: 18px; }
.btn[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }
.qpreview {
  font: 500 0.82rem/1.6 var(--mono);
  white-space: pre-wrap; word-break: break-word;
  background: var(--bg-band); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1rem; margin: 0.6rem 0 0;
  max-height: 24rem; overflow: auto;
}

/* Order-mode selector (quote page) and modal mode toggle. */
.qmodesel {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1rem 1.1rem; margin-bottom: 1.4rem;
  background: var(--bg-alt);
}
.qmodesel__row { display: flex; flex-wrap: wrap; gap: 0.4rem 0.8rem; align-items: baseline; }
.qmodesel__k {
  font: 620 0.7rem var(--mono); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
}
.qmodesel__v { color: var(--ink-2); font-size: 0.92rem; }
.qmodesel__v--warn { color: var(--orange-d); font-weight: 620; }
.qmodesel__buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.7rem; }
.qmodesel__rule { color: var(--ink-3); font-size: 0.82rem; margin: 0.6rem 0 0; }

.qmodal__mode {
  border: 0; padding: 0; margin: 0 0 0.8rem;
  display: grid; gap: 0.35rem;
}
.qmodal__mode legend {
  font: 620 0.7rem var(--mono); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); padding: 0 0 0.3rem;
}
.qmodal__moderow {
  display: flex; gap: 0.55rem; align-items: baseline;
  padding: 0.45rem 0.6rem; border: 1px solid var(--line); border-radius: var(--r);
  cursor: pointer; font-size: 0.9rem;
}
.qmodal__moderow input { margin-top: 0.2rem; flex: none; }
.qmodal__moderow:has(input:checked) { border-color: var(--orange-d); background: var(--bg); }

.qline--bad { background: color-mix(in srgb, var(--orange-d) 6%, transparent); border-radius: var(--r); }
.qline__err {
  color: var(--orange-d); font-size: 0.82rem;
  margin: 0.4rem 0 0; padding-left: 0.4rem;
}
.qtot__warn {
  margin: 0.6rem 0 0; color: var(--orange-d);
  font-size: 0.88rem; font-weight: 620;
}

/* Enquiry-form order mode. */
.fs--mode { margin-bottom: 1.2rem; }
.fs--mode legend { color: var(--ink-3); }
.modechoice { display: grid; gap: 0.5rem; }
.modechoice__row {
  display: flex; gap: 0.55rem; align-items: baseline;
  padding: 0.55rem 0.7rem; border: 1px solid var(--line); border-radius: var(--r);
  cursor: pointer; font-size: 0.92rem;
}
.modechoice__row input { margin-top: 0.2rem; flex: none; }
.modechoice__row:has(input:checked) { border-color: var(--orange-d); background: var(--bg-alt); }
.modechoice__row[aria-invalid="true"], .modechoice__row input[aria-invalid="true"] { border-color: var(--orange-d); }

/* ---------- product detail page ---------- */

.phero {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-band) 70%, transparent), transparent 70%), var(--bg);
}
.phero__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (min-width: 58rem) { .phero__grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); } }
.phero__shot {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.phero__shot img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.phero__copy h1 { font-size: clamp(1.7rem, 1.25rem + 2.1vw, 2.6rem); }
.phero__copy .lead { margin-top: 0.9rem; }

.pspec {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.5rem 1.1rem;
  margin: 1.6rem 0 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.pspec dt {
  font: 600 0.66rem/1.5 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 0.15rem;
}
.pspec dd { margin: 0; font-size: 0.93rem; }
.pspec__chips { line-height: 2; }
.pcard__body h3 a { color: inherit; text-decoration-color: var(--line-strong); }
.pcard__body h3 a:hover { color: var(--accent); }

/* ---------- hero qualifier strip ---------- */
/* Three unmissable facts directly under the H1. This is the five-second read:
   who the site is for, and who it is not for. */
.quals {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  margin: 1.1rem 0 0;
  padding: 0;
}
.quals li {
  font: 650 0.74rem/1.35 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4em 0.7em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-2);
  background: var(--bg-alt);
  white-space: nowrap;
}
.quals li:first-child {
  border-color: var(--orange-d);
  color: var(--accent);
  background: color-mix(in srgb, var(--orange) 9%, var(--bg-alt));
}
.quals li:last-child { color: var(--ink-3); }
.hero .quals + .lead { margin-top: 1.1rem; }

/* ==========================================================================
   Buyer protections — the conversion spine
   ========================================================================== */

.prots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 56rem) { .prots { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.prot {
  background: var(--bg-alt);
  padding: clamp(1.15rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--orange-d);
}
.prot__n {
  font: 650 0.7rem/1 var(--mono);
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.prot h3 { margin-bottom: 0.5rem; font-size: 1.06rem; }
.prot h3 a { color: inherit; text-decoration: none; }
.prot h3 a:hover { color: var(--accent); text-decoration: underline; }
.prot p { color: var(--ink-2); font-size: 0.94rem; }
.prot__link {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}
.prot__link::after { content: " →"; }
.prot__link:hover { text-decoration: underline; }

/* the binding sentence, quoted */
.promise {
  margin: 0 0 1.5rem;
  padding: clamp(1rem, 3vw, 1.4rem) clamp(1.1rem, 3vw, 1.6rem);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange-d);
  border-radius: var(--r);
  max-width: 78ch;
}
.promise p {
  font-size: clamp(1.02rem, 0.98rem + 0.4vw, 1.16rem);
  line-height: 1.55;
  font-weight: 560;
  color: var(--ink);
}

.protgrid { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); margin-top: 2rem; }
@media (min-width: 52rem) { .protgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.protcol h3 { font-size: 1rem; margin-bottom: 0.9rem; }
.protcol--limits h3 { color: var(--ink-2); }

.crosses { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.crosses li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.93rem;
  color: var(--ink-2);
}
.crosses li::before,
.crosses li::after {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.66em;
  width: 0.78rem;
  height: 2px;
  background: var(--steel);
  border-radius: 1px;
}
.crosses li::before { transform: rotate(45deg); }
.crosses li::after { transform: rotate(-45deg); }

/* compact reminder beside a CTA */
.pstrip {
  display: grid;
  gap: 0.8rem 1.4rem;
  align-items: center;
  padding: clamp(0.9rem, 2.5vw, 1.15rem) clamp(1rem, 3vw, 1.4rem);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange-d);
  border-radius: var(--r-lg);
}
@media (min-width: 62rem) { .pstrip { grid-template-columns: auto minmax(0, 1fr) auto; } }
.pstrip__t {
  margin: 0;
  font: 650 0.7rem/1.3 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
}
.pstrip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.35rem;
}
.pstrip__list li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.pstrip__n {
  font: 650 0.68rem/1.55 var(--mono);
  color: var(--accent);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  min-width: 1.25rem;
  text-align: center;
  flex: none;
}
.pstrip__more { font-weight: 600; font-size: 0.86rem; white-space: nowrap; }

/* ---------- pre-submit protections + no-JS WhatsApp route ---------- */

.presubmit {
  margin: 2rem 0 1.25rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange-d);
  border-radius: var(--r-lg);
}
.presubmit__t {
  margin: 0 0 0.8rem;
  font: 650 0.7rem/1.3 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
}
.presubmit__list { margin: 0; padding-left: 1.3rem; display: grid; gap: 0.5rem; }
.presubmit__list li { font-size: 0.9rem; color: var(--ink-2); }
.presubmit__list b { color: var(--ink); }
.presubmit__more { margin: 0.9rem 0 0; font-size: 0.83rem; color: var(--ink-3); }
.presubmit--compact { margin-top: 1.25rem; }

/* Present in the served HTML, so it works before/without JS. */
.wafall {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  background: #1f8a4c;
  color: #fff;
  border-radius: var(--r-lg);
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.wafall:hover { background: #23a05a; }
.wafall svg { width: 24px; height: 24px; flex: none; }
.wafall span { display: grid; gap: 0.1rem; }
.wafall b { font-size: 0.95rem; font-weight: 650; }
.wafall em { font-style: normal; font-size: 0.78rem; opacity: 0.85; }
.wafall--block { width: 100%; }
