/* BikeHQ site. Tokens from docs/BRAND.md §5.2. Paper page, ink type. */
:root {
  --ink: #111827;
  --paper: #F7F5F0;
  --muted: #5B6172;
  --line: #DAD6CC;
}
* { box-sizing: border-box; }
html { background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* home: one screen, centred */
main.home {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 28px;
}
main.home .wordmark { display: block; width: min(86vw, 640px); height: auto; }
main.home p.slogan { margin: 0; font-size: clamp(20px, 3.2vw, 28px); font-weight: 500; letter-spacing: -0.01em; max-width: 26ch; text-wrap: balance; }
main.home p.soon { margin: 0; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* inner pages */
header.site { width: 100%; max-width: 680px; margin: 0 auto; padding: 24px 24px 0; }
header.site a.mark { display: inline-flex; }
header.site a.mark img { height: 24px; width: auto; display: block; }
main.page { flex: 1; width: 100%; max-width: 680px; margin: 0 auto; padding: 40px 24px 56px; }
h1 { font-size: clamp(30px, 6vw, 40px); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 16px; text-wrap: balance; }
h2 { font-size: 20px; margin: 36px 0 8px; letter-spacing: -0.01em; }
p { margin: 0 0 16px; max-width: 60ch; }
p.lead { font-size: 19px; }
a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.92em; background: #ECE9E1; padding: 2px 6px; border-radius: 4px; }
ul { padding-left: 20px; }
li { margin-bottom: 6px; }
footer { width: 100%; max-width: 680px; margin: 0 auto; padding: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
