:root {
  --espresso: #6b4a3d;
  --espresso-muted: #8a6859;
  --blush: #f7d9e7;
  --page-bg: #fdf5f8;
  --surface: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #2b2320;
  background: var(--page-bg);
  line-height: 1.55;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.brand .paw {
  font-size: 28px;
}

.brand a {
  color: var(--espresso);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
}

h1 {
  color: var(--espresso);
  font-size: 28px;
  margin: 0 0 6px;
}

h2 {
  color: var(--espresso);
  font-size: 19px;
  margin: 32px 0 10px;
  border-top: 1px solid rgba(107, 74, 61, 0.15);
  padding-top: 20px;
}

h2:first-of-type { border-top: none; padding-top: 0; }

.updated {
  color: var(--espresso-muted);
  font-size: 14px;
  margin: 0 0 28px;
}

a { color: var(--espresso); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
}

th, td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(107, 74, 61, 0.15);
  font-size: 15px;
  vertical-align: top;
}

th { color: var(--espresso-muted); font-weight: 600; }

.card {
  background: var(--surface);
  border: 1px solid rgba(107, 74, 61, 0.15);
  border-radius: 16px;
  padding: 24px;
}

.links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.links a {
  font-weight: 600;
}

footer {
  margin-top: 40px;
  color: var(--espresso-muted);
  font-size: 13px;
}

.center { text-align: center; }
