:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --ink: #2b2b28;
  --muted: #6f6b63;
  --brand: #1f6f5c;
  --brand-dark: #175447;
  --accent: #c9a227;
  --line: #e7e0d4;
  --radius: 14px;
  --maxw: 760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: 0.3px;
}
.brand a { color: inherit; text-decoration: none; }
.nav { display: flex; gap: 20px; font-size: 0.95rem; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--brand); }

/* Hero */
.hero {
  padding: 72px 0 48px;
  text-align: center;
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--ink);
}
.hero p.lead {
  font-size: 1.13rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 28px;
}
.cta {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.cta:hover { background: var(--brand-dark); text-decoration: none; }

/* Sections */
.section { padding: 34px 0; }
.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  color: var(--brand-dark);
  margin: 0 0 14px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
  color: var(--brand-dark);
}

/* Legal pages */
.legal { padding: 48px 0 64px; }
.legal h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  color: var(--ink);
  margin: 0 0 6px;
}
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 26px; }
.legal h2 { font-size: 1.25rem; color: var(--brand-dark); margin: 30px 0 10px; }
.legal p, .legal li { color: #3a3833; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  margin-top: 30px;
  background: var(--surface);
  font-size: 0.9rem;
  color: var(--muted);
}
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--brand); }

@media (max-width: 560px) {
  .hero h1 { font-size: 2rem; }
  .site-header .wrap { flex-direction: column; gap: 10px; }
}
