/* The potting-shed palette, lifted from whok/Design/Theme.swift so the site and
   the app are visibly the same product. Light values only — the site is small
   enough that a dark scheme earns nothing. */
:root {
  --cream:      #F7EAD2;
  --ground:     #FDF8EF;
  --ink:        #241410;
  --ink-muted:  #6B5A50;
  --terracotta: #C93B22;
  --moss:       #3B5A30;
  --rule:       #E4D6BD;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.wrap { max-width: 42rem; margin: 0 auto; padding: 2.5rem 1.25rem 4rem; }
header { border-bottom: 2px solid var(--rule); margin-bottom: 2rem; padding-bottom: 1.25rem; }
.mark {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--terracotta); text-decoration: none; display: inline-block;
}
.tagline { color: var(--ink-muted); margin: 0.35rem 0 0; }
nav { margin-top: 1rem; display: flex; gap: 1.25rem; flex-wrap: wrap; }
nav a { color: var(--moss); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
nav a:hover { text-decoration: underline; }
h1 { font-size: 1.9rem; letter-spacing: -0.01em; margin: 0 0 0.5rem; }
h2 { font-size: 1.2rem; margin: 2.25rem 0 0.6rem; color: var(--moss); }
.updated { color: var(--ink-muted); font-size: 0.9rem; margin: 0 0 2rem; }
a { color: var(--terracotta); }
ul { padding-left: 1.2rem; }
li { margin-bottom: 0.4rem; }
.card {
  background: var(--cream); border: 1px solid var(--rule);
  border-radius: 14px; padding: 1.1rem 1.25rem; margin: 1.5rem 0;
}
.card p:first-child { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
footer {
  margin-top: 3.5rem; padding-top: 1.25rem; border-top: 1px solid var(--rule);
  color: var(--ink-muted); font-size: 0.9rem;
}
