/* Kinfolk editorial tokens — shared across standalone sales microsites */
:root {
  --bg: #f8f6f2;
  --bg-alt: #f3efe9;
  --ink: #24211d;
  --muted: #6a635b;
  --line: #dfd8cf;
  --accent: #243F37;
  --rust: #243F37;
  --serif: "Lora", Georgia, serif;
  --sans: "Inter", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 240px);
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: min(960px, 92vw);
  margin: 0 auto;
  padding: 32px 0 64px;
}

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.4rem;
}
.brand .town {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-mini a {
  font-size: 0.9rem;
  color: var(--muted);
  margin-left: 16px;
}
.nav-mini a:hover { color: var(--ink); }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero .tagline {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 20px;
}
.cta {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
}
.cta:hover {
  opacity: 0.9;
  text-decoration: none;
}

.sample-banner {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

footer.site {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}
footer.site nav a { margin-right: 14px; }
footer.site .meta { font-size: 0.85rem; }

@media (max-width: 480px) {
  .wrap { padding: 24px 0 48px; }
  header.site { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav-mini a { margin-left: 0; margin-right: 12px; }
}
