/* news — page-specific styles */
/* ===================================================================
   CAPABILITIES PAGE — page-specific
   =================================================================== */

/* active nav state */
.nav .nav-link.is-active { color: var(--ink); }
.nav .nav-link.is-active::after { transform: scaleX(1); }

/* reusable photo placeholder (real photography drops in here) */
.ph {
  position: relative;
  background-color: #15150F;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 11px);
  overflow: hidden;
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 80% 0%, rgba(245,166,35,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.ph .ph-tag {
  position: absolute; left: 22px; bottom: 20px;
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px; letter-spacing: 0.04em;
  color: rgba(250,250,247,0.66);
  display: inline-flex; align-items: center; gap: 10px;
  z-index: 2;
}
.ph .ph-tag::before {
  content: ""; width: 9px; height: 9px;
  border: 1px solid rgba(245,166,35,0.85);
  background: transparent;
}
.ph .ph-corner {
  position: absolute; top: 20px; right: 22px;
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,250,247,0.5); z-index: 2;
}

/* ---------- PAGE HERO ---------- */
.cap-hero { background: var(--paper); border-bottom: 1px solid var(--rule); }
.cap-hero .top {
  max-width: var(--col-max); margin: 0 auto;
  padding: 84px var(--gutter) 56px;
  display: grid; grid-template-columns: var(--label-col) 1fr; gap: var(--label-gap);
  align-items: start;
}
.cap-hero .crumb {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey); font-weight: 500;
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
}
.cap-hero .crumb a { color: var(--grey); }
.cap-hero .crumb a:hover { color: var(--ink); }
.cap-hero .crumb .here { color: var(--ink); }
.cap-hero .crumb .slash { color: var(--rule); }
.cap-hero .headcol .eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  color: var(--grey);
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.cap-hero .headcol .eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--amber); }
.cap-hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(48px, 6.6vw, 104px);
  line-height: 0.94; letter-spacing: -0.036em;
  margin: 0 0 36px; max-width: 15ch; text-wrap: balance; color: var(--ink);
}
.cap-hero h1 em { font-style: normal; border-bottom: 5px solid var(--amber); padding-bottom: 4px; }
.cap-hero .lead {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(20px, 1.7vw, 27px); line-height: 1.4; letter-spacing: -0.012em;
  color: var(--ink-2); max-width: 46ch; margin: 0; text-wrap: pretty;
}
.cap-hero .banner {
  position: relative; height: 460px;
  border-top: 1px solid var(--rule);
}
.cap-hero .banner .meta-strip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.cap-hero .banner .meta-strip .cell {
  flex: 1 1 0; min-width: 180px;
  padding: 22px var(--gutter) 22px 28px;
  border-left: 1px solid rgba(255,255,255,0.16);
  background: rgba(10,10,10,0.42);
  backdrop-filter: blur(4px);
}
.cap-hero .banner .meta-strip .cell:first-child { border-left: 0; }
.cap-hero .banner .meta-strip .cell .v {
  font-family: var(--display); font-weight: 600;
  font-size: 30px; letter-spacing: -0.02em; color: var(--paper); line-height: 1;
  margin-bottom: 9px;
}
.cap-hero .banner .meta-strip .cell .k {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,250,247,0.66); font-weight: 500;
}

