@layer static {
:root {
  color-scheme: light;
  --background: #fbfaf7;
  --foreground: #332e2b;
  --foreground-soft: #554e49;
  --card: #ffffff;
  --border: #ded7cf;
  --primary: #5c8a68;
  --primary-foreground: #ffffff;
  --muted-foreground: #756d66;
  --destructive: #c96d57;
  --destructive-bg: #f8e7e2;
  --destructive-border: #e8c1b8;
  --accent-hover: #f5eee9;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-wrap: balance;
}

p {
  margin: 0;
}

ul {
  margin: 0;
}

header.border-b {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

header.border-b > div,
footer > div,
main {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
}

header.border-b > div {
  min-height: 4rem;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

header nav,
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
}

.site-nav {
  align-items: center;
  gap: .25rem;
}

.site-nav-link {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  border-radius: .5rem;
  padding-inline: .75rem;
  color: var(--muted-foreground);
  font-size: .875rem;
  font-weight: 600;
}

.site-nav-link:hover,
.site-nav-link-active {
  background: #eef5ee;
  color: var(--primary);
}

footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .62);
}

footer > div {
  padding: 2rem 1.5rem;
}

main {
  padding: 2.5rem 1.5rem;
}

section,
main > header,
footer > div {
  display: grid;
  gap: .75rem;
}

article,
aside,
.bg-card.border,
a.bg-card.border {
  border: 1px solid var(--border);
  border-radius: .75rem;
  background: var(--card);
}

article,
aside,
a.bg-card.border,
.rounded-xl.border {
  padding: 1.25rem;
}

a.bg-card.border {
  display: block;
}

a.bg-card.border:hover,
a.hover\:bg-accent\/5:hover {
  background: var(--accent-hover);
}

a.hover\:underline:hover,
.underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.min-h-screen { min-height: 100vh; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-12 { margin-top: 3rem; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-x-5 { column-gap: 1.25rem; }
.gap-y-2 { row-gap: .5rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-14 > * + * { margin-top: 3.5rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.px-4 { padding-inline: 1rem; }
.px-6 { padding-inline: 1.5rem; }
.py-8 { padding-block: 2rem; }
.py-10 { padding-block: 2.5rem; }
.py-16 { padding-block: 4rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.pl-5 { padding-left: 1.25rem; }
.h-10 { min-height: 2.5rem; }
.h-11 { min-height: 2.75rem; }
.h-12 { min-height: 3rem; }
.h-16 { min-height: 4rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.border { border: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-border { border-color: var(--border); }
.border-destructive\/20 { border-color: var(--destructive-border); }
.divide-y > * + * { border-top: 1px solid var(--border); }
.overflow-hidden { overflow: hidden; }
.bg-background { background: var(--background); }
.bg-card,
.bg-card\/60 { background: var(--card); }
.bg-primary { background: var(--primary); }
.bg-destructive\/10 { background: var(--destructive-bg); }
.text-foreground { color: var(--foreground); }
.text-foreground\/85 { color: var(--foreground-soft); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-destructive { color: var(--destructive); }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.65rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-serif { font-family: Georgia, "Times New Roman", serif; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.12; }
.leading-relaxed { line-height: 1.65; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: .08em; }
.list-disc { list-style: disc; }
.underline-offset-2 { text-underline-offset: 2px; }

a.bg-primary,
.bg-primary.text-primary-foreground {
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.bg-destructive\/10 {
  border-color: var(--destructive-border);
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:py-14 { padding-block: 3.5rem; }
  .md\:text-sm { font-size: .875rem; line-height: 1.25rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.08; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:items-center { align-items: center; }
}

@media (max-width: 767px) {
  header.border-b > div {
    min-height: auto;
    padding-block: .875rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
  }

  .site-nav-link {
    justify-content: center;
  }

  header.border-b a.bg-primary {
    min-height: 2.5rem;
    padding-inline: .875rem;
    font-size: .8125rem;
  }
}
}
