@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');

:root {
  --bg: #FAF4E8;
  --text: #2C2C2A;
  --accent: #BA7517;
  --muted: #2C2C2A99;
  --border: #2C2C2A1A;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1F1A12;
    --text: #F0E6D2;
    --accent: #E89A3D;
    --muted: #F0E6D299;
    --border: #F0E6D21A;
  }
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.page--wide {
  max-width: 960px;
}

header.site-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

@media (min-width: 720px) {
  header.site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.wordmark {
  font-family: 'Bungee', cursive;
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
}

nav.site-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
}

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

.hero {
  padding: 48px 0 64px;
}

.hero h1 {
  font-family: 'Bungee', cursive;
  font-weight: 400;
  font-size: clamp(48px, 12vw, 96px);
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.hero p.subhead {
  font-size: clamp(20px, 2.5vw, 24px);
  color: var(--text);
  max-width: 28em;
  margin: 0 0 32px;
}

.pill {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

section.features {
  padding: 32px 0;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  section.features {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.feature h2 {
  font-family: 'Bungee', cursive;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--accent);
}

.feature p {
  margin: 0;
  color: var(--text);
}

.closing {
  padding: 64px 0 16px;
  text-align: center;
  font-size: 18px;
  color: var(--muted);
  font-style: italic;
}

h1.page-title {
  font-family: 'Bungee', cursive;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.1;
  margin: 0 0 8px;
}

.last-updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 40px;
}

.prose h2 {
  font-family: 'Bungee', cursive;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  margin: 40px 0 16px;
  color: var(--accent);
}

.prose h3 {
  font-size: 18px;
  margin: 24px 0 8px;
}

.prose p {
  margin: 0 0 16px;
}

.prose ul {
  padding-left: 20px;
  margin: 0 0 16px;
}

.prose li {
  margin: 0 0 8px;
}

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

.disclaimer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

footer.site-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

footer.site-footer a {
  color: var(--muted);
  text-decoration: underline;
}

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