:root {
  --paper: #f2efe7;
  --paper-2: #e5e1d5;
  --paper-3: #f8f5ee;
  --ink: #0e0f10;
  --ink-2: #2a2c2f;
  --muted: #6b6b66;
  --line: rgba(14, 15, 16, 0.88);
  --line-soft: rgba(14, 15, 16, 0.16);
  --accent: #cc2028;
  --caution: #f4c10f;
  --ok: #1f8f4b;
  --container: 1240px;
  --gutter: clamp(18px, 4vw, 28px);
  --section-space: clamp(56px, 8vw, 86px);
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --sans: "Inter Tight", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  min-width: 0;
  font: inherit;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.topband {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--line);
}

.topband-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  min-height: 42px;
  padding-block: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topband-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
}

.topband-link {
  text-decoration: none;
}

.topband-link:hover {
  color: var(--caution);
}

.dot {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: #7ae187;
  box-shadow: 0 0 8px rgba(122, 225, 135, 0.9);
}

.sep {
  opacity: 0.45;
  margin-inline: 10px;
}

.masthead {
  border-bottom: 1px solid var(--line);
}

.masthead-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding-block: 18px;
}

.wordmark,
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 24px);
  letter-spacing: -0.01em;
}

.wordmark sup,
.foot-brand sup {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
}

