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

:root {
  --teal:    #3d8c7e;
  --bg:      #faf8f2;
  --text:    #1c1814;
  --muted:   #7a7168;
  --border:  rgba(30,24,16,0.08);
  --surface: #ffffff;
}

html { scroll-behavior: smooth; }

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

a { color: var(--teal); }
a:hover { opacity: 0.75; }

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,248,242,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.nav-links { display: flex; gap: 20px; }
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1.5px solid var(--text);
  padding-bottom: 1px;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 0.5; }

/* ── Index page ── */
.page {
  max-width: 680px;
  margin: 56px auto 0;
  padding: 0 24px;
}

.section { padding: 36px 0; }

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 10px;
}

.section h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}

.section h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text);
}

.section p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 10px;
}

.section ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.section li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 6px;
}

.divider {
  height: 1px;
  background: var(--border);
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.contact-list li:last-child { border-bottom: none; }

.contact-key {
  font-weight: 600;
  min-width: 160px;
  color: var(--text);
  flex-shrink: 0;
}

.legal-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.legal-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.legal-btn:hover { opacity: 0.85; transform: scale(1.02); }
.legal-btn.primary { background: var(--teal); color: #fff; }
.legal-btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(30,24,16,0.2);
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 64px;
  max-width: 100%;
}
footer p { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 16px; }
.footer-links a {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(30,24,16,0.25);
  padding-bottom: 1px;
}
.footer-links a:hover { opacity: 0.6; }

/* ── Legal pages ── */
.legal-body {
  max-width: 680px;
  margin: 48px auto 80px;
  padding: 0 24px;
}
.legal-body h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--text);
}
.meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.intro {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 32px;
}
.legal-section { margin-bottom: 28px; }
.legal-section h2 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-section p,
.legal-section li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 8px;
}
.legal-section ul { padding-left: 20px; margin-bottom: 8px; }
.legal-section .subheading {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 14px 0 4px;
}
.highlight-box {
  background: rgba(61,140,126,0.07);
  border-left: 3px solid var(--teal);
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--text); }
