:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-muted: #5b5b5b;
  --rule: #e6e1d6;
  --accent: #6b4423;
  --max-w: 42rem;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

header.site-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.5rem;
}

.brand {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

nav.site-nav a {
  color: var(--ink-muted);
  text-decoration: none;
  margin-left: 1.25rem;
  font-size: 0.95rem;
}

nav.site-nav a:hover {
  color: var(--ink);
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

h2 {
  font-size: 1.25rem;
  margin: 2.25rem 0 0.75rem;
  font-weight: 600;
}

p, ul, ol {
  margin: 0 0 1rem;
}

ul, ol {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.35rem;
}

a {
  color: var(--accent);
}

.muted {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.last-updated {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

footer.site-footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.9rem;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer.site-footer a {
  color: var(--ink-muted);
  text-decoration: none;
  margin-right: 1rem;
}

footer.site-footer a:hover {
  color: var(--ink);
}

/* Coming-soon landing */
.hero {
  text-align: center;
  padding: 5rem 1rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--ink-muted);
  font-size: 1.1rem;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.hero .stores {
  color: var(--ink-muted);
  font-size: 0.95rem;
}
