/* Kai Coach NZ — legal pages shared stylesheet */
:root {
  --forest: #1A4331;
  --terracotta: #D96C4A;
  --bg: #F9F6F0;
  --surface: #FFFFFF;
  --text: #2A2A2A;
  --text-secondary: #5C5C5C;
  --border: #E5E1D8;
  --primary-soft: rgba(26, 67, 49, 0.08);
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.nav {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.nav-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--forest); font-weight: 800; letter-spacing: -0.3px; }
.brand-dot { width: 10px; height: 10px; background: var(--terracotta); border-radius: 50%; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: var(--text-secondary); font-size: 13px; text-decoration: none; font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }

.kicker {
  color: var(--terracotta);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 11px;
  text-transform: uppercase;
}
h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-top: 6px;
  color: var(--text);
  line-height: 1.1;
}
.meta {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 8px 0 32px;
}
h2 {
  font-size: 17px;
  font-weight: 800;
  margin-top: 28px;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-secondary);
  margin-top: 14px;
  margin-bottom: 6px;
}
p { font-size: 15px; margin-bottom: 10px; color: var(--text); }
ul { list-style: none; padding: 0; margin: 8px 0; }
ul li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 15px;
  color: var(--text);
}
ul li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
}
b, strong { font-weight: 700; }

.hub-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.hub-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.hub-icon {
  width: 44px; height: 44px;
  border-radius: 22px;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
  font-size: 22px;
}
.hub-title { font-weight: 800; font-size: 15px; margin-bottom: 2px; }
.hub-blurb { color: var(--text-secondary); font-size: 13px; }
.hub-chevron { color: var(--text-secondary); font-size: 20px; margin-left: auto; }

.contact-box {
  margin-top: 32px;
  padding: 16px;
  border-radius: 14px;
  background: var(--primary-soft);
  border: 1px solid var(--border);
}
.contact-title { font-weight: 800; margin-bottom: 4px; }

.footer {
  text-align: center;
  color: var(--forest);
  font-weight: 700;
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 480px) {
  h1 { font-size: 32px; }
  .container { padding: 24px 20px 60px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; }
}