/* ---------- CATEGORY INDEX ---------- */
.cat-index { background: var(--white); border-bottom: 1px solid var(--rule); }
.cat-index .inner {
  max-width: var(--col-max); margin: 0 auto; padding: 0 var(--gutter);
}
.cat-index .idx-head {
  display: grid; grid-template-columns: var(--label-col) 1fr; gap: var(--label-gap);
  padding: 44px 0 28px;
}
.cat-index .idx-head .lbl {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.cat-index .idx-head .lbl::before { content: ""; width: 28px; height: 1px; background: var(--amber); }
.cat-index .idx-head p { margin: 0; font-size: 15px; color: var(--ink-3); max-width: 52ch; line-height: 1.6; }
.idx-row {
  display: grid; grid-template-columns: var(--label-col) 1fr auto;
  gap: var(--label-gap); align-items: center;
  padding: 26px 0; border-top: 1px solid var(--rule);
  transition: background 160ms ease;
}
.idx-row:hover { background: var(--paper); }
.idx-row .ix-num {
  font-family: var(--display); font-weight: 500;
  font-size: 13px; letter-spacing: 0.14em; color: var(--amber);
}
.idx-row .ix-name {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(24px, 2.4vw, 38px); letter-spacing: -0.022em; color: var(--ink);
  display: flex; align-items: baseline; gap: 18px;
}
.idx-row .ix-name .count {
  font-family: var(--body); font-weight: 500; font-size: 12px; letter-spacing: 0.1em;
  color: var(--grey); text-transform: uppercase;
}
.idx-row .ix-go {
  font-family: var(--display); font-weight: 500; font-size: 13.5px;
  color: var(--ink); display: inline-flex; align-items: center; gap: 12px;
  white-space: nowrap;
}
.idx-row .ix-go .arr { color: var(--amber); transition: transform 200ms ease; }
.idx-row:hover .ix-go .arr { transform: translateX(5px); }

/* ---------- CATEGORY DETAIL ---------- */
.cat { border-bottom: 1px solid var(--rule); background: var(--paper); }
.cat:nth-child(even) { background: var(--white); }
.cat .cat-inner { max-width: var(--col-max); margin: 0 auto; padding: var(--section-pad) var(--gutter); }
.cat .cat-head {
  display: grid; grid-template-columns: var(--label-col) 1fr 300px;
  gap: var(--label-gap); align-items: end;
}
.cat .cat-head .rail { display: flex; flex-direction: column; gap: 16px; padding-bottom: 8px; }
.cat .cat-head .rail .c-num {
  font-family: var(--display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; color: var(--amber);
}
.cat .cat-head .rail .c-kicker {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); font-weight: 500;
}
.cat .cat-head h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(38px, 4.4vw, 68px); line-height: 0.98; letter-spacing: -0.03em;
  margin: 0; max-width: 15ch; text-wrap: balance; color: var(--ink);
}
.cat .cat-head h2 em { font-style: normal; border-bottom: 4px solid var(--amber); padding-bottom: 3px; }
.cat .cat-head .lead {
  font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0; max-width: 40ch; padding-bottom: 6px;
}
.cat .cat-body {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px;
  margin-top: 72px; align-items: start;
}
.cat .prod-list { border-top: 1px solid var(--ink); }
.cat .prod {
  display: grid; grid-template-columns: 1fr auto; gap: 16px 24px; align-items: baseline;
  padding: 24px 0; border-bottom: 1px solid var(--rule); position: relative;
}
.cat .prod .p-name {
  font-family: var(--display); font-weight: 600; font-size: 19px;
  letter-spacing: -0.014em; color: var(--ink);
  display: flex; align-items: center; gap: 14px;
}
.cat .prod .p-name .tick { width: 6px; height: 6px; background: var(--amber); flex-shrink: 0; }
.cat .prod .p-tag {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--grey); justify-self: end; white-space: nowrap;
}
.cat .prod .p-spec {
  grid-column: 1 / -1; margin: 0; padding-left: 20px;
  font-size: 14px; line-height: 1.55; color: var(--ink-3); max-width: 52ch;
}
.cat .figure { display: flex; flex-direction: column; gap: 0; }
.cat .figure .ph { width: 100%; height: 420px; }
.cat .figure .spec-row {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--rule); border-top: 0;
}
.cat .figure .spec-row .s {
  flex: 1 1 0; min-width: 120px; padding: 20px 22px;
  border-left: 1px solid var(--rule);
}
.cat .figure .spec-row .s:first-child { border-left: 0; }
.cat .figure .spec-row .s .sv {
  font-family: var(--display); font-weight: 600; font-size: 24px;
  letter-spacing: -0.02em; color: var(--ink); line-height: 1; margin-bottom: 8px;
}
.cat .figure .spec-row .s .sv sup { font-size: 0.5em; vertical-align: super; font-weight: 500; }
.cat .figure .spec-row .s .sk {
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); font-weight: 500;
}

