:root {
  --ink: #14202a;
  --muted: #5b6b73;
  --bg: #f7f5f0;
  --surface: #ffffff;
  --accent: #1f6f78;
  --accent-dark: #164f56;
  --border: #e2ddd2;
  --maxw: 940px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

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

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

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  margin-left: 22px;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a:first-child { margin-left: 0; }

/* Hero */
.hero {
  padding: 72px 0 60px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  margin: 0 0 16px;
}
.hero .tagline {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 28px;
}
.badge {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 6px 16px;
}

/* Sections */
section { padding: 52px 0; border-top: 1px solid var(--border); }
section h2 {
  font-size: 1.7rem;
  margin: 0 0 8px;
}
section .lead {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 32px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.card h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* Feature list */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
.features li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
}
.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.features li strong { color: var(--ink); font-weight: 500; }

/* About */
.about p { max-width: 660px; color: var(--muted); }
.about p:first-of-type { margin-top: 0; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 48px;
  font-size: 0.9rem;
  color: var(--muted);
}
.site-footer a { color: var(--accent); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .company { color: var(--ink); }
.site-footer p { margin: 6px 0; }

/* Legal pages */
.legal { padding: 56px 0 24px; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.4rem); margin: 0 0 6px; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin: 0 0 36px; }
.legal h2 { font-size: 1.3rem; margin: 36px 0 10px; }
.legal p, .legal li { color: #33434c; }
.legal ul { padding-left: 22px; }
.legal li { margin: 6px 0; }

@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 44px; }
}
