/* Sovranità digitale — mbeo.ch
   Palette sobria, colori miele/terra coerente con lo stile di Marco */

:root {
  --bg: #faf7f2;
  --testo: #2b2b2b;
  --accento: #b8860b;      /* miele scuro */
  --accento-chiaro: #d9a441;
  --grigio: #6b6b6b;
  --linea: #e5ded2;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--testo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.manifesto {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}

/* Intestazione */
.manifesto header {
  border-bottom: 1px solid var(--linea);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--accento);
  margin: 0 0 1rem;
}

.manifesto h1 {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: normal;
  margin: 0;
  color: var(--testo);
}

/* Corpo */
.testo p {
  margin: 0 0 1.4rem;
}

.testo strong {
  color: var(--accento);
  font-weight: 600;
}

.testo a {
  color: var(--accento);
  text-decoration: none;
  border-bottom: 1px solid var(--accento-chiaro);
}

.testo a:hover {
  color: var(--accento-chiaro);
  border-bottom-color: var(--accento);
}

/* Footer */
.manifesto footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--linea);
  font-size: 0.9rem;
  color: var(--grigio);
}

.manifesto footer a {
  color: var(--grigio);
  text-decoration: none;
}

.manifesto footer a:hover {
  color: var(--accento);
}

.firma {
  margin-top: 0.4rem;
  font-style: italic;
}

/* Mobile */
@media (max-width: 600px) {
  .manifesto { padding: 2.5rem 1.25rem 2rem; }
  .manifesto h1 { font-size: 1.55rem; }
  html, body { font-size: 17px; }
}
