/* ============================================================
   COMPANY PAGE  (/company)  Prefix: .sl-co-
   ============================================================ */
.sl-co-hero {
  background: var(--sl-ink);
  color: var(--sl-paper);
  padding: clamp(80px,14vw,140px) 0 clamp(56px,8vw,80px);
}
.sl-co-hero .sl-eyebrow {
  font-family: var(--sl-font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--sl-gold);
  display: block;
  margin-bottom: 16px;
}
.sl-co-hero h1 {
  font-family: var(--sl-font-display);
  font-size: clamp(2rem,5vw,3.2rem);
  font-weight: 700;
  color: var(--sl-paper);
  margin: 0 0 16px;
}
.sl-co-hero .sl-sub { font-size: 15px; color: rgba(243,239,232,.72); line-height: 1.8; margin: 0; }

.sl-co-body { padding: clamp(56px,8vw,96px) 0; display: flex; flex-direction: column; gap: clamp(56px,8vw,80px); }

.sl-co-section-title {
  font-family: var(--sl-font-display);
  font-size: clamp(1.2rem,2.5vw,1.5rem);
  font-weight: 700;
  color: var(--sl-ink);
  margin: 0 0 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sl-line);
}

/* Table */
.sl-co-table { width: 100%; border-collapse: collapse; }
.sl-co-table th, .sl-co-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--sl-line);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}
.sl-co-table th {
  font-family: var(--sl-font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--sl-ash);
  background: var(--sl-paper-2);
  white-space: nowrap;
  width: 160px;
  font-weight: 400;
}
.sl-co-table td { color: var(--sl-ink); }
.sl-co-table a { color: var(--sl-gold-2); }
@media (max-width:540px) {
  .sl-co-table, .sl-co-table tbody, .sl-co-table tr { display: block; }
  .sl-co-table th { width: 100%; font-size: 10px; padding: 10px 12px 4px; border-bottom: none; }
  .sl-co-table td { padding: 4px 12px 14px; }
}

/* Biz cards */
.sl-co-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width:640px) { .sl-co-services-grid { grid-template-columns: 1fr; } }
.sl-co-biz-card {
  padding: 24px;
  border: 1px solid var(--sl-line);
  border-top: 2px solid var(--sl-gold);
  border-radius: 0 0 4px 4px;
}
.sl-co-biz-card .sl-num {
  font-family: var(--sl-font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--sl-gold-2);
  display: block;
  margin-bottom: 8px;
}
.sl-co-biz-card h3 {
  font-family: var(--sl-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sl-ink);
  margin: 0 0 8px;
}
.sl-co-biz-card p { font-size: 13px; color: var(--sl-ash); margin: 0; line-height: 1.65; }
