:root {
  --cream: #faf6ee;
  --ink: #22303a;
  --ink-soft: #4b5a63;
  --teal: #1d6f6e;
  --teal-deep: #14504f;
  --hairline: rgba(34, 48, 58, 0.18);
}

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

body {
  font-family: 'Archivo', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}

.pagina {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(1.6rem, 5vw, 4rem) clamp(1.3rem, 4vw, 2rem) 5rem;
}

.top { margin-bottom: 3rem; }

.indietro {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--teal-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 2.2rem;
  transition: border-color .25s;
}
.indietro:hover { border-color: var(--teal-deep); }

h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.05;
  color: var(--teal-deep);
}
h1 em { font-style: italic; }

.sottotitolo {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 56ch;
}

.testo section { margin-bottom: 2.6rem; }

.testo h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--teal-deep);
  margin-bottom: 0.7rem;
}

.testo p { margin-bottom: 0.8rem; }

.testo ul {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.2rem;
}
.testo li { margin-bottom: 0.4rem; }

.testo a { color: var(--teal-deep); }

.dati-titolare {
  list-style: none;
  padding-left: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.dati-titolare li a { text-decoration: none; border-bottom: 1px solid var(--hairline); }
.dati-titolare li a:hover { border-color: var(--teal-deep); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 0.6rem;
  font-size: 0.9rem;
}
th, td {
  text-align: left;
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}
th {
  font-weight: 600;
  color: var(--teal-deep);
  border-bottom: 1px solid var(--teal-deep);
}

.aggiornamento {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
