:root {
  --bg: #f5f1e8;
  --panel: #fffdf8;
  --border: #d8d1c2;
  --text: #1a1915;
  --muted: #645d52;
  --accent: #2a5c45;
  --accent-light: #e8f2ed;
  --button: #1a1915;
  --button-text: #fffdf8;
  --shadow: 0 14px 40px rgba(39,34,24,0.08);
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245,241,232,0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  min-height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: #ebe4d6;
  color: var(--text);
}

.nav-links .cta {
  background: var(--text);
  color: var(--button-text);
}

.nav-links .cta:hover {
  background: var(--accent);
  color: #fff;
}

main {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 22px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
  max-width: 760px;
  margin-bottom: 20px;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 780px;
  margin-bottom: 34px;
}

.article-meta {
  color: var(--muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-bottom: 36px;
  font-size: 0.92rem;
}

h2 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 34px 0 12px;
}

h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

p { margin-bottom: 16px; }

ul,
ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

li { margin-bottom: 8px; }

.callout,
.checklist,
.contact-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  box-shadow: var(--shadow);
  margin: 28px 0;
}

.callout p:last-child,
.checklist p:last-child,
.contact-panel p:last-child { margin-bottom: 0; }

.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.related a {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 16px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.35;
}

.related a:hover { border-color: #b7aa92; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 26px 22px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 12px;
}

.footer-inner a:hover { color: var(--text); }

@media (max-width: 760px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 22px; }
  .nav-links { margin-left: 0; }
  .related { grid-template-columns: 1fr; }
}
