:root {
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  --text: #222222;
  --bg: #f7f7f7;
  --green-900: #0f3d2e;
  --green-700: #1f6f5c;
  --gold-500: #c8a951;

  --surface: #ffffff;
  --surface-2: #f2f4f3;
  --border: rgba(15, 61, 46, 0.16);
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);

  --h1: 42px;
  --h2: 30px;
  --h3: 22px;
  --body: 17px;
  --small: 14px;

  --lh: 1.65;
}

html {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-size: var(--body);
  line-height: var(--lh);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 0.5rem;
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

a {
  color: var(--green-900);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-700);
}

.muted {
  color: rgba(34, 34, 34, 0.72);
}

.eyebrow {
  font-size: var(--small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.72);
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 18px;
  color: rgba(34, 34, 34, 0.86);
}

strong {
  font-weight: 700;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.95em;
}

