:root {
  --bg: #faf6f1;
  --card: #ffffff;
  --text: #2a1f1a;
  --muted: #7a6b62;
  --accent: #d9683e;
  --accent-hover: #c25a33;
  --border: rgba(120, 70, 40, 0.12);
  --shadow: 0 1px 2px rgba(120,70,40,0.05), 0 8px 24px rgba(120,70,40,0.06);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1310;
    --card: #241a16;
    --text: #f5ede5;
    --muted: #b09a8c;
    --accent: #e87d54;
    --accent-hover: #f08e68;
    --border: rgba(255, 200, 170, 0.10);
    --shadow: 0 1px 2px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3);
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

header.site {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

header.site a.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}

header.site .paw {
  font-size: 24px;
  line-height: 1;
}

main.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 32px;
}

h1 {
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  font-weight: 700;
}

h2 {
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 32px 0 8px;
  font-weight: 600;
}

p, li { color: var(--text); }

.muted { color: var(--muted); }
.small { font-size: 14px; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

ul { padding-left: 20px; }
li { margin: 6px 0; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-hover); text-decoration: none; }
.btn.secondary {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border);
}
.btn.secondary:hover { background: var(--border); }

footer.site {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--accent); }

hr.soft {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}
