/* Enso — windchimesapp.com. Palette lifted from the app's theme.ts (sage/ink). */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #EFF1E6;
  --surface: #F7F8EF;
  --ink: #2F3A2E;
  --ink-strong: #021C10;
  --muted: #6C7A70;
  --accent: #6B8560;
  --rule: #D8DED4;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 40rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}

h1, h2 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--ink-strong);
  letter-spacing: -0.01em;
}

h1 { font-size: 2.4rem; line-height: 1.15; margin: 0 0 0.6rem; }
h2 { font-size: 1.3rem; margin: 2.75rem 0 0.6rem; color: var(--accent); }
h3 { font-size: 1.02rem; margin: 1.75rem 0 0.35rem; color: var(--ink-strong); }

p { margin: 0 0 1.1rem; }
ul { margin: 0 0 1.4rem; padding-left: 1.25rem; }
li { margin-bottom: 0.55rem; }
strong { color: var(--ink-strong); font-weight: 600; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--ink-strong); }

/* Wordmark, top-left on every page */
.mark {
  display: inline-block;
  font-family: ui-serif, Georgia, serif;
  font-size: 1.05rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2.5rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}
.mark:hover { color: var(--ink-strong); }

.lede { font-size: 1.2rem; line-height: 1.55; color: var(--ink); margin-bottom: 2rem; }
.stamp { color: var(--muted); font-size: 0.92rem; letter-spacing: 0.02em; margin-bottom: 2.5rem; }

/* The one pulled-out line — used sparingly, once per page at most. */
.quiet {
  border-left: 2px solid var(--rule);
  padding-left: 1.15rem;
  margin: 2.5rem 0;
  color: var(--muted);
}
.quiet p { margin: 0; }

.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  margin: 1.5rem 0 2rem;
}
.card p:last-child { margin-bottom: 0; }

footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.92rem;
}
footer a { margin-right: 0.35rem; }
footer .sep { margin-right: 0.5rem; }

@media (max-width: 30rem) {
  .wrap { padding-top: 2.5rem; }
  h1 { font-size: 2rem; }
}