/* ---------- SPEC COMPARISON TABLE ---------- */
.compare { background: var(--ink); color: var(--paper); }
.compare .inner { max-width: var(--col-max); margin: 0 auto; padding: var(--section-pad) var(--gutter); }
.compare .c-head { display: grid; grid-template-columns: var(--label-col) 1fr; gap: var(--label-gap); margin-bottom: 56px; }
.compare .c-head .lbl {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-2); font-weight: 500;
  display: flex; align-items: center; gap: 12px; padding-top: 8px;
}
.compare .c-head .lbl::before { content: ""; width: 28px; height: 1px; background: var(--amber); }
.compare .c-head h2 {
  font-family: var(--display); font-weight: 600; font-size: clamp(34px, 3.8vw, 60px);
  line-height: 1; letter-spacing: -0.028em; margin: 0; max-width: 18ch; color: var(--paper);
}
.tbl { width: 100%; border-collapse: collapse; }
.tbl th, .tbl td { text-align: left; padding: 22px 20px; border-bottom: 1px solid rgba(255,255,255,0.16); vertical-align: top; }
.tbl thead th {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-2); font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.tbl thead th:first-child { color: var(--paper); }
.tbl tbody th {
  font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; color: var(--paper);
  white-space: nowrap;
}
.tbl tbody td { font-size: 14px; color: rgba(250,250,247,0.82); line-height: 1.5; }
.tbl tbody tr:hover td, .tbl tbody tr:hover th { background: rgba(255,255,255,0.03); }
.tbl .em { color: var(--amber); font-weight: 500; }

/* ---------- MATERIALS ---------- */
.materials { background: var(--paper); border-bottom: 1px solid var(--rule); }
.materials .inner { max-width: var(--col-max); margin: 0 auto; padding: var(--section-pad) var(--gutter); }
.mat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--rule); }
.mat {
  padding: 40px 32px 40px 0; border-right: 1px solid var(--rule);
}
.mat:last-child { border-right: 0; padding-right: 0; }
.mat::before { content: ""; display: block; width: 26px; height: 2px; background: var(--amber); margin-bottom: 26px; }
.mat .code {
  font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: 14px;
}
.mat p { margin: 0 0 16px; font-size: 14px; line-height: 1.55; color: var(--ink-3); max-width: 34ch; }
.mat .grade {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); font-weight: 600;
}

/* ---------- DOWNLOADS ---------- */
.downloads { background: var(--white); border-bottom: 1px solid var(--rule); }
.downloads .inner { max-width: var(--col-max); margin: 0 auto; padding: var(--section-pad) var(--gutter); }
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.dl {
  display: flex; flex-direction: column; gap: 14px;
  padding: 40px 36px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  background: var(--white); transition: background 180ms ease;
}
.dl:hover { background: var(--paper); }
.dl .dl-type {
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey);
  display: flex; align-items: center; gap: 10px;
}
.dl .dl-type::before { content: ""; width: 7px; height: 7px; background: var(--amber); }
.dl h4 {
  font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.016em;
  line-height: 1.22; margin: 0; color: var(--ink); max-width: 22ch;
}
.dl .dl-foot {
  margin-top: auto; padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.06em; color: var(--grey); text-transform: uppercase; font-weight: 500;
}
.dl .dl-foot .get { color: var(--ink); display: inline-flex; align-items: center; gap: 10px; }
.dl .dl-foot .get .arr { color: var(--amber); transition: transform 200ms ease; }
.dl:hover .dl-foot .get .arr { transform: translateY(3px); }

