/* Hera — sitio público. Misma identidad que la app:
   crema cálido, terracota, Cormorant Garamond + Manrope. */

:root {
  --cream: #faf6f1;
  --surface: #ffffff;
  --ink: #2e241f;
  --ink-soft: #6f6058;
  --line: #eadfd5;
  --terra: #b3603f;
  --terra-deep: #8a4630;
  --sage: #7a8b6f;
  --blush: #e9c9b6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--terra-deep); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ---- cabecera compartida ---- */
header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}
.wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
header.site nav { display: flex; gap: 22px; }
header.site nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}
header.site nav a:hover { color: var(--terra-deep); }

/* ---- documento legal / páginas de texto ---- */
main.doc { max-width: 680px; margin: 0 auto; padding: 24px 24px 96px; }
main.doc h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 40px 0 6px;
  text-wrap: balance;
}
.doc .effective {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: 28px;
}
.doc .intro { font-size: 1.08rem; color: var(--ink-soft); }
main.doc h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 34px 0 8px;
}
main.doc p { margin: 0 0 14px; }

/* ---- pie ---- */
footer.site {
  border-top: 1px solid var(--line);
  padding: 30px 0 48px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
footer.site .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: baseline;
  justify-content: space-between;
}
footer.site a { color: var(--ink-soft); }
footer.site a:hover { color: var(--terra-deep); }
