:root {
  --ink: #2a262e;
  --ink-muted: rgba(42, 38, 46, 0.72);
  --cream: #faf2e3;
  --accent: #db6437;
  --rule: rgba(42, 38, 46, 0.1);
  --max: 720px;
}

* { box-sizing: border-box; }

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

body {
  background: linear-gradient(180deg, #fff4e0 0%, #faf2e3 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 96px;
}

nav.crumb {
  font-size: 14px;
  margin-bottom: 32px;
}

nav.crumb a {
  color: var(--ink-muted);
  text-decoration: none;
}

nav.crumb a:hover {
  color: var(--accent);
}

h1 {
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

h2 {
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 40px 0 12px;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 24px 0 8px;
}

p, ul, ol {
  margin: 14px 0;
}

ul, ol { padding-left: 22px; }
li { margin: 6px 0; }

em.subtitle {
  display: block;
  color: var(--ink-muted);
  font-style: normal;
  font-size: 0.95rem;
  margin-bottom: 32px;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

a:hover { color: #b04d28; }

strong { font-weight: 700; }

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 32px 0;
}

.card {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  padding: 24px 28px;
  margin: 12px 0;
}

footer {
  margin-top: 64px;
  font-size: 0.9rem;
  color: var(--ink-muted);
  text-align: center;
}

/* Landing */
.brand {
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.tag {
  color: var(--ink-muted);
  font-size: 1.05rem;
  margin: 0 0 40px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links a.link-card {
  display: block;
  padding: 18px 20px;
  background: white;
  border-radius: 18px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 24px rgba(219, 100, 55, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.links a.link-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 0 rgba(0,0,0,0.04), 0 12px 32px rgba(219, 100, 55, 0.1);
}

.links small {
  display: block;
  font-weight: 500;
  color: var(--ink-muted);
  margin-top: 4px;
  font-size: 0.85rem;
}