/* ---------- CLOSING CTA ---------- */
.cap-cta { background: var(--ink); color: var(--paper); }
.cap-cta .inner {
  max-width: var(--col-max); margin: 0 auto; padding: 130px var(--gutter);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: end;
}
.cap-cta .lbl {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-2); font-weight: 500;
  display: flex; align-items: center; gap: 12px; margin-bottom: 30px;
}
.cap-cta .lbl::before { content: ""; width: 28px; height: 1px; background: var(--amber); }
.cap-cta h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(40px, 5vw, 84px); line-height: 0.96; letter-spacing: -0.032em;
  margin: 0; max-width: 16ch; text-wrap: balance;
}
.cap-cta h2 em { font-style: normal; border-bottom: 5px solid var(--amber); padding-bottom: 4px; }
.cap-cta .side { padding-bottom: 12px; }
.cap-cta .side p { font-size: 16px; line-height: 1.6; color: rgba(250,250,247,0.82); margin: 0 0 28px; max-width: 40ch; }
.cap-cta .btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.cap-cta .btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 500; font-size: 14px; letter-spacing: 0.01em;
  padding: 15px 24px;
}
.cap-cta .btn.solid { background: var(--paper); color: var(--ink); }
.cap-cta .btn.solid:hover { background: #fff; }
.cap-cta .btn.ghost { border: 1px solid rgba(255,255,255,0.3); color: var(--paper); }
.cap-cta .btn.ghost:hover { border-color: var(--paper); }
.cap-cta .btn .arr { color: var(--amber); }

@media (max-width: 1180px) {
  .cap-hero .top { grid-template-columns: 1fr; gap: 28px; }
  .cap-hero .crumb { padding-top: 0; }
  .cat-index .idx-head { grid-template-columns: 1fr; gap: 16px; }
  .idx-row { grid-template-columns: auto 1fr auto; gap: 24px; }
  .cat .cat-head { grid-template-columns: 1fr; gap: 24px; }
  .cat .cat-body { grid-template-columns: 1fr; gap: 40px; }
  .compare .c-head { grid-template-columns: 1fr; gap: 20px; }
  .mat-grid { grid-template-columns: 1fr 1fr; }
  .mat { padding-right: 32px; border-right: 1px solid var(--rule); }
  .mat:nth-child(2n) { border-right: 0; padding-right: 0; }
  .dl-grid { grid-template-columns: 1fr 1fr; }
  .cap-cta .inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  .cap-hero .banner { height: 320px; }
  .cap-hero .banner .meta-strip .cell { padding: 16px 18px; }
  .cap-hero .banner .meta-strip .cell .v { font-size: 22px; }
  .mat-grid, .dl-grid { grid-template-columns: 1fr; }
  .mat { border-right: 0; padding: 32px 0; border-bottom: 1px solid var(--rule); }
  .tbl { display: block; overflow-x: auto; white-space: nowrap; }
  .cat .figure .ph { height: 260px; }
}

/* ===================================================================
   NEWS PAGE — page-specific
   =================================================================== */
.news-feat { background: var(--white); border-bottom: 1px solid var(--rule); }
.news-feat .inner { max-width: var(--col-max); margin: 0 auto; padding: var(--section-pad) var(--gutter); display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: stretch; }
.news-feat .nf-media { min-height: 520px; }
.news-feat .nf-text { display: flex; flex-direction: column; justify-content: center; }
.nf-meta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); font-weight: 500; display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.nf-meta .cat { color: var(--ink); font-weight: 600; }
.nf-meta .dot { width: 4px; height: 4px; background: var(--amber); }
.news-feat h2 { font-family: var(--display); font-weight: 600; font-size: clamp(34px,4vw,58px); line-height:0.99; letter-spacing:-0.03em; margin:0 0 22px; color: var(--ink); max-width: 17ch; text-wrap: balance; }
.news-feat h2 em { font-style: normal; border-bottom: 4px solid var(--amber); padding-bottom: 3px; }
.news-feat .nf-text > p { font-size: 16.5px; line-height: 1.6; color: var(--ink-2); margin: 0 0 30px; max-width: 48ch; }
.news-feat .more { font-family: var(--display); font-weight: 500; font-size: 14px; display: inline-flex; align-items: center; gap: 12px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 4px; align-self: flex-start; }
.news-feat .more .arr { color: var(--amber); }

