/* Shared stylesheet for the public herrepertory.com site (index.html +
   privacy.html). Same colour/font tokens as the app's src/index.css so the
   two sites read as one product — copied by hand, not imported, since this
   site is deliberately decoupled from the app's build. */

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: #f3f4f6;
  color: #1f2937;
  line-height: 1.6;
}

a { color: #1d4ed8; }

/* ── Holding page (index.html) ───────────────────────────────────────── */
.home-shell {
  max-width: 640px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-main { text-align: center; }
.home-main h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}
.home-tagline {
  margin: 0;
  font-size: 1.05rem;
  color: #374151;
}
.home-detail {
  margin: 1rem 0 0;
  font-size: 0.925rem;
  color: #4b5563;
  line-height: 1.6;
}
.home-shell .site-footer { text-align: center; }

.site-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}
.site-footer a { color: #6b7280; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer__sep { margin: 0 0.5rem; }

/* ── Privacy policy page (privacy.html) ──────────────────────────────── */
.privacy-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.privacy-back {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: #1d4ed8;
  text-decoration: none;
  font-size: 0.875rem;
}
.privacy-back:hover { text-decoration: underline; }

.privacy-header { margin-bottom: 1.5rem; }
.privacy-header h1 {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
}
.privacy-header__org {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: #374151;
  font-weight: 600;
}
.privacy-dates { margin: 0; font-size: 0.8rem; color: #6b7280; }
.privacy-dates div + div { margin-top: 0.15rem; }

.privacy-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem 1.75rem 1.75rem;
}
.privacy-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin: 1.75rem 0 0.6rem;
}
.privacy-card h2:first-child { margin-top: 0; }
.privacy-card p { margin: 0.6rem 0; font-size: 0.925rem; color: #1f2937; }
.privacy-card ul { margin: 0.6rem 0; padding-left: 1.25rem; font-size: 0.925rem; color: #1f2937; }
.privacy-card li { margin: 0.4rem 0; }
.privacy-card a { color: #1d4ed8; }

.privacy-table-wrap { overflow-x: auto; margin: 0.75rem 0; }
.privacy-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.privacy-table th,
.privacy-table td {
  text-align: left;
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}
.privacy-table th {
  color: #6b7280;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #f9fafb;
}

.privacy-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}
