/* =========================================================
   armirovannaya-plenka-msk — shared styles
   Industrial B2B: warm grey, deep blue, orange CTA
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg: #F7F5F0;
  --bg-2: #ECEAE3;
  --bg-3: #E2DFD7;
  --surface: #ffffff;
  --ink: #111111;
  --ink-2: #3a3a3a;
  --ink-3: #6b6b66;
  --ink-4: #a1a09a;
  --border: #dcd8cd;
  --border-strong: #9c9b94;
  --blue: #163b8a;
  --blue-2: #1d4ed8;
  --blue-soft: #eaeefb;
  /* green is the primary accent (icons, badges, underlines) */
  --orange: #4D7A3C;
  --orange-2: #3d6130;
  --orange-soft: #e3ecdc;
  /* terracotta reserved for CTA buttons only */
  --cta: #D4580A;
  --cta-2: #b0480a;
  --green: #4D7A3C;
  --red: #b42318;
  --yellow: #d8a838;

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;

  --shadow-sm: 0 1px 0 rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 4px rgba(15,15,15,0.06), 0 8px 24px rgba(15,15,15,0.06);

  --container: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
img, svg { display: block; max-width: 100%; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-feature-settings: "tnum"; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* =================== TOP UTILITY BAR =================== */
.utilbar {
  background: #1a1a1a;
  color: #d8d6d0;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.utilbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px;
}
.utilbar__left { display: flex; gap: 22px; align-items: center; }
.utilbar__left .pin { color: var(--orange); font-weight: 600; }
.utilbar__right { display: flex; gap: 22px; align-items: center; }
.utilbar a:hover { color: #fff; }

/* =================== HEADER =================== */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  height: 84px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.logo__mark {
  width: 44px; height: 44px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  position: relative;
}
.logo__mark::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 5px, rgba(255,255,255,0.07) 5px 6px),
    repeating-linear-gradient(-45deg, transparent 0 5px, rgba(255,255,255,0.07) 5px 6px);
  pointer-events: none;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__text strong { font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }
.logo__text span { font-size: 11px; color: var(--ink-3); font-family: 'JetBrains Mono', monospace; letter-spacing: 0; text-transform: uppercase; }

.search {
  display: flex;
  height: 44px;
  border: 1.5px solid var(--ink);
  background: #fff;
  border-radius: var(--r-sm);
}
.search select {
  border: none; border-right: 1px solid var(--border);
  background: var(--bg);
  padding: 0 14px;
  font-size: 13px; font-weight: 500;
  outline: none;
  cursor: pointer;
}
.search input {
  flex: 1;
  border: none;
  padding: 0 14px;
  outline: none;
  font-size: 14px;
}
.search button {
  width: 56px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
}

.header__contact {
  display: flex; align-items: center; gap: 18px;
}
.phone {
  display: flex; flex-direction: column; line-height: 1.2; text-align: right;
}
.phone__num { font-weight: 700; font-size: 17px; font-family: 'JetBrains Mono', monospace; letter-spacing: -0.02em; }
.phone__hours { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; }
.btn-callback {
  background: var(--cta);
  color: #fff;
  height: 44px;
  padding: 0 18px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  transition: background 0.15s;
}
.btn-callback:hover { background: var(--cta-2); }

/* =================== NAV =================== */
.nav {
  background: var(--ink);
  color: #f2f2ef;
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 48px;
}
.nav__catalog {
  display: flex; align-items: center; gap: 12px;
  background: var(--orange);
  color: #fff;
  height: 48px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: -32px;
  margin-right: 32px;
}
.nav__links {
  display: flex; gap: 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.nav__links a { color: #d8d6d0; }
.nav__links a:hover, .nav__links a.active { color: var(--orange); }
.nav__right {
  margin-left: auto;
  display: flex; align-items: center; gap: 22px;
  font-size: 12px;
  color: #a8a6a0;
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 22px;
  border-radius: var(--r-sm);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-2); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--ink); }

/* =================== BREADCRUMBS =================== */
.crumbs {
  display: flex; gap: 8px;
  font-size: 12px;
  color: var(--ink-3);
  padding: 18px 0;
  letter-spacing: 0.02em;
}
.crumbs a:hover { color: var(--blue); }
.crumbs .sep { color: var(--ink-4); }
.crumbs .now { color: var(--ink-2); }

/* =================== SECTION HEADERS =================== */
.section { padding: 56px 0; }
.section--tight { padding: 32px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px;
  gap: 24px;
}
.section-head h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-head .sublabel {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  display: block;
  margin-bottom: 8px;
}
.section-head a.more {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
}

/* =================== PRODUCT CARD =================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.product {
  background: #fff;
  display: flex; flex-direction: column;
  position: relative;
  transition: box-shadow 0.15s;
}
.product:hover { box-shadow: 0 0 0 2px var(--ink); z-index: 2; }
.product__media {
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.product__media .ph { width: 100%; height: 100%; }
.product__badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}
.badge {
  background: #fff;
  padding: 4px 8px;
  border: 1px solid var(--ink);
  font-weight: 600;
}
.badge--hit { background: var(--orange); color: #fff; border-color: var(--orange); }.badge--new { background: var(--blue); color: #fff; border-color: var(--blue); }
.badge--sale { background: var(--ink); color: #fff; border-color: var(--ink); }
.product__fav {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: #fff;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  z-index: 2;
}
.product__fav:hover { border-color: var(--ink); }
.product__body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column;
  flex: 1;
  gap: 10px;
}
.product__sku {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.product__title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}
.product__title a:hover { color: var(--blue); }
.product__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-2);
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}
.product__specs dt { color: var(--ink-3); }
.product__specs dd { margin: 0; color: var(--ink); font-weight: 500; text-align: right; }
.product__foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px;
}
.price { display: flex; flex-direction: column; line-height: 1.1; }
.price__main { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 22px; color: var(--ink); letter-spacing: -0.02em; }
.price__unit { font-size: 11px; color: var(--ink-3); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }
.price__opt { font-size: 11px; color: var(--orange-2); font-weight: 600; margin-top: 4px; }
.product__cta {
  width: 40px; height: 40px;
  background: var(--cta);
  color: #fff;
  display: grid; place-items: center;
  transition: background 0.15s;
}
.product__cta:hover { background: var(--cta-2); }
.product__stock {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 6px;
}
.product__stock .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.product__stock.out .dot { background: var(--ink-4); }
.product__stock.out { color: var(--ink-3); }

/* striped placeholder — translucent greenish film, as in reality */
.ph-film {
  background:
    repeating-linear-gradient(135deg,
      rgba(77,122,60,0.10) 0 8px,
      rgba(77,122,60,0.17) 8px 9px,
      transparent 9px 18px),
    linear-gradient(180deg, #e4e6dc, #d4d8c8);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ph-film span { background: rgba(255,255,255,0.7); padding: 4px 10px; border: 1px solid var(--border); }

/* =================== FOOTER =================== */
.footer {
  background: #1a1a1a;
  color: #c8c6c0;
  padding: 56px 0 0;
  margin-top: 80px;
}
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2c2c2c;
}
.footer__col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f4c84a;
  margin: 0 0 18px;
  font-weight: 700;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand .logo__text strong { color: #fff; }
.footer__brand .logo__text span { color: #a8a6a0; }
.footer__brand p { font-size: 13px; line-height: 1.55; margin: 0; color: #a8a6a0; max-width: 280px; }
.footer__contacts { font-size: 14px; display: flex; flex-direction: column; gap: 12px; }
.footer__contacts .phone__num { color: #fff; font-size: 19px; }
.footer__contacts .phone__hours { color: #a8a6a0; }
.footer__bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: #807e78;
  letter-spacing: 0.02em;
}
.footer__bottom a:hover { color: #fff; }

/* =================== HERO =================== */
.hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 72px 0 80px;
  position: relative;
}
.hero__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero__lead {
  font-size: 17px;
  line-height: 1.55;
  color: #c8c6c0;
  max-width: 520px;
  margin: 0 0 36px;
}
.hero__cta { display: flex; gap: 12px; margin-bottom: 44px; }
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 540px;
  padding-top: 28px;
  border-top: 1px solid #2c2c2c;
}
.hero__meta .v { font-family: 'JetBrains Mono', monospace; font-size: 30px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; color: #fff; }
.hero__meta .l { font-size: 12px; color: #a8a6a0; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.hero__media {
  aspect-ratio: 1 / 1;
  background:
    repeating-linear-gradient(135deg,
      rgba(120,180,90,0.16) 0 10px,
      rgba(120,180,90,0.26) 10px 12px,
      transparent 12px 24px),
    radial-gradient(circle at 30% 30%, #2a2a2a, #0a0a0a);
  position: relative;
  border: 1px solid #2c2c2c;
  display: flex; align-items: center; justify-content: center;
}
.hero__media-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #a8a6a0;
  background: rgba(0,0,0,0.6);
  border: 1px solid #2c2c2c;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__corner {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__corner.tl { top: 16px; left: 16px; }
.hero__corner.tr { top: 16px; right: 16px; }
.hero__corner.bl { bottom: 16px; left: 16px; }
.hero__corner.br { bottom: 16px; right: 16px; }
.hero__bgnum {
  position: absolute;
  right: -40px; bottom: -60px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 260px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
}

/* =================== FORM =================== */
.form {
  background: #fff;
  padding: 40px;
  border: 1px solid var(--border);
}
.form__head {
  margin-bottom: 24px;
}
.form__head h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.form__head p { color: var(--ink-3); margin: 0; font-size: 14px; }
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}
.field input, .field textarea, .field select {
  height: 46px;
  border: 1.5px solid var(--border);
  background: #fff;
  padding: 0 14px;
  font-size: 15px;
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.15s;
}
.field textarea { padding: 12px 14px; height: auto; resize: vertical; min-height: 90px; font-family: inherit; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); }
.field__hint { font-size: 12px; color: var(--ink-3); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--ink-3); line-height: 1.4; }
.consent input { margin-top: 2px; }
.consent a { color: var(--blue); text-decoration: underline; }

/* =================== OVERLAY & MODALS =================== */
.site-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.5);z-index:9000;opacity:0;pointer-events:none;transition:opacity .25s}
.site-overlay.open{opacity:1;pointer-events:auto}
.site-modal{position:fixed;inset:0;z-index:9100;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .25s}
.site-modal.open{opacity:1;pointer-events:auto}
.site-modal__inner{background:#fff;border:1px solid var(--border);padding:36px 40px;width:480px;max-width:94vw;max-height:90vh;overflow-y:auto;position:relative;transform:translateY(20px);transition:transform .25s}
.site-modal.open .site-modal__inner{transform:translateY(0)}
.site-modal__close{position:absolute;top:14px;right:16px;background:none;border:none;font-size:28px;cursor:pointer;color:var(--ink-3);line-height:1;padding:0}
.site-modal__close:hover{color:var(--ink)}
.cart-panel{position:fixed;top:0;right:0;bottom:0;width:420px;max-width:100vw;background:#fff;z-index:9100;display:flex;flex-direction:column;transform:translateX(100%);transition:transform .3s;border-left:1px solid var(--border)}
.cart-panel.open{transform:translateX(0)}
.cart-panel__head{display:flex;justify-content:space-between;align-items:center;padding:20px 24px;border-bottom:1px solid var(--border)}
.cart-panel__head h3{margin:0;font-size:20px;font-weight:800;letter-spacing:-0.02em}
.cart-panel__items{flex:1;overflow-y:auto;padding:16px 24px}
.cart-panel__footer{padding:20px 24px;border-top:1px solid var(--border)}
.cart-empty{text-align:center;padding:60px 0;color:var(--ink-3)}
.cart-empty p{margin:0;font-size:15px}
.cart-item{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;padding:14px 0;border-bottom:1px solid var(--border)}
.cart-item:last-child{border-bottom:none}
.cart-item__name{font-weight:600;font-size:14px;margin-bottom:4px}
.cart-item__meta{font-size:12px;color:var(--ink-3);font-family:'JetBrains Mono',monospace}
.cart-item__right{display:flex;flex-direction:column;align-items:flex-end;gap:6px;flex-shrink:0}
.cart-item__qty{display:flex;align-items:center;border:1px solid var(--border)}
.cart-item__qty button{width:30px;height:30px;background:var(--bg);border:none;cursor:pointer;font-size:16px;font-weight:600}
.cart-item__qty button:hover{background:var(--border)}
.cart-item__qty span{width:34px;height:30px;display:grid;place-items:center;font-family:'JetBrains Mono',monospace;font-size:13px;font-weight:600}
.cart-item__price{font-family:'JetBrains Mono',monospace;font-weight:700;font-size:14px;letter-spacing:-0.02em}
.cart-item__del{background:none;border:none;color:var(--ink-4);cursor:pointer;font-size:18px;padding:0;line-height:1}
.cart-item__del:hover{color:#cc3333}
.cart-total{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px;padding-bottom:12px;border-bottom:1px solid var(--border)}
.cart-total span:first-child{font-size:14px;color:var(--ink-2)}
.cart-total__val{font-family:'JetBrains Mono',monospace;font-weight:700;font-size:22px;letter-spacing:-0.02em}
.cart-trigger{position:relative;background:none;border:1.5px solid var(--ink);width:44px;height:44px;display:grid;place-items:center;cursor:pointer;transition:all .15s}
.cart-trigger:hover{background:var(--ink);color:#fff}
.cart-badge{position:absolute;top:-6px;right:-6px;background:var(--orange);color:#fff;font-family:'JetBrains Mono',monospace;font-size:10px;font-weight:700;min-width:18px;height:18px;display:grid;place-items:center;border-radius:50%}
.cart-notification{position:fixed;bottom:24px;right:24px;background:var(--ink);color:#fff;padding:14px 20px;display:flex;align-items:center;gap:10px;font-size:14px;z-index:9200;transform:translateY(20px);opacity:0;transition:all .3s}
.cart-notification.show{transform:translateY(0);opacity:1}

/* =================== ACCORDION FAQ =================== */
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item .plus {
  width: 28px; height: 28px;
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.15s;
}
.faq__item[open] .plus { background: var(--ink); color: #fff; transform: rotate(45deg); }
.faq__body {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 800px;
}
.faq__body p { margin: 0 0 10px; }
.faq__body p:last-child { margin-bottom: 0; }

/* =================== TAG / CHIP =================== */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.chip--active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip button { color: inherit; font-size: 14px; line-height: 1; }

/* helpers */
.hr { height: 1px; background: var(--border); margin: 40px 0; }
.muted { color: var(--ink-3); }
.ink-2 { color: var(--ink-2); }
.tag-orange { color: var(--orange); }
.tag-blue { color: var(--blue); }
.tnum { font-variant-numeric: tabular-nums; }

/* corner markers — industrial detail */
.corners {
  position: relative;
}
.corners::before, .corners::after {
  content: ''; position: absolute;
  width: 12px; height: 12px;
  border: 1.5px solid var(--ink);
}
.corners::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.corners::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
