/* Dupla dark theme — tokens from docs/DESIGN_SYSTEM.md §1. No framework. */

:root {
  --bg-canvas: #100e0c;
  --bg-app: #141210;
  --surface-1: #1d1a16;
  --surface-2: #26211c;
  --surface-3: #2a241e;
  --border-subtle: rgba(244, 240, 234, 0.1);
  --text-primary: #f4f0ea;
  --text-secondary: rgba(244, 240, 234, 0.6);
  --text-muted: rgba(244, 240, 234, 0.5);
  --accent: #ff6a3d;
  --accent-hover: #ff8a63;
  --on-accent: #1a0d06;
  --success: #4ade80;
  --warning: #fbbf24;
  --danger: #ef4444;
  --radius-card: 18px;
  --radius-control: 16px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}
html {
  background: var(--bg-canvas);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-app);
  color: var(--text-primary);
  font: 500 14px/1.5 Outfit, system-ui, sans-serif;
}

a {
  color: var(--accent-hover);
}
h1, h2, h3 {
  font-weight: 800;
  margin: 0 0 8px;
}

p {
  margin: 0 0 12px;
  color: var(--text-secondary);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 22px;
}

.nav {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-subtle);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
}

.nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
}

footer {
  color: var(--text-muted);
  padding: 22px 0;
}

.btn, .btn-secondary {
  display: inline-block;
  border: none;
  border-radius: var(--radius-control);
  padding: 12px 18px;
  font: 700 14px/1 inherit;
  text-decoration: none;
  cursor: pointer;
}

.btn {
  background: var(--accent);
  color: var(--on-accent);
}

.btn:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.card {
  background: var(--surface-1);
  border-radius: var(--radius-card);
  padding: 18px;
}

.tag {
  display: inline-block;
  background: var(--surface-2);
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.tag-warning {
  background: rgba(251, 191, 36, 0.15);
  color: var(--warning);
}

.tag-success {
  background: rgba(74, 222, 128, 0.15);
  color: var(--success);
}

.eyebrow {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th, .table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.table th {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.field {
  display: block;
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
}

.field input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-control);
  color: var(--text-primary);
  padding: 12px 14px;
  font: 500 14px/1.4 inherit;
}

.field input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.error {
  color: var(--danger);
  font-size: 13px;
  margin-bottom: 14px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.empty-state {
  color: var(--text-muted);
  padding: 24px 0;
}

.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 14px 0 18px; }
.filters select {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-control);
  color: var(--text-primary);
  padding: 10px 12px;
  font: 500 13px/1.4 inherit;
}
.result-count { color: var(--text-muted); font-size: 12.5px; margin-bottom: 14px; }

.pro-card {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 14px;
  align-items: start;
  background: var(--surface-1);
  border-radius: var(--radius-card);
  padding: 18px;
  margin-bottom: 12px;
}
.pro-card h3 { margin: 4px 0; }
.pro-card h3 a { color: var(--text-primary); text-decoration: none; }
.pro-card .kind-city, .pro-card .style-tags, .pro-card .status-line {
  color: var(--text-secondary);
  font-size: 12.5px;
  margin: 0 0 6px;
}

.verified {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
  margin: 0 0 6px;
}
.verified .dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--success);
  display: inline-block;
}

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 8px; }
.chip {
  background: var(--surface-2);
  color: var(--text-secondary);
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.pro-card-photo { width: 56px; height: 56px; border-radius: var(--radius-control); object-fit: cover; }
.profile-photo { width: 120px; height: 120px; border-radius: var(--radius-card); object-fit: cover; }
.photo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-control);
  background: repeating-linear-gradient(135deg, var(--surface-2), var(--surface-2) 6px, var(--surface-3) 6px, var(--surface-3) 12px);
}
.photo-placeholder-lg { width: 120px; height: 120px; border-radius: var(--radius-card); }

.pager { display: flex; justify-content: space-between; margin: 18px 0; }
.pager a { color: var(--accent-hover); text-decoration: none; font-weight: 600; }
.pricing-list { padding-left: 18px; color: var(--text-secondary); }
.footer-note { color: var(--text-muted); font-size: 12px; }

.reputation { color: var(--text-primary); font-weight: 700; }
.reputation-how { color: var(--text-secondary); font-size: 13px; margin: 0 0 12px; }
.reputation-how summary { cursor: pointer; color: var(--text-primary); font-weight: 600; }
.reputation-how ul { padding-left: 18px; margin: 8px 0; }
.reputation-how p { margin: 8px 0; color: var(--text-secondary); }
