@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400&display=swap');

:root {
  --background: 40 33% 98%;
  --foreground: 220 20% 14%;
  --primary: 168 55% 38%;
  --primary-foreground: 0 0% 100%;
  --muted-foreground: 220 10% 46%;
  --border: 220 13% 90%;
  --sad-red: 0 65% 56%;
  --warm-cream: 40 33% 96%;
  --font-heading: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main, .content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: hsl(var(--foreground));
  line-height: 1.3;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.75;
}

strong {
  color: hsl(var(--foreground));
}

a {
  color: hsl(var(--primary));
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

li {
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid hsl(var(--border));
}

/* Header */
.static-header {
  border-bottom: 1px solid hsl(var(--border));
  padding: 1rem;
  background-color: hsl(var(--background));
}

.static-header-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.static-header .logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: hsl(var(--foreground));
  text-decoration: none;
}

.static-header .logo span {
  color: hsl(var(--sad-red));
}

.static-header nav a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-left: 1.25rem;
}

.static-header nav a:hover {
  color: hsl(var(--foreground));
}

/* Footer */
.static-footer {
  border-top: 1px solid hsl(var(--border));
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
}

.static-footer a {
  color: hsl(var(--primary));
}

/* Subtitle / meta info */
.meta {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.meta strong {
  color: hsl(var(--foreground));
}