.mark-box {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.mark-box.inverse {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.masthead-meta {
  text-align: right;
  font-size: 11px;
  color: var(--ink-2);
}

.masthead-meta .row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.masthead-meta .k {
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
}

.nav-inner a {
  flex: 1 1 180px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.nav-inner a:last-child {
  border-right: 0;
}

.nav-inner a:hover {
  background: var(--ink);
  color: var(--paper);
}

.nav-inner a.cta {
  background: var(--accent);
  color: #fff;
}

section {
  padding-block: var(--section-space);
  border-bottom: 1px solid var(--line);
}

.spec-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.spec-grid > * {
  min-width: 0;
}

.section-intro {
  margin-bottom: 40px;
}

.spec-label {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-label::before {
  content: "/ ";
  color: var(--ink);
  font-weight: 700;
}

.headline {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.headline b {
  font-weight: 700;
}

.headline .hl {
  padding-inline: 0.12em;
  background: linear-gradient(transparent 32%, var(--caution) 32%, var(--caution) 82%, transparent 82%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section-headline {
  font-size: clamp(28px, 4vw, 40px);
}

.lede {
  max-width: 64ch;
  margin: 24px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
  border: 1px solid var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  cursor: pointer;
}

.btn:last-child {
  border-right: 0;
}

.btn:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.speccard,
.table-shell,
.quote,
.faq,
.quoteform,
.admin-card {
  border: 1px solid var(--line);
  background: var(--paper);
}

.speccard-title,
.table-head {
  display: grid;
  align-items: stretch;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speccard-title {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 8px 12px;
}

.speccard-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 12px;
  border-top: 1px solid var(--line);
}

.speccard-row .k {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.speccard-row .v {
  font-weight: 500;
}

.badge {
  display: inline-block;
  padding: 3px 7px;
  border: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
}

.badge.ok {
  background: #bff0d0;
}

.badge.red {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.stripe {
  height: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, var(--ink) 0 10px, var(--caution) 10px 20px);
}

.stripe.red {
  background: repeating-linear-gradient(135deg, #fff 0 10px, var(--accent) 10px 20px);
}

.service-head,
.service-row {
  grid-template-columns: 76px 116px minmax(0, 1.7fr) minmax(0, 1.15fr) 140px 120px;
}

.ledger-head,
.ledger-row {
  grid-template-columns: 74px 74px minmax(0, 1.8fr) minmax(0, 1fr) 110px 100px;
}

.table-head > div,
.table-cell {
  min-width: 0;
  padding: 10px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.table-head > div:last-child,
.table-cell:last-child {
  border-right: 0;
}

.table-row {
  display: grid;
  align-items: stretch;
  color: var(--ink);
  text-decoration: none;
  border-top: 1px solid var(--line);
}

.table-row:hover {
  background: var(--paper-3);
}

.table-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border-right-color: var(--line-soft);
  overflow-wrap: anywhere;
}

.cell-label {
  display: none;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.strong {
  font-weight: 700;
}

.muted {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.service-title {
  display: block;
  font-weight: 600;
  font-size: 13px;
}

.service-desc {
  display: block;
  margin-top: 4px;
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.55;
}

.price-cell {
  text-align: right;
}

.capgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  border: 1px solid var(--line);
}

.cap {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.cap:last-child {
  border-right: 0;
}

.cap-num {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.cap h3 {
  margin: 12px 0 8px;
  font-size: 15px;
  text-transform: uppercase;
}

.cap p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.6;
}

.cap ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.cap li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  border-top: 1px dashed var(--line-soft);
  color: var(--muted);
  font-size: 11px;
}

.cap li:first-child {
  border-top: 0;
}

.cap li b {
  color: var(--ink);
  font-weight: 500;
}

.ladder {
  border: 1px solid var(--line);
}

.ladder-row {
  display: grid;
  grid-template-columns: 80px 160px minmax(0, 1fr) 160px;
  border-top: 1px solid var(--line);
}

.ladder-row:first-child {
  border-top: 0;
}

.ladder-row > * {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line-soft);
}

.ladder-row > *:last-child {
  border-right: 0;
}

.step {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
}

.phase,
.time {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ladder-row h4 {
  margin: 0 0 6px;
  font-size: 15px;
  text-transform: uppercase;
}

.ladder-row p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.6;
}

.quote-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
}

.quote {
  padding: 32px;
}

.q {
  font-family: var(--sans);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
}

.attr {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-soft);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unit {
  border: 1px solid var(--line);
  background: #d8d3c5;
  padding: 10px;
}

.unit-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(14, 15, 16, 0.22);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unit-face {
  position: relative;
  height: 110px;
  margin-top: 10px;
  border: 1px solid rgba(14, 15, 16, 0.28);
  background: radial-gradient(circle, rgba(14, 15, 16, 0.2) 1px, transparent 1.2px), #c5c0b1;
  background-size: 7px 7px;
}

.unit-face::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 34px;
  height: 12px;
  background: var(--accent);
}

.unit-face::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ae187;
  box-shadow: -16px 0 0 var(--caution), -32px 0 0 #bfbfbf;
}

.unit-ports {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 4px;
  margin-top: 8px;
}

.unit-ports i {
  display: block;
  height: 14px;
  border: 1px solid #000;
  background: #222;
}

.unit-ports i:nth-child(3n) {
  background: #7ae187;
}

.unit-ports i:nth-child(5n) {
  background: var(--caution);
}

.photo-slot-wrap {
  margin-top: 16px;
}

.ph,
.photo-frame {
  min-height: 180px;
  border: 1px solid var(--line);
}

.ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background:
    repeating-linear-gradient(135deg, rgba(14, 15, 16, 0.05) 0 6px, transparent 6px 12px),
    var(--paper-2);
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(14, 15, 16, 0.24);
}

.ph span {
  position: relative;
  z-index: 1;
  padding: 4px 10px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.photo-frame {
  overflow: hidden;
  background: var(--paper-2);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.photo-frame figcaption {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tall .ph,
.tall.photo-frame,
.tall.photo-frame img {
  min-height: 320px;
}

.shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-roster {
  margin-top: 16px;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:first-child {
  border-top: 0;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--muted);
  font-size: 16px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details[open] summary {
  background: var(--paper-3);
}

.ans {
  padding: 0 20px 20px;
  color: var(--ink-2);
  line-height: 1.7;
}

.quoteform {
  overflow: hidden;
}

.qf-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: var(--ok);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.qf-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.qf-row .k {
  display: flex;
  align-items: center;
  padding: 12px;
  border-right: 1px solid var(--line);
  background: var(--paper-3);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.qf-row input,
.qf-row textarea,
.qf-row select {
  width: 100%;
  border: 0;
  padding: 14px 12px;
  background: transparent;
  color: var(--ink);
}

.qf-row textarea {
  resize: vertical;
}

.qf-row input:focus,
.qf-row textarea:focus,
.qf-row select:focus {
  outline: none;
  background: rgba(244, 193, 15, 0.18);
}

.qf-submit {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.warn {
  padding: 12px;
  border-right: 1px solid var(--line);
  background: var(--caution);
  font-size: 11px;
  line-height: 1.5;
}

.qf-submit button {
  min-height: 54px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  cursor: pointer;
}

.qf-submit button:hover {
  background: var(--accent);
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--paper-3);
  color: var(--ink-2);
}

footer {
  background: var(--ink);
  color: var(--paper);
}

.foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: 56px;
}

.foot h5 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foot-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot-links li + li {
  margin-top: 8px;
}

.foot-links a {
  opacity: 0.92;
  text-decoration: none;
}

.foot-links a:hover {
  color: var(--caution);
}

.foot-sig {
  max-width: 42ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-block: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-page {
  min-height: 100vh;
}

.admin-header {
  border-bottom: 1px solid var(--line);
}

.admin-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding-block: 42px 34px;
}

.admin-kicker,
.admin-card-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-header h1,
.admin-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
}

.admin-subtitle {
  max-width: 70ch;
  margin: 16px 0 0;
  color: var(--ink-2);
  line-height: 1.7;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 12px;
}

.admin-layout {
  display: grid;
  gap: 24px;
  padding-block: 28px 48px;
}

.admin-card {
  padding: 22px;
}

.admin-card-head,
.editor-card-head,
.submission-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.admin-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.admin-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-grid.single-col {
  grid-template-columns: minmax(0, 1fr);
}

.admin-grid label,
.editor-card label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
}

.admin-grid input,
.admin-grid textarea,
.admin-grid select,
.editor-card input,
.editor-card textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  background: #fff;
  padding: 12px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row input {
  width: auto;
}

.full-width {
  grid-column: 1 / -1;
}

.editor-stack,
.submission-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.editor-card,
.submission-card {
  padding: 16px;
  border: 1px solid var(--line-soft);
  background: var(--paper-3);
}

.danger-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
}

.photo-preview {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #fff;
}

.photo-preview img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.photo-preview-empty {
  padding: 18px;
  color: var(--muted);
}

.submission-name {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
}

.submission-meta,
.submission-time {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.submission-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.submission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin-top: 14px;
}

.submission-grid div {
  display: grid;
  gap: 4px;
}

.submission-grid strong {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.submission-body {
  margin: 14px 0 0;
  color: var(--ink-2);
  line-height: 1.7;
  white-space: pre-wrap;
}

.empty-state {
  padding: 18px;
  border: 1px dashed var(--line-soft);
  color: var(--muted);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.admin-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .capgrid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .cap {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .cap:first-child {
    border-top: 0;
  }

  .quote-wrap,
  .foot,
  .admin-header-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .service-head,
  .ledger-head {
    display: none;
  }

  .service-row,
  .ledger-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-cell {
    border-right: 0;
    border-top: 1px solid var(--line-soft);
  }

  .table-row > :first-child,
  .table-row > :nth-child(2) {
    border-top: 0;
  }

  .title-cell {
    grid-column: 1 / -1;
  }

  .price-cell {
    text-align: left;
  }

  .cell-label {
    display: block;
  }

  .ladder-row {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .ladder-row .phase,
  .ladder-row .time {
    grid-column: 2;
  }

  .ladder-row .time {
    padding-top: 0;
  }

  .qf-row,
  .qf-submit {
    grid-template-columns: 1fr;
  }

  .qf-row .k,
  .warn {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .foot-bottom {
    flex-direction: column;
  }

  .admin-grid.two-col,
  .submission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topband-inner,
  .masthead-inner,
  .attr {
    flex-direction: column;
    align-items: flex-start;
  }

  .masthead-meta {
    text-align: left;
  }

  .masthead-meta .row {
    justify-content: flex-start;
  }

  .nav-inner a {
    flex-basis: calc(50% - 1px);
  }

  .headline {
    max-width: 13ch;
  }

  .service-row,
  .ledger-row {
    grid-template-columns: 1fr;
  }

  .table-row > * {
    border-top: 1px solid var(--line-soft);
  }

  .table-row > :first-child {
    border-top: 0;
  }

  .service-row .title-cell,
  .ledger-row .title-cell {
    grid-column: auto;
  }

  .speccard-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