.art-index { background: var(--paper); border-bottom: 1px solid var(--rule); }
.art-index .inner { max-width: var(--col-max); margin: 0 auto; padding: 0 var(--gutter) var(--section-pad); }
.news-filters { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 0 36px; }
.news-filters .chip { font-family: var(--display); font-weight: 500; font-size: 12.5px; letter-spacing: 0.02em; padding: 9px 16px; border: 1px solid var(--rule); color: var(--ink-2); cursor: pointer; background: transparent; transition: all 160ms ease; white-space: nowrap; }
.news-filters .chip:hover { border-color: var(--ink-3); color: var(--ink); }
.news-filters .chip.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.art-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--rule); }
.art { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--white); display: flex; flex-direction: column; transition: background 180ms ease; }
.art:hover { background: var(--paper); }
.art .thumb { width: 100%; aspect-ratio: 16/10; }
.art .a-body { padding: 28px 28px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.art .a-meta { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); font-weight: 500; display: flex; align-items: center; gap: 14px; }
.art .a-meta .cat { color: var(--ink-2); font-weight: 600; }
.art h3 { font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: -0.016em; line-height: 1.22; margin: 0; color: var(--ink); max-width: 24ch; }
.art p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-3); max-width: 40ch; }
.art .more { margin-top: auto; padding-top: 6px; font-family: var(--display); font-weight: 500; font-size: 13px; color: var(--ink); display: inline-flex; align-items: center; gap: 10px; }
.art .more .arr { color: var(--amber); transition: transform 200ms ease; }
.art:hover .more .arr { transform: translateX(4px); }

@media (max-width: 1180px){
  .news-feat .inner { grid-template-columns: 1fr; gap: 40px; }
  .news-feat .nf-media { min-height: 340px; }
  .art-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .art-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   MOBILE NAV + REFINEMENTS
   =================================================================== */
.m-toggle { display: none; }
.m-nav { display: none; }
/* Hamburger drawer takes over for tablet + phone (desktop nav cannot fit below ~1180px) */
@media (max-width: 1180px) {
  .nav { display: none; }
  .header-actions .header-cta { display: none; }
  .m-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 0; margin-left: 4px;
  }
  .m-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
  .m-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .m-toggle.is-open span:nth-child(2) { opacity: 0; }
  .m-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .m-nav {
    display: flex; flex-direction: column;
    position: fixed; top: 104px; left: 0; right: 0; bottom: 0;
    background: var(--ink); color: var(--paper);
    padding: 14px var(--gutter) 36px; z-index: 59; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .26s ease, transform .26s ease, visibility 0s linear .26s;
  }
  body.m-open { overflow: hidden; }
  body.m-open .m-nav { opacity: 1; visibility: visible; transform: none; transition: opacity .26s ease, transform .26s ease, visibility 0s; }
  .m-nav a {
    font-family: var(--display); font-weight: 500; font-size: 27px; letter-spacing: -0.02em; color: var(--paper);
    padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: space-between;
  }
  .m-nav a .arr { color: var(--amber); font-size: 19px; }
  .m-nav a.m-cta { margin-top: 22px; border: 1px solid rgba(255,255,255,0.28); padding: 17px 20px; font-size: 17px; }
  .m-nav .m-meta { margin-top: 24px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-2); line-height: 1.9; }
}
/* Phone-only refinements */
@media (max-width: 720px) {
  :root { --section-pad: 78px; }
  .m-nav a { font-size: 26px; }
  footer .bottom { flex-wrap: wrap; gap: 14px; }
  .cap-hero .banner .meta-strip .cell { min-width: 150px; }
  footer .grid { grid-template-columns: 1fr; }
  /* contain wide tables so they scroll inside their section, not the page */
  .compare .inner, .params .inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare .tbl, .params .ptbl { display: table; width: auto; min-width: 560px; white-space: nowrap; }
  .cat-index .idx-row { grid-template-columns: 1fr; gap: 10px; align-items: start; }
  .cat-index .idx-row .ix-num { display: none; }
  .cat-index .idx-row .ix-name { font-size: 22px; }
  .cat-index .idx-row .ix-go { font-size: 12px; white-space: nowrap; justify-self: start; }
}
