/*
 * Shared minimal stylesheet for horse validation-release surfaces.
 * Served alongside the duenablomstrom.com static tree; used only by the
 * hand-authored validation pages under /1111/, /ventures/ and /podcasts.
 */
:root {
  --accent: #d97b6b;
  --ink: #2b2320;
  --muted: #6b5f5a;
  --paper: #fdfaf7;
  --line: #e8ddd6;
  --callout: #fbf1ec;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 0.75rem;
}
h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}
h2 {
  font-size: 1.2rem;
  margin: 2.25rem 0 0.5rem;
}
p { margin: 0.75rem 0; }
.lede { font-size: 1.1rem; color: var(--ink); }
.honesty {
  margin: 2rem 0;
  padding: 1rem 1.25rem;
  background: var(--callout);
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
}
.honesty h2 { margin-top: 0.25rem; font-size: 1rem; }
.honesty p { color: var(--ink); margin-bottom: 0.5rem; }
ul { padding-left: 1.25rem; }
li { margin: 0.4rem 0; }
.cta {
  display: inline-block;
  margin: 1.25rem 0 0;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}
.cta:hover { filter: brightness(0.95); }
.no-cta {
  margin: 1.5rem 0 0;
  padding: 0.75rem 1rem;
  border: 1px dashed var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}
a { color: var(--accent); }
footer {
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}
footer a { color: var(--muted); }
