:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --ink: #1c2b25;
  --ink-soft: #4a5a52;
  --ink-faint: #7c8a82;
  --accent: #2f6b4f;
  --accent-dark: #245540;
  --border: #e6e1d8;
  --radius: 14px;
  --maxw: 720px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand .logo-mark {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}
.nav a {
  color: var(--ink-soft);
  font-size: 15px;
  margin-left: 22px;
}

/* Hero */
.hero {
  padding: 88px 0 64px;
  text-align: center;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.hero .lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* Sections */
section { padding: 40px 0; }
.section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.section-card h2 {
  font-size: 22px;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.section-card h3 {
  font-size: 16px;
  margin: 22px 0 6px;
  color: var(--ink);
}
.section-card p { color: var(--ink-soft); margin-bottom: 12px; }
.section-card p:last-child { margin-bottom: 0; }
.section-card ul { color: var(--ink-soft); padding-left: 20px; margin-bottom: 12px; }
.section-card li { margin-bottom: 6px; }

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

/* Product row */
.product {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.product .product-art {
  width: 56px; height: 56px;
  border-radius: 13px;
  background: linear-gradient(150deg, #1e3a5f, #12202e);
  display: grid; place-items: center;
  color: #cdd9e3;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.about .signoff {
  color: var(--ink-faint);
  font-size: 14px;
  font-style: italic;
  margin-top: 4px;
}
.product .meta h3 { margin: 0 0 4px; font-size: 18px; }
.product .meta p { margin: 0; }
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-dark);
  background: #e8f1ec;
  border-radius: 20px;
  padding: 2px 10px;
  margin-top: 8px;
}

/* Page title (for legal pages) */
.page-title { padding: 56px 0 8px; }
.page-title h1 { font-size: 32px; letter-spacing: -0.4px; }
.page-title .updated { color: var(--ink-faint); font-size: 14px; margin-top: 6px; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 10px;
  margin-top: 8px;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 32px 0;
  color: var(--ink-faint);
  font-size: 14px;
}
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer a { color: var(--ink-soft); margin-left: 18px; }
.site-footer .links { display: flex; }
.site-footer .links a:first-child { margin-left: 0; }

@media (max-width: 600px) {
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 32px; }
  .section-card { padding: 24px; }
  .site-footer .wrap { flex-direction: column; align-items: flex-start; }
  .site-footer a { margin-left: 0; margin-right: 18px; }
}